* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFF; 
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    padding-left: 60px; 
}

a {
    text-decoration:none;
}


.contact-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    min-height: 100vh;
    background-color: #fff;
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #ddd;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    display:flex;
    flex-direction:column;
}

.top-bar {
    margin-bottom: auto; /* Pushes buttons to the top */
}

.bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    text-decoration:none;
}


.contact-info i {
    font-size: 20px;
    color: #FF6B6B;
    margin-bottom: 5px;
}

.contact-info span {
    font-size: 12px;
    color: #666;
    text-align: center;
    width: 100%;
    font-weight: 500;
}

.contact-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #FF6B6B;
    font-weight: bold;
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
    margin-top: 20px;
    writing-mode: vertical-lr;
    text-orientation: upright;
}


header {
    display: flex;
    width:100%;
    position:fixed;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    background-color: #FF9B90; 
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.logo-container img {
    height: 100px;
    padding-left: 50px;
    margin: -10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding-right: 80px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: #FFC790;
}


.mobile-nav {
  display: none;
  position: absolute;
  left: 50px;
  width: 100%;
  background: #FF9B90; 
  z-index: 1000;
  margin-top:-75px;
  padding-right:100px;
}


.mobilelogo {
  display: none; 
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  margin-bottom: 10px;
  margin-top: -10px;
  max-width:50px;
}

  .mobilelogo img {
  max-width:100%;
}

.hero-section {
    position: relative;
    margin-top:100px;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFE8D4;
    margin-bottom: 0;
}


.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-text-overlay h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(4rem, 6vw, 6rem);
    color: white;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 15px 0;
    max-width: 800px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin: 0 0 25px 0; 
    max-width: 700px;
    line-height: 1.4;
}

.sideicon {
    height:30px;
    width:30px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFC790;
    color: #333;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.contact-btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #222; /* Slightly darker color on hover */
}

.hero-text-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Subtle overlay */
    z-index: 1; /* Behind the text */
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
    max-width:1200px;
    padding: 50px 20px;
    display: flex;
    margin: 0 auto;
    gap: 50px;
}

.about-text-overlay {
    padding: 20px;
    width:50%;
    margin-top:40px;
}

.about-subtitle {
    font-family: fantasy;
    font-size: 18px;
    color: #333; 
    margin-bottom: 5px;
    width:50%;
}

.about-text-overlay h2 {
    font-family: fantasy;
    font-size: 52px; 
    color: #333; 
    font-weight:600;
    line-height: 0.9;
    margin: 5px;
    text-shadow: -4px 1px 2px rgba(0, 0, 0, 0.2)
}

.about-description {
    padding: 20px;
    width:50%;
}

.about-description p {
    font-family: sans-serif;
    font-size: 20px;
    color: #333;
    line-height: 1.5;
}

/* Services Section Styling */
.services-section {
    background-color: #FF9B90;
    padding: 80px 20px;
    text-align: center;
}

.services-section h2 {
    font-family: fantasy, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: -4px 1px 2px rgba(0, 0, 0, 0.2);
    color: #000;
    margin-bottom: 40px;
    margin-top:-40px;
    letter-spacing: 2px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}


.service-icon {
    width: 80px;
    height: 80px;
    margin: -10px auto 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.service-icon:hover {
    background-color:white;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: -10px auto 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.service-card {
    background-color: #FFC790;
    padding: 30px;
    border-radius: 50px;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}


.service-card h3 {
    font-family: 'Georgia', serif;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
    }
}

/* Perfect Look Section */


.perfect-look-section {
    display: flex;
    align-items: center;
    background-color: #FFF; /* Soft peach background */
    padding: 20px 0px;
    margin: 0;
    max-width: 1200px;
    margin:auto;
}


.perfect-look-grid {
    flex: 1;
    margin: 25px;
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px rgba(255, 217, 252, 1)
}

.perfect-look-grid img {
    width: 100%;
    height:400px;
    object-fit: cover;
    border-radius: 10px;
}


.pinkbox {
    background-color:#FFD9FC;
    box-shadow: 0px 0px 0px 5px rgba(255, 187, 169, 1);
}

.orangebox {
    background-color: #FFE4C9;
    box-shadow: 0px 0px 0px 5px rgba(255, 187, 169, 1);
}

.orangerbox {
    background-color: #FFC790;
    box-shadow: 0px 0px 0px 5px #FFD9FC;
}

.peachbox {
    background-color: #FF9B90;
    box-shadow: 0px 0px 0px 5px rgba(255, 221, 144, 1);
}

.yellowbox {
    background-color: #FFDD90;
    box-shadow: 0px 0px 0px 5px rgba(255, 155, 144, 1);
}

.yellowborder {
    box-shadow: 0px 0px 0px 5px rgba(255, 221, 144, 1);
}
.peachborder {
    box-shadow: 0px 0px 0px 5px rgba(255, 155, 144, 1);
}

.perfect-look-content {
    width:50%;
    padding: 20px;
    border-radius: 100px;
    text-align: center;
    position: relative;
    flex: 1;
    margin:0px 20px 0px 20px;
}

.perfect-look-content h2 {
    font-family: fantasy, serif;
    font-size: 36px;
    color: #333;;
    margin-bottom: 20px;
    text-align: center;
    line-height: 40px;
    text-shadow: -2px 2px 2px rgba(0, 0, 0, .2)
}

.perfect-look-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

/* Carousel Container */
.perfect-look-carousel {
  position: relative;
  max-width: 50%;
  min-height: 100%;
}

.carousel-image {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, .03);
}

