/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background: #fff;
}

/* ---------------- HEADER ---------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffe6f2;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Shrink on scroll */
.header.shrink {
    padding: 6px 20px;
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Square logo (your request) */
.logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 60%;
}

.logo-text-group {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: black;
}

.tagline {
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

nav a {
    font-size: 16px;
    text-decoration: none;
    color: #d63384;
    font-weight: 500;
}

nav a:hover {
    color: #a30055;
}

/* Instagram icon */
.insta-icon {
    width: 22px;
    height: 22px;
}

/* Mobile hamburger */
.mobile-menu-icon {
    display: none;
    font-size: 34px;
    cursor: pointer;
}

/* ---------------- HERO ---------------- */
.hero {
    margin-top: 110px;
    padding: 70px 20px;
    text-align: center;
    background: url('https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg') center/cover no-repeat;
    color: white;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px black;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px black;
}

/* ---------------- SERVICES ---------------- */
.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    color: #d63384;
    margin-bottom: 30px;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.box {
    padding: 20px;
    border: 2px solid #ffd6e8;
    border-radius: 10px;
    background: #fff0f6;
}

/* ---------------- ABOUT ---------------- */
.about {
    padding: 60px 20px;
    background: #ffe6f2;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.7;
}

/* ---------------- GALLERY ---------------- */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.gallery-container img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonials-section {
    padding: 60px 20px;
    background: #fff5f7;
    text-align: center;
}

.testimonials-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-box {
    width: 320px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ---------------- FOOTER ---------------- */
footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    margin: 4px 0;
}

.footer-right h3 {
    margin-bottom: 10px;
}

.footer-social img {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

/* ----------- WHATSAPP FLOAT ---------------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 17px;
    font-size: 28px;
    border-radius: 50%;
    z-index: 9999;
}

/* ---------------- MOBILE RESPONSIVE (fixed header + fit hamburger) ---------------- */
@media (max-width: 768px) {

  /* header layout — keep items on one row and avoid pushing the burger off-screen */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffe6f2;
    z-index: 10000;
    box-sizing: border-box;
    flex-wrap: nowrap;        /* do not allow unexpected wrapping */
  }

  /* logo group: allow it to shrink but never grow too big */
  .logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;           /* allows shrinking if space is tight */
    max-width: 68%;           /* keep logo+text within 68% so burger fits in 32% */
    overflow: hidden;         /* hide overflow text neatly */
    white-space: nowrap;      /* keep name on single line (ellipsis) */
  }

  /* make text truncate with ellipsis if too long */
  .logo-text-group {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  .logo-img {
    width: 42px;              /* reduced logo size for small screens */
    height: 42px;
    flex-shrink: 0;           /* do not shrink the image itself below this */
    object-fit: cover;
    border-radius: 50%;
  }

  .logo {
    font-size: 18px;
    line-height: 1;
    margin: 0;
  }

  .tagline {
    font-size: 11px;
    margin: 0;
    color: #444;
  }

  /* hamburger icon — ensure visible and never clipped */
  .mobile-menu-icon {
    display: block;
    font-size: 30px;         /* slightly smaller so it fits reliably */
    line-height: 1;
    padding: 6px;
    margin-left: 8px;
    flex-shrink: 0;          /* never shrink the burger */
    z-index: 10001;
    cursor: pointer;
    background: transparent;
    border: none;
  }

  /* compact dropdown menu (small height, scroll inside) */
  nav {
    position: fixed;
    top: 64px;               /* just under header */
    left: 0;
    width: 100%;
    max-height: 25vh;        /* compact menu */
    overflow-y: auto;
    display: none;
    flex-direction: column;
    background: #ffe6f2;
    padding: 6px 0;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  nav.active {
    display: flex;
  }

  /* text-only menu entries */
  nav a {
    display: block;
    padding: 8px 0;
    font-size: 17px;
    text-align: center;
    color: #d63384;
    text-decoration: none;
    background: none;
    border: none;
  }

  nav a:hover,
  nav a:active {
    color: #aa0055;
    background: rgba(255,205,230,0.25);
  }

  /* prevent site content from hiding under header */
  body {
    padding-top: 72px;
  }
}


/* Full-width Google Map Fix */
#google-map {
    width: 100%;
    padding: 0;
    margin: 0;
}

#google-map iframe {
    width: 100% !important;
    height: 380px !important; /* You can adjust height if needed */
    border: 0;
    display: block;
}

/* ---------------- Lightbox (style.css) ---------------- */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
/* Ensure Google Reviews shows fully in mobile */
#reviews {
    margin-top: 20px;
    padding: 10px 0;
    z-index: 1 !important;
    position: relative !important;
    overflow: visible !important;
}

/* Fix: header/menu should not cover content */
.header {
    z-index: 500 !important;
}

nav {
    z-index: 600 !important;
}
