

:root {
    --african-violet: #997ba7;
    --amaranth-pink: #ed8eb3;
    --lavender-pink: #eaa9d1;
    --pale-purple: #e4d0df;
    --rose-quartz: #aca8ca;
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #333;
    overflow-x: hidden;
    padding: 0;
    line-height: 1.5;
  }

  header {
    position: sticky;
    top: 0;
    background:rgb(250, 250, 242);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    border-radius: 0 0 25px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .logo img {
height: 80px; /* or however tall you want */
width: auto;
object-fit: contain;
}
.logo {
display: flex;
align-items: center;
height: 90px; /* lock the nav height */
overflow: hidden; /* hide anything that overflows */
transform: translateX(-40px);
}


  nav {
    display: flex;
    gap: 1.5rem;
  }

  nav a {
    position: relative;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
  }

  nav a:hover {
    color: var(--amaranth-pink);
    background: rgba(237, 142, 179, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--lavender-pink), var(--rose-quartz));
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeIn 1s ease-in-out;
    letter-spacing: 1.5px;
  }

  .hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 2rem;
  }

  .cta-button {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--amaranth-pink);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .cta-button:hover {
    background: var(--african-violet);
    transform: scale(1.05);
  }

  /* About Section */
.about {
    background: var(--african-violet);
    padding: 3.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: white;
    width: 80%; /* Adjust width for smaller size */
    margin-left: auto;
    margin-right: auto;
}

.about:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: beige; /* Lighter color for better contrast */
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.1rem;
    color: var(--pale-purple); /* Softer text color */
    margin-bottom: 1.5rem;
}


  .services {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }

  .service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    width: 23%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .service-card h3 {
    font-size: 1.6rem;
    color: var(--amaranth-pink);
    margin-bottom: 1rem;
  }

  .service-card p {
    font-size: 1rem;
    color: #555;
  }

  .benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    flex-wrap: wrap;
    background-color: white;
  }

  .benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    width: 20%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
  }

  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .benefit-card i {
    font-size: 3rem;
    color: var(--amaranth-pink);
    margin-bottom: 1rem;
  }

  .benefit-card h4 {
    font-size: 1.4rem;
    color: var(--african-violet);
    margin-top: 1rem;
  }

 /* FAQ Section Styling */
.faq {
padding: 40px;
background-color:white;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq h2 {
text-align: center;
font-size: 2rem;
color: var(--lavender-pink);
margin-bottom: 20px;
}

.faq-container {
display: flex;
flex-direction: column;
gap: 15px;
}

.faq-item {
background-color: #ffffff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.faq-item:hover {
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
padding: 15px;
display: flex;
align-items: center;
cursor: pointer;
background-color: var(--amaranth-pink);
color: #5e4b8b;
font-weight: bold;
}

.faq-question:hover {
background-color: #d6c1e8;
}

.faq-icon {
font-size: 1.5rem;
margin-right: 10px;
transition: transform 0.3s ease;
}

.faq-answer {
display: none;
padding: 15px;
background-color: #f1f1f1;
color: #555;
}

.faq-answer p {
margin: 0;
}

/* AOS Animation */
.faq-item[data-aos="fade-up"] {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-item[data-aos="fade-up"].aos-animate {
opacity: 1;
transform: translateY(0);
}


  .contact {
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    background: var(--rose-quartz);
    color: white;
    border-radius: 50px;
  }

  .floating-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem;
    font-size: 2.5rem;
    background: var(--amaranth-pink);
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .floating-btn:hover {
    background: var(--african-violet);
    transform: scale(1.1);
  }


  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .footer {
  background: white;
  color: #4b3f4e;
  padding: 40px 8%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}



.footer-about {
  font-size: 15px;
  color: #5a4c60;
  line-height: 1.6;
}

.footer-section h3 {
  font-size: 18px;
  color: var(--african-violet);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--amaranth-pink);
  padding-bottom: 5px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #5a4c60;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--amaranth-pink);
}

.footer-section p {
  font-size: 15px;
  margin: 5px 0;
  color: #5a4c60;
}
.footer-section img{
  height: 130px;
  width: auto;
}
.social-icons {
  margin-top: 15px;
}

.social-link {
  color: var(--rose-quartz);
  font-size: 20px;
  margin-right: 12px;
  transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
  transform: scale(1.2);
  color: var(--lavender-pink);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #6a5a74;
  border-top: 1px solid #d1bed2;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .social-icons {
    margin-top: 20px;
  }
}
/* General header styles */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #f3f3f3;
}



/* Navigation styles */
.navbar {
display: flex;
align-items: center;
justify-content: flex-end;
width: 100%;
}

.nav-links {
display: flex;
list-style: none;
padding: 0;
margin: 0;
}

.nav-links li {
margin-left: 20px;
}

.nav-links a {
text-decoration: none;
color: #5e4b8b;
font-size: 1rem;
font-weight: bold;
}

/* Hamburger Icon Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }
  
  .hamburger .bar {
    width: 30px;
    height: 4px;
    background-color: #5e4b8b;
    border-radius: 5px;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;
      background-color: #f3f3f3;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right 0.3s ease-in-out;
      box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links li {
      margin: 20px 0;
    }
  
    .nav-links a {
      font-size: 1.2rem;
    }
  
    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 2rem;
      color: #5e4b8b;
      cursor: pointer;
    }
  }
  /* Close Button Styles */
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #5e4b8b;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* Show close button only when menu is active on mobile */
  @media (max-width: 768px) {
    .nav-links.active .close-btn {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background-color: #f3f3f3;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease-in-out;
      z-index: 1000;
    }
  
    .nav-links.active {
      right: 0;
    }
  }
  
  
