/* styles.css */

body {
  background-color: #151515;
  color: #fff;
}

/* navbar */
.navbar {
  background-color: #151515;
}
.navbar-brand img {
  max-height: 65px; /* Adjust height as needed */
}
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-nav {
  margin-right: auto;
}
.navbar-toggler {
  color: #fff;
}
.social-links {
  margin-left: auto;
}

.nav-link {
  color: white;
  font-size: 20px;
}

.social-links .nav-item {
  margin-left: 10px;
}

.fa,
.fa-brands {
  padding: 10px;
  font-size: 30px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  color: white;
}

@media (max-width: 991.98px) {
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row; /* Ensure horizontal layout */
  }
  .social-links {
    display: none;
  }

  .navbar-brand img {
    max-height: 50px; /* Adjust height as needed */
  }
}

/* Jumbotron styles */
.jumbotron {
  position: relative; /* Ensure proper positioning of social icons */
  background-image: url("assets/bg3.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0; /* Adjust padding as needed */
  text-align: center;
  height: 40vh; /* Fill the viewport height */
  overflow: hidden; /* Hide overflow content */
}
.jumbotron::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust the height of the fade as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #151515 100%);
  pointer-events: none;
}
#music .social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center; /* Center the icons horizontally */
}

#music .social-icons li {
  margin: 0 5px; /* Reduce space between icons */
}

@media (min-width: 991.98px) {
  #music .social-icons li a {
    display: none; /* disable icons*/
  }
}
/* Increase size of social icons in mobile mode */
@media (max-width: 991.98px) {
  #music .social-icons li a {
    font-size: 30px; /* Increase font size of icons */
  }
}

#video .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}
#video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#about .bio-image {
  max-width: 100%;
  height: auto;
  width: 80%;
  pointer-events: none;
}

#about p {
  padding: 0 15px;
  justify-content: center;
}

@media (min-width: 991.98px) {
  #about .bio-text {
    padding-left: 0 100px;
    height: 100%; /* Set height to match the image */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #about p {
    font-size: 21px; /* Increase font size */
  }
}

@media (min-width: 1199px) {
  #about p {
    font-size: 25px; /* Increase font size */
    /* width: 80%; */
  }
}

@media (min-width: 1400px) {
  #about p {
    width: 80%;
  }
}

#contact .social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center; /* Center the icons horizontally */
}
#contact p {
  font-size: 20px;
}

#contact a {
  color: #ffffff;
  text-decoration: none;
}
#contact .social-icons li {
  margin: 0 10px;
}
#contact .social-icons li a {
  color: #ffffff;
  font-size: 30px;
  padding: 10px;
}
@media (max-width: 991.98px) {
  #contact .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the icons horizontally */
  }

  .social-icons li {
    margin: 0 5px; /* Reduce the margin between icons */
  }

  .social-icons li a {
    font-size: 20px; /* Adjust the font size as needed */
  }
}

/* email */
.email-button {
  display: inline-block;
  padding: 10px 15px;
  color: rgb(119, 119, 119);
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  transition: all 0.2s ease-in-out;
}

.email-button:hover {
  color: #000000; /* Darker shade for hover effect */
  transform: scale(1.1);
}

footer {
  background-color: #151515;
}
