/* 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;
  }
}


/* form { max-width: 400px; margin: 0 auto; }
form div { margin-bottom: 1em; }
label { display: block; margin-bottom: 0.5em; font-weight: bold; }
input, textarea {
  width: 100%;
  padding: 0.5em;
  box-sizing: border-box;
}
button {
  padding: 0.75em 1.5em;
  cursor: pointer;
} */

/* Contact Form & Details Layout */
.contact-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* allow wrapping on small screens */
  margin-bottom: 20px;
}
.contact-wrapper > * {
  flex: 1 1 100%; /* full width on mobile, side-by-side on desktop */
}

@media (min-width: 768px) {
  .contact-wrapper > * {
    flex: 1 1 48%; /* roughly half width on tablets and up */
  }
}

/* Responsive Map Layout */
.map-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .map-section {
    grid-template-columns: 1fr 1fr; /* 2 columns on wider screens */
  }
}

/* General styling */
form {
  max-width: 100%; /* remove fixed width so it adapts in flexbox */
}
iframe {
  width: 100%;
  height: 300px;
  border: none;
}


/* 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;
    }