.carousel-nav.left {
  left: 40px;
  height:85%;
  width:20%;
}

.carousel-nav.right {
  right: 40px;
  height:85%;
  width:20%;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, .03);
}

.gallery-nav.left {
  left: 10px;
  height:97%;
  width:25%;
}

.gallery-nav.right {
  right: 10px;
  height:97%;
  width:25%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .perfect-look-section {
        flex-direction: column;
    }

    .image-grid {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .text-content {
        padding-left: 0;
    }
}

/* Carousel Container */
.testimonials-section {
    background-color: #FF9B90;
    padding: 30px;
    text-align: center;
}

/* Carousel Container */
.testimonials-section h2 {
    font-family: fantasy;
    font-size: 52px; 
    color: #FFF; 
    font-weight:600;
    line-height: 0.9;
    margin: 30px auto;
    margin-top:0px;
    text-shadow: -4px 1px 2px rgba(255, 255, 255, 0.2)
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    max-height:1000px;
    margin: auto;
    overflow: hidden;
}

.testimonial-card {
    display: none; /* Hide all testimonials by default */
    padding: 20px;
    margin:auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    height:100%;
}

.testimonial-card.active {
    display: block; /* Show the active testimonial */
}

.testimonial-card p {
    font-style: italic;
    margin: 10px;
    color: #333;
    font-family: 'Georgia', serif;
}

.testimonial-card h4 {
    margin: 0;
    color: #8B0000;
    font-family: 'Roboto', sans-serif;
}

/* Navigation Dots */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top:20px;
}

.testimonial-nav span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #8B0000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-nav span.active {
    background-color: #FFC790;
}

.testimonial-nav span:hover {
    background-color: #FFB347; 
}

/* Services Section Styling */
.packages-section {
    background-color: #FF9B90;
    padding: 40px 20px;
    text-align: center;
}

.packages-section h2 {
    font-family: fantasy, serif;
    font-size: 40px;
    text-shadow: -4px 1px 2px rgba(0, 0, 0, 0.2);
    color: #FFF;
    margin-top:-20px;
    margin-bottom: -20px;
    letter-spacing: 2px;
}

.package {
    flex: 1;
    margin: 40px;
}

.package img {
    width: 50%;
    max-height:500px;
    object-fit: cover;
    border-radius: 100px;
    box-shadow: 0px 0px 0px 5px rgba(251, 196, 243, 1);
}

.planning {
    display: flex; 
    width: 100%;
    padding: 20px;
    gap: 40px; 
}

.planning ul {
    line-height:25px;
    list-style-position: inside;
    text-align:left;
}

.planning-left {
    width: 50%; 
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
}

.planning-right {
    width: 50%; 
    margin:auto;
}

.planning-top {
    display: flex;
    align-items: center;
    margin: auto;
}

.planning-top h1 {
    padding:10px;
}

.planning-icon {
    width: 60px;
    height: 60px;
    margin:30px;
}

.planning-left p {
    margin: auto; 
    padding:8px;
}


.planning-right p {
    margin: auto;
    padding: 0;
    white-space: normal; 
}

.gallery-section {
    display: flex;
    align-items: left;
    justify-content:center;
    background-color: #FFDD90; 
}

.section-header {
    font-family: fantasy, serif;
    font-size: 42px;
    text-shadow: -4px 1px 2px rgba(0, 0, 0, 0.2);
    background-color: #F7D2F4;
    color: #FFF;
    letter-spacing: 2px;
    text-align: center;
    max-width:100%;
    padding:20px;
}

