/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* Font Variables */
:root {
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-tertiary: 'Poppins', sans-serif;
}
html{
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size */
  overflow-x: hidden;
}


/* Apply Fonts */
body {
  font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

p, a, button {
  font-family: var(--font-tertiary);
}

/* Reset & base */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Helvetica Neue', sans-serif; line-height:1.6; color:#333; overflow-x: hidden; }
.container { width:90%; max-width:1200px; margin:0 auto; overflow-x: hidden; }

/* Variables */
:root {
  --gold: #c19a6b;
  --dark: #333;
  --light: #fff;
}

/* ---------------- Header ---------------- */
.site-header {
  background: var(--dark);
  /* border-bottom: 1px solid #eee; */
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  /* Allow dropdowns to overflow */
  overflow: visible;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-height: 100px;
}

.site-header .container {
  display: flex;
  align-items: center;
  position: sticky;
  z-index: 80;
  top: 0;
  justify-content: space-between;
  /* padding: 1rem 0; */
  overflow: visible;
  min-height: 100px;
}

.logo img {
  max-height: 100px;
  width: auto;
  height: auto; 
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* -------- Main Nav -------- */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--light);
}

/* ----- Submenu ----- */
.site-nav ul li {
  position: relative;
}

.site-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;    /* directly under “Treatments” */
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 100;
}

.site-nav .submenu li a {
  display: block;
  padding: 0.75em 1em;
  color: #333;
  white-space: nowrap;
}

.site-nav .submenu li a:hover {
  background: #f5f5f5;
}

/* show on hover (desktop) */
.site-nav ul li.has-submenu:hover > .submenu {
  display: block;
}

/* arrow indicator */
.site-nav ul li.has-submenu > a::after {
  content: " ▼";
  font-size: 0.7em;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    padding: 1rem;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-nav a {
    padding: 0.5rem 0;
  }

  /* in mobile, let tapping “Treatments” toggle its submenu */
  .site-nav .submenu {
    position: static;
    box-shadow: none;
  }
  .site-nav ul li.has-submenu.open > .submenu {
    display: block;
  }
}

/* About Page Styles */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.about-image {
    flex: 1;
    max-width: 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    max-width: 50%;
}

.about-content h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #222;
    justify-content: center;
}

.about-content p {
    text-align: justify;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        overflow-x: hidden;
    }

    .about-image, .about-content {
        max-width: 100%;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* Mission and Vision Section */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    overflow-x: hidden;
}

.mission, .vision {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission h2, .vision h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.mission p, .vision p {
    font-size: 1rem;
}

/* Responsive Styles for Mission and Vision Section */
@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
        overflow-x: hidden;
        overflow-x: hidden;
    }

    .mission, .vision {
        flex: none;
        width: 100%;
    }

    .mission h2, .vision h2 {
        font-size: 1.5rem;
    }

    .mission p, .vision p {
        font-size: 0.95rem;
    }
}

/* Team Section */
.team {
    margin-bottom: 40px;
}

.team h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #222;
}

.team-member p {
    font-size: 1rem;
    color: #666;
}

/* Checklist Section */
.checklist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.checklist-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.left-column {
    flex: 1;
    max-width: 45%;
}

.left-column h1 {
    font-size: 5rem;
    color: #222;
    margin-top: 100px;
    margin-bottom: 20px;
    text-align: center;
}

.right-column {
    flex: 1;
    max-width: 50%;
}

.right-column h2 {
    font-size: 2rem;
    color: #444;
    margin-bottom: 15px;
}

.right-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.right-column ul {
    list-style: none;
    padding: 0;
}

.right-column li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333;
}

.right-column li i {
    color: #28a745;
    margin-right: 10px;
}

/* Responsive Styles for Checklist Section */
@media (max-width: 768px) {
    .checklist {
        flex-direction: column;
        text-align: center;
    }

    .checklist-container {
        flex-direction: column;
    }

    .left-column, .right-column {
        max-width: 100%;
    }

    .left-column h1 {
        font-size: 2rem;
    }

    .right-column h2 {
        font-size: 1.8rem;
    }

    .right-column p {
        font-size: 1rem;
    }

    .right-column li {
        font-size: 0.95rem;
    }
}

/* Footer */
/* Footer base */
/* Footer base */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
  }
  .site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .site-footer a:hover {
    color: var(--gold);
  }
  
  /* Four-column grid */
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    /* justify-items: center; */
    text-align: justify;
  }
  .footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: justify;

  }
  .footer-column p,
  .footer-column ul {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Social links layout */
  .social{
    margin-left: 40px;
  }
  .social-links {
    display: flex;
    /* justify-content: center; */
    text-align: justify;
    gap: 10px;
    flex-wrap: wrap;
    
  }
  
  /* Footer bottom text */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #ccc;
  }
  
  /* Tablet: 2 columns */
  @media (max-width: 1024px) {
    .footer-columns {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile: 1 column */
  @media (max-width: 600px) {
    .footer-columns {
      grid-template-columns: 1fr;
    }
    .footer-column {
      padding: 1rem 0;
    }
  }
  /* Responsive adjustments */
  @media (max-width:600px){
     .social{
    margin: 0px;
  }
  }

  /* whats app button style */
   .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 999;
      background: #25d366;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.2s;
    }
    .whatsapp-float:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      background: #20ba5a;
    }