/* index.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('https://images.squarespace-cdn.com/content/v1/5f42f0a79f9f8d5592cba4f8/45490637-8634-470b-a073-8b8b4fde89f2/IMG_7112.JPG') no-repeat center center fixed;
    background-size: cover;
    color: #fff; /* Set text color to white */
  }
  
  .navbar {
    position: sticky;
    top: 0;
    background-color: #000;
    margin: 0;
    padding: 0;
    z-index: 100;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0; /* Set margin to zero */
    padding: 10px; /* Add padding for better spacing */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
  }
  
  .logo {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0; /* Set margin to zero */
  }
  
  .logo img {
    max-height: 200px;
    max-width: 60%;
  }
  
  .voltonix-logo {
    max-height: 1080px;
  }
  
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row; /* Display links in a row for mobile view */
    background-color: #000;
    z-index: 99; /* Place the links above the content */
    order: 2; /* Set the order to 2 to appear below the logo in mobile view */
  }
  
  .nav-links.active {
    display: flex; /* Display links when the menu is active */
  }
  
  .nav-links li {
    margin-right: 20px; /* Add spacing between links for mobile */
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffeb3b;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
  }
  
  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .nav-links a:hover {
    text-shadow: 0 0 10px #ffeb3b;
  }
  
  .logo:hover + .nav-links {
    display: flex; /* Display links when the logo is hovered */
  }
  
  @media screen and (min-width: 768px) {
    .nav-links {
      order: 1; /* Set the order to 1 to appear above the logo for larger screens */
    }
  }
  
  /* Welcome text styles */
  .welcome-text {
    margin: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 10px;
  }
  
  .welcome-text h2 {
    margin-top: 20px;
  }
  
  /* Card styles */
  .card {
    display: flex;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color:  rgba(24, 22, 22, 0.8);
  }
  
  .card-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  
  .card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
  }
  
  .card-text {
    font-size: 1rem;
    color: #000; /* Black text color */
    display: flex;
    flex-wrap: wrap;
  }
  
  .card-text strong {
    font-weight: bold;
    margin-right: 20px; /* Add space between each text */
    margin-bottom: 10px; /* Add space between lines */
    background-color: rgba(255, 255, 255, 0.8); /* White background with transparency */
    padding: 5px 10px; /* Adjust padding as needed */
    border-radius: 5px; /* Add rounded corners if desired */
  }
  
  
  .card-link {
    text-decoration: none; /* Remove underline style for the link */
  }
  
  .card-image {
    width: 350px; /* Adjust image width as needed */
    height: 250px; /* Adjust image height as needed */
    object-fit: cover; /* Ensure the image covers the entire container */
  }

  .contact-container {
    max-width: 100%;
    padding: 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .contact-container h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }

  .contact-container p {
    font-size: 1rem;
    color: #555;
  }

  /* connect.css */

.social-icons {
    display: flex;
    flex-direction: column; /* Align icons vertically */
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* White transparent background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .social-icons a {
    text-decoration: none;
    display: flex; /* Align items horizontally */
    align-items: center; /* Center items vertically */
  }
  
  .social-icons svg {
    margin-right: 10px; /* Add margin between icon and text */
    transition: color 0.3s ease;
  }
  
  .social-icons svg:hover {
    color: #ffeb3b; /* Change the color on hover to yellow (#ffeb3b) */
  }
  
  .recording-studio-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
  }
  
  .studio-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .studio-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align items to the top */
  }
  
  .studio-description {
    flex: 1;
  }
  
  .studio-description p {
    margin-bottom: 15px;
    background-color: rgba(27, 26, 26, 0.8);
    padding: 10px;
    border-radius: 8px;
  }
  
  .studio-description ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
  }
  
  .studio-description li {
    margin-bottom: 5px;
    background-color: rgba(64, 119, 119, 0.8);
  }
  
  .studio-image {
    margin-left: auto; /* Move the image to the right */
    width: 50%; /* Adjust the width of the image */
  }
  
  .studio-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  @media screen and (max-width: 768px) {
    .studio-content {
      flex-direction: column; /* Stack elements in a column for smaller screens */
    }
  
    .studio-image {
      width: 100%; /* Make the image take full width on smaller screens */
      margin-left: 0; /* Remove margin for smaller screens */
      margin-top: 20px; /* Adjust margin for smaller screens */
    }
  }
  
  /* Additional CSS for the video container */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust the height as needed */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire container */
}

  
  /* Media query for smaller screens */
  @media screen and (max-width: 768px) {
    .card {
      flex-direction: column; /* Stack elements in a column for smaller screens */
    }
  
    .card-content {
      order: 2; /* Move content below the image in mobile view */
    }
  }

  

  @media screen and (max-width: 768px) {
    .contact-container {
      padding: 15px;
    }

    .contact-container h2 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .contact-container p {
      font-size: 0.9rem;
    }
  }
  
    @media screen and (max-width: 768px) {
    .social-icons {
      margin-top: 15px;
      padding: 15px; /* Adjust padding for smaller screens */
    }
  
    .social-icons svg {
      width: 24px;
      height: 24px;
      margin-right: 0; /* Remove margin for smaller screens */
    }
  }