html {
  background-color: black;
  margin: 0 auto;
}

body {
    background-color: #fff;
    max-width: 100%;
  }

.navigation-background {
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* Ensure a specific height for the black bar */
  height: 80px; 
  position: relative; /* Essential for the logo to anchor here */
  border-bottom: white solid 2px;
}

.logoleft {
  position: absolute; /* Takes it out of the flex flow */
  top: 10px;          /* Adjust vertical padding from top */
  left: 1vw;
  z-index: 10;        /* Ensures it sits on top of other elements */
}

.logoleft img {
  width: auto;
  height: 150px;       /* Keep aspect ratio to prevent stretching */
  /* Remove the height: 150px if it forces a stretch */
}

.nav-links {
  margin-left: auto;  /* Pushes links to the right since logo is absolute */
  align-self: center; /* Centers links vertically within the 80px bar */
}

  .nav-links ul {
    display: flex;
    color: white;
    list-style: none;
    padding-right: 10px;
  } 

  .nav-links li a {
    list-style: none;
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  .nav-links li a:hover {
    color: purple;
  }

  .hamburger {
    font-size: 2rem;
    cursor: pointer;
    display: none;
  }

  /* Hamburger Menu Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  
  .menu-overlay.active {
    display: flex;
  }
  
  .menu-overlay ul {
    list-style: none;
    text-align: center;
  }
  
  .menu-overlay a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    margin: 1rem 0;
  }
  
  .close-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }

.hero {
    position: relative; /* Required to contain the absolute video */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    margin: 5px;
    padding: 5%;
    overflow: hidden; /* Keeps the video from leaking out */
    background-color: black; /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the video behave like 'background-size: cover' */
    z-index: 1; /* Puts video at the back */
}

.quote {
    margin-top: -30rem;
    color: white;
    font-size: 3.5rem;
    text-align: center;
    max-width: 600px;
    margin-bottom: 20px;
    font-family: "Delicious Handrawn", cursive;
    font-weight: 400;
    font-style: normal;
    z-index: 2;
    position: relative;
}
.bookbutton {
    position: relative;
    z-index: 2; /* Pulls your text and button in front of the video */
}

/* Optional: Add a dark overlay so your text is easier to read over the video */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust 0.3 to make it darker or lighter */
    z-index: 1;
}

  .promotions {
    background-color: white;
    text-align: center;
    flex-wrap: wrap;
    padding: 40px
  }

  .promotions h2 {
    font-size: 3rem;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: purple;
  }


  .promotion-item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    border: black solid 2px;
  }
  .promotion-item {
    border: #0a0a0a dashed 2px;
    padding: 10px;
    max-width: 400px;
    margin: 40px;
    
  }

  .promotion-item h3 {
  font-family: "Creepster", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: purple;
  }

  .promotion-item p {
    font-size: 1rem;
    font-weight: bold;
  }

  .services {
    background-color: purple;
    padding: 50px;
    text-align: center;
    flex-wrap: wrap;
  }

  .services h2 {
    font-size: 3rem;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
  }

  .service-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem;
    gap: 3rem;
    padding-left: 11%;
  }

  .service-item-wrap {
    display: inline-block;
    margin: 20px;
    width: 400px;
  }

  .service-item-img {
    width: 200px;
  }

  .service-item-h3 {
    color: white;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;

  }

  .service-item-p {
    color: white;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;

  }

  .aboutus {
    margin-top: -3rem;
    background-color: black;
    text-align: center;
  }
  .aboutus2 {
    margin-top: -3rem;
    background-color: purple;
    text-align: center;
    padding-bottom: 4rem;
  }

  .aboutus h2 {
    font-size: 3rem;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    padding-top: 5rem;
  }
  .aboutus2 h2 {
    font-size: 3rem;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    padding-top: 90px
  }
  .aboutus-wrap {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    padding: 1rem;
    background-color: black;
    padding-bottom: 80px;
  }
  .aboutus-wrap2 {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    padding: 1rem;
    background-color: purple;
  }

  .about-us-left {
    width: 50%;
    padding: 3rem;
    padding-left: 5rem;
    padding-top: 10rem;
  }