.section-header h3 {
    width:90%;
    margin:auto;
}

.whiteline {
    height:5px;
    background-color:#FFF;
    width:80%;
    justify-content:center;
    margin:auto;
}


.gallery-carousel {
  position: relative;
  max-width: 75%;
}

.gallery-content {
    width: 25%;
    margin:10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}



.inner-content {
    padding:100px 20px 100px 20px;
    border-radius:30%;
}

.gallery-content h2 {
    font-family: fantasy, serif;
    font-size: 36px;
    color: #333;;
    margin-bottom: 20px;
    text-align: center;
    line-height: 40px;
    text-shadow: -2px 2px 2px rgba(0, 0, 0, .2)
}

.gallery-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    text-align: center;
}

.gallery-grid {
    flex: 1;
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding: 0;
    margin:10px;
}

.gallery-grid img {
    width: 100%;
    height:800px;
    object-fit: cover;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.expanded-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 80px;
  cursor: pointer;
}

.contact-section {
    background-color: #FFC790;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-family: fantasy, serif;
    font-size: 40px;
    text-shadow: -4px 1px 2px rgba(0, 0, 0, 0.2);
    color: #FFF;
    margin-top:-20px;
    margin-bottom: -20px;
    letter-spacing: 2px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.map-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top:40px;
    flex-wrap: wrap;
}

.contact-grid {
    flex: 1;
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px rgba(255, 217, 252, 1);
    max-height:400px;
    margin:auto;
}

.contact-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-card {
    padding:40px;
    border-radius:30%;
    width: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    align-content: center;

}


.contact-card h3 {
    font-family: 'Georgia', serif;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-card p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card-image {
    max-width:100%;
    margin:0;    
}





.footer {
    display: flex;
    align-items: center;
    background-color: #FFF;
    max-width:1200px;
    padding:20px;
    margin-left: auto;
    margin-right: auto;
    line-height:18px;
}

.footer-section {
    width:33%;
}


/* Mobile adjustments */
@media (max-width: 768px) {
    body {
        padding-left: 50px;
    }
    .contact-sidebar {
        width: 50px;
    }
    .contact-info span {
        display: none;
    }
    .hero-section {
        flex-direction: column;
        margin-top:0px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .services-section h2 {
        font-size: 28px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0px;
        text-align: center;
        line-height:25px;
    }
    header {
        display:none;
    }
    .logo-container img {
    display:none;
    }

  .mobilelogo {
    display:block;
    width:100%;
  }


  /* Show navigation when hamburger is clicked */
  .mobilelogo.active + .mobile-nav {
    display: block;
  }

  /* Style mobile navigation */

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-nav li {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav a {
    color: #000;
    text-decoration: none;
  }
    .desktop-nav {
    display:none;
    }



    .about-text-overlay {
    padding: 0px;
    width:80%;
    }

.about-section {
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    justify-content: center;
}

.about-description {
    width:80%
}

    .about-description p {
        font-family: 'serif', sans-serif;
        font-size: 18px;
        color: #333;
        line-height: 1.4;
    }
.about-text-overlay h1 {
    font-family: fantasy;
    font-size: 40px; 
    color: #333; 
    }
.perfect-look-content {
    width:80%;
    }
/* Carousel Container */
.perfect-look-carousel {
  max-width: 100%;
}

.package img {
    width: 100%;
}

    .planning {
        flex-direction: column; /* Stack left/right content vertically */
        width: 100%; /* Ensure full width on mobile */
    }

    .planning-left,
    .planning-right {
        width: 100%; /* Each section takes full width */
    }


.gallery-section {
    flex-direction:column;
    width:100%;
    margin:0;
}


.gallery-carousel {
  max-width: 100%;
  margin-right:20px;
}

.gallery-content {
    width: 100%;
    flex-direction: column;
    margin:0;
    padding:20px 20px 10px 20px;
}

.gallery-content p {
    padding-left: 15px;
    padding-right: 15px;
}


.gallery-grid {
    display: column;
    width:100%;
}

.gallery-grid img {
    width: 100%;
    height:800px;
    object-fit: cover;
}

.gallery-nav.left {
  left: 10px;
  height:97%;
  width:25%;
}

.gallery-nav.right {
  right: -10px;
  height:97%;
  width:25%;
}

.inner-content {
    padding:20px 0px 20px 0px;
    border-radius:10%;
    width:100%;
}

.contact-container {
    width:100%;
    flex-direction: column;
    align-items:center;
}

.contact-card {
    width:100%;
}


.reverse {
    flex-direction: column-reverse;    
}

}