.studio-interior {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color:white;
    font-family: 'Poppins', sans-serif;
  }
  

  
  /* Studio Image Block */
  .studio-image {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px; /* Ensure images are contained */
    text-align: center;
  }
  
  /* Image Styling */
  .studio-image img {
    width: 100%;
    height: 250px; /* Adjust image height */
    object-fit: cover; /* Ensures the image covers the area */
    border-bottom: 4px solid #9b5de5; /* African violet accent */
    transition: transform 0.3s ease;
  }
  
  /* Hover Effect for Images */
  .studio-image:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  .studio-image:hover img {
    transform: scale(1.05);
  }
  
  /* Text Styling */
  .studio-image h3 {
    font-size: 1.6em;
    margin: 20px 0;
    color: #9b5de5; /* African violet */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 3px solid #f6a5c0; /* Rose Quartz accent */
  }
  
  .studio-image p {
    font-size: 1em;
    color: #6b4f8c; /* Amaranth pink */
    padding: 0 20px 20px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  /* Hover Effect on Text */
  .studio-image:hover p {
    opacity: 1;
  }
  
  /* Media Query for Mobile Optimization */
  @media (max-width: 768px) {
    .studio-interior {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .studio-image h3 {
      font-size: 1.4em;
    }
  
    .studio-image p {
      font-size: 0.9em;
    }
  }
  /* Floating Call Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--amaranth-pink);
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
    border: none;
}

.floating-btn:hover {
    background-color: var(--african-violet);
}

/* Call Popup */
.call-popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

/* Call Popup Content */
.call-popup-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.call-popup-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.call-popup-content a {
    color: var(--amaranth-pink);
    text-decoration: none;
}

.call-popup-content .close-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--african-violet);
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.call-popup-content .close-btn:hover {
    color: var(--rose-quartz);
}
.magical-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #fff0f8, #fce9f1);
    overflow: hidden;
  }
  
  .magical-section.light {
    background: linear-gradient(to bottom, #fdfbff, #f0f0ff);
  }
  
  .magical-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #b06ab3;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .magical-cards,
  .why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .magical-card,
  .why-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(176, 106, 179, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f3d6e6;
    backdrop-filter: blur(5px);
  }
  
  .magical-card:hover,
  .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(176, 106, 179, 0.25);
  }
  
  .floating-element {
    position: absolute;
    background-image: url('https://www.transparenttextures.com/patterns/petal.png');
    opacity: 0.15;
    background-size: cover;
    width: 200px;
    height: 200px;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
  }
  
  .flower-left {
    top: 0;
    left: -50px;
  }
  
  .flower-right {
    bottom: 0;
    right: -50px;
  }
  
  .soft-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,247,0.3), transparent 70%);
    transform: translateX(-50%);
    filter: blur(90px);
    z-index: 0;
  }
  
  .icon {
    font-size: 2.5rem;
    color: #e79ac7;
    margin-bottom: 10px;
    display: block;
  }
  
  /* Scroll animation */
  [data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  
  [data-animate].fade-up {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0); }
  }

  .map-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fce4ec, #f3e5f5);
    border-radius: 2rem;
    box-shadow: 0 0 30px rgba(255, 182, 193, 0.3);
    margin: 4rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
  }
  
  .map-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .map-container {
    position: relative;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 3px solid #e1bee7;
    box-shadow: 0 10px 20px rgba(240, 98, 146, 0.2);
  }
  .map-heading{
    text-align: center;
  }
  @media (max-width: 1024px) {
    .service-card, .benefit-card {
      width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .service-card, .benefit-card {
      width: 100%;
    }
  
    .services, .benefits {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .service-card, .benefit-card {
      padding: 1.5rem;
    }
  
    .service-card h3, .benefit-card h4 {
      font-size: 1.3rem;
    }
  
    .service-card p, .benefit-card p {
      font-size: 0.95rem;
    }
  
    .benefit-card i {
      font-size: 2.2rem;
    }
  }
  .section-title {
    font-size: 2.4rem;
    color: var(--african-violet);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--amaranth-pink);
    margin: 0.8rem auto 0;
    border-radius: 2px;
  }
  .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
  }
  .testimonials {
    text-align: center;
    margin-top: 3rem;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    color: var(--african-violet);
    margin-bottom: 2rem;
  }
  
  .testimonial-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card p {
    font-size: 1.2rem;
    color: #555;
  }
  
  .testimonial-card span {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: var(--amaranth-pink);
  }
  .opening-hours-section {
    background: linear-gradient(to right, #fbe8f9, #f4e2f0);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #b66ba8;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .flower-divider {
    font-size: 2rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .hours-grid {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .day {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    color: #4e4e4e;
    border-bottom: 1px dashed #e1cce4;
    padding-bottom: 8px;
  }
  
  .day:last-child {
    border-bottom: none;
  }
  
  .day.closed {
    color: #c75b78;
    font-weight: 500;
  }
  .logo img {
    width: 100%;
    max-width: 130px; /* controls how big it can get */
    height: auto;
    display: block;
  }
  
  @media (max-width: 768px) {
    .logo img {
      max-width: 150px;
    }
  }
    .close-btn {
  font-size: 24px;
  font-weight: bold;
  color: #b76e79 !important; /* Elegant rose tone */
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999; /* Ensures it’s on top */
}

/* Hover effect */
.close-btn:hover {
  color: #8a3e4b !important; /* Darker on hover */
}
/* Styling for the Home Visit Section */
.home-visit-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  color: #5e4b8b;
  text-align: center;
  position: relative;
}

.home-visit-section .container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.home-visit-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #5e4b8b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.flower-divider {
  font-size: 3rem;
  margin: 20px 0;
  color: #d1a6b7;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5e4b8b;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
  .home-visit-section h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}