.action-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
    padding-left: 19.5rem;
}

.book-now-btn {
    font-family: "Bungee", sans-serif;
    background-color: white;
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: 0.3s ease;
    border: 2px solid white;
}

.book-now-btn.dark {
    background-color: rgb(0, 0, 0);
    color: white;
    border-color: rgb(255, 255, 255);
}

.book-now-btn.dark2 {
    background-color: purple;
    color: white;
    border-color: rgb(255, 255, 255);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-family: "Bungee", sans-serif;
    font-size: 0.7rem;
}

.social-icon.dark {
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

  .about-us-left h3 {
    color: white;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
  }

  .about-us-left p {
    color: white;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
  }

  .about-us-left2 {
    width: 50%;
    padding: 3rem;
    padding-right: 5rem;
    padding-top: 10rem;
  }

  .about-us-left2 h3 {
    color: white;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
  }

  .about-us-left2 p {
    color: white;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
  }
  .about-us-right {
    width: 400px;
    padding: 3rem;
    padding-right: 350px;
    float: right;
  }

  .about-us-right2 {
    width: 400px;
    padding: 3rem;
    padding-left: 200px;
    float: left;
  }

  .meportrait {
    width: 500px;
    height: 500px;
    border-radius: 150%;
    border: white solid 2px;
    background-image: url('./images/portrait.jpg');
    background-position: center;
    background-size: 100% 100%;
  }

  .meportrait2 {
    width: 500px;
    height: 500px;
    border-radius: 150%;
    border: black solid 4px;
    background-image: url('./images/gia.jpeg');
    background-position: center;
    background-size: 100% 100%;
  }

  .contact {
    background-color: white;
    text-align: center;
    display: wrap;
  }

  .contact h2{
    font-size: 3rem;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    padding-top: 90px
  }

  .contactwrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .contactinfo {
    width: 50%;
    padding: 3rem;
    padding-left: 5rem;
    padding-top: 10rem;
  }

  .contactinfo p {
    color: black;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
  }

  .contactinfo h3 {
    color: black;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
  }

  .formwrapper {
    width: 50%;
    padding: 3rem;
    padding-right: 15rem;
    padding-top: 10rem;
  }

  .salon-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

  .input-group {
    display: flex;
    gap: 1rem;
}

  .salon-form input, 
  .salon-form select, 
  .salon-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid black; /* Matches your meportrait2 border */
    border-radius: 10px;
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
}

  .salon-form input:focus, 
  .salon-form select:focus, 
  .salon-form textarea:focus {
    outline: none;
    border-color: #555; /* Subtle shift on click */
}

  .submit-btn {
    font-family: "Bungee", sans-serif;
    background-color: black;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px; /* Rounded look to match your portraits */
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

  .submit-btn:hover {
    transform: scale(1.05);
    background-color: #333;
}

  .contactus2 {
    width: 100%;
    align-content: center;
  }

.contactus2 h3 {
    color: black;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
}

.contactus2 p {
    color: black;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
}

  .map-container iframe {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    border: 2px solid black; /* Matches your salon's aesthetic */
    border-radius: 10px;
}

footer {
  background-color: black;
  display: flex;
}

.footerlogo img {
  width: 150px;
  height: 100px;
  margin-top: 40px;
  padding-left: 10rem;
}

.footerlinks  ul {
  list-style: none;
  text-decoration: none;
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footerlinks li {
  padding: 10px;
}
.footerlinks a {
  text-decoration: none;
  color: white;
}

.footerlinks a:hover {
  color: purple;
}

.footercopy {
  padding-top: 4.5rem;
  margin: 0 auto;
  color: white;
  font-size: 24px;
}


/* DESKTOP STYLES (Screen wider than 1180px) */
@media (min-width: 1181px) {
    /* 1. Hide the video on desktop */
    .hero-video {
        display: none;
    }

    /* 2. Set the image background on the container */
    .hero {
        background-image: url("./images/coverphoto.jpeg"); /* Update with your path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-bottom-left-radius: 15%;
        border-bottom-right-radius: 15%;
    }

    /* 3. Fix the positioning for desktop */
    .quote {
        margin-top: -2rem; /* Removes the -30rem so it centers properly */
        background-color: rgba(114, 7, 141, 0.466); /* Optional: remove the circle background on desktop */
        border-radius: 100%;
    }
}

/* YOUR EXISTING MEDIA QUERY (Adjusted slightly for the quote) */
@media (max-width: 1180px) {
    .nav-links {
      display: none;
    }

    .logoleft {
      position: absolute;
      margin-left: 18%;
      z-index: 10;
    }
  
    .hamburger {
      display: block;
      width: 100%;
      text-align: right;
      padding: 25px;
      color: white;
    }

    .quote {
      /* This ensures the video version shows the quote correctly */
      margin-top: -2rem; 
      font-size: 2.5rem;
      padding: 0 1rem;
      background-color: rgba(0, 0, 0, 0.459);
      border-radius: 60%;
    }

    .promotions {
      padding: 0px;
    }

    .promotions h2 {
      font-size: 40px;
    }

    .promotion-item-wrap {
      width: 90%;
      margin: 0 auto;
      border: none;
      align-content: center;
    }

    .promotion-item {
      width: 100%;
      margin: 20px 0;
    }

    .services {
      padding: 1px;
    }

    .service-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0;
    }

    .aboutus-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .aboutus-wrap2 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .about-us-left {
      padding: 0;
      width: 100%;
      text-align: center;
    }

    .about-us-right {
      padding: 0;
      width: 100%;
      text-align: center;
    }

    .about-us-left2 {
      padding: 0;
      width: 100%;
      text-align: center;
    }

    .about-us-right2 {
      padding: 0;
      width: 100%;
      text-align: center;
    }

    .meportrait {
      margin: 0 auto;
      height: 250px;
      width: 300px;
    }
      .meportrait2 {
      margin: 0 auto;
      height: 250px;
      width: 300px;
    }

      /* Add this inside your @media (max-width: 969px) block */

  .contactwrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box; /* Ensures container doesn't leak */
  }

  .contactinfo {
    width: 100%;
    padding: 2rem; /* Resets the 5rem left padding */
    padding-top: 2rem; 
    box-sizing: border-box;
  }

  .formwrapper {
    width: 100%;
    /* CRITICAL: This overrides your 15rem desktop padding-right */
    padding: 2rem !important; 
    padding-top: 0 !important;
    box-sizing: border-box;
  }

  .salon-form {
    width: 100%; /* Ensure form takes full available container width */
    max-width: 100%; 
    margin: 0 auto;
  }

  .salon-form input, 
  .salon-form select, 
  .salon-form textarea {
    width: 100%;
    /* CRITICAL: Ensures the 1rem padding stays INSIDE the box */
    box-sizing: border-box; 
    -webkit-appearance: none; /* Fixes iPhone default styling */
  }

  .input-group {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .map-container iframe {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    border: 2px solid black; /* Matches your salon's aesthetic */
    border-radius: 10px;
}

   footer {
    display: flex;
    flex-wrap: wrap;
   }

   .footerlogo {
    margin-left: -60px;
   }

   .footerlinks {
    margin: 0 auto;
   }

   .footercopy {
    text-align: center;
   }

   .action-bar {
    flex-direction: column; /* Stacks Book Now above Socials */
    align-items: center;    /* Centers them horizontally */
    width: 100%;            /* Spans full width for alignment */
    gap: 1.5rem;            /* Space between button and icons */
    margin: 2rem auto 0;    /* Centers the whole bar */
    padding: 0;             /* Resets any accidental padding */
  }

  .social-links {
    justify-content: center; /* Centers the IG/FB icons together */
    width: 100%;
  }

  /* Ensures the Book Now button isn't too skinny on mobile */
  .book-now-btn {
    width: 80%; 
    max-width: 300px;
    text-align: center;
  }


  }