:root {
            --main-color: #1A1A1A;
            --accent-color: #FF69B4;
            --secondary-accent: #E0E0E0;
            --background-color: #F9F9F9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--background-color);
            color: var(--main-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .brand-name {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--accent-color);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--main-color);
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .header-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .admin-login {
            color: var(--main-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .admin-login:hover {
            color: var(--accent-color);
        }
        
       /* Hero Section (responsive) */
.hero {
    /* fallback for older browsers */
    height: 100vh;
    /* modern viewport unit for mobile browser UI chrome */
    height: 100svh;

    background:
      linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)),
      url('../img/hero_image.webp') no-repeat center center / cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 0 1rem; /* small horizontal padding so text doesn't hug edges on mobile */
}

.hero .hero-content {
    max-width: 900px; /* keeps lines readable on large screens */
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem); /* fluid scaling */
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.hero .hero-btn {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    border: none;
    border-radius: 999px;
    cursor: pointer;
}

/* Tablet tweaks */
@media (max-width: 992px) {
    .hero {
        background-position: center top; /* keep subject visible on shorter screens */
    }
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .hero {
        /* slightly shorter to avoid address bar overlap on some mobile browsers */
        height: 90vh;
        height: 90svh;
        padding: 0 1.25rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero .hero-btn {
        padding: 0.7rem 1.2rem;
    }
}

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-btn {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hero-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: white;
        }
        
        .about-text p {
    text-align: justify;
    line-height: 1.7;
}

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .about-content.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        
/* Service Quick-View Modal (required core rules) */
.svc-modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;               /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.svc-modal-backdrop.show{
  display: flex;               /* shown when .show is added in JS */
}
.svc-modal{
  width: min(92vw, 560px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.svc-modal__header{
  display:flex; align-items:center; justify-content:space-between;
  background:#f8f8fa; border-bottom:1px solid #eee;
  padding:.9rem 1.1rem;
}
.svc-modal__title{
  font-family: 'Playfair Display', serif;
  font-size:1.2rem; font-weight:600; color: var(--accent-color, #d4af37);
}
.svc-modal__close{
  background:transparent; border:none; font-size:1.25rem; cursor:pointer; color:#777;
}
.svc-modal__body{ padding: 1rem 1.1rem; color:#444; }
.svc-modal__body ul{ margin: .5rem 0 0 1.2rem; }
.svc-modal__footer{
  display:flex; gap:.5rem; justify-content:flex-end;
  padding:.9rem 1.1rem 1.1rem; border-top:1px solid #eee; background:#fcfcfd;
}
.svc-btn{
  padding:.6rem 1rem; border-radius:10px; font-weight:600; cursor:pointer; text-decoration:none; display:inline-block;
}
.svc-btn--outline{ border:1px solid #e0e0e0; background:#fff; color:#333; }
.svc-btn--primary{ border:1px solid var(--accent-color, #d4af37); background: var(--accent-color, #d4af37); color:#fff; box-shadow:0 6px 16px rgba(212,175,55,.25); }


        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--main-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--background-color);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--main-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--main-color);
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .learn-more {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .learn-more:hover {
            text-decoration: underline;
        }
        
       /* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* always 3 across desktop */
    gap: 28px;
}

/* Gallery items */
.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    aspect-ratio: 1 / 1; /* makes all square tiles */
}

.gallery-item.appear {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

        
        /* Instagram CTA Button */
        .instagram-cta {
            text-align: center;
            margin-top: 40px;
            padding: 20px 0;
        }
        
        .instagram-btn {
            background-color: transparent;
            color: var(--main-color);
            border: 2px solid var(--accent-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            font-size: 1rem;
        }
        
        .instagram-btn:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--background-color);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .testimonial-card.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* Booking Section */
        .booking {
            padding: 100px 0;
            background-color: white;
        }
        
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--background-color);
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .booking-container.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-field {
            margin-bottom: 20px;
        }
        
        .form-field.full-width {
            grid-column: 1 / -1;
        }
        
        .form-field label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--main-color);
        }
        
        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        
        .form-field textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
        }
        
        .confirmation-message {
            display: none;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 20px;
            border-radius: 5px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
        }
        
        /* WhatsApp CTA Button */
        .whatsapp-cta {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }
        
        .whatsapp-btn {
            background-color: transparent;
            color: var(--main-color);
            border: 2px solid var(--accent-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            font-size: 1rem;
        }
        
        .whatsapp-btn:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background-color: var(--main-color);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #ccc;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .business-hours {
            list-style: none;
        }
        
        .business-hours li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .business-hours li:last-child {
            border-bottom: none;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        /* tighter icon alignment in footer */
            .contact-info i {
              min-width: 20px;
              text-align: center;
              font-size: 1.1rem;
            }
            .contact-info span {
              line-height: 1.5;
            }
            
            /* Service Quick-View Modal */
.svc-modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.svc-modal-backdrop.show{ display: flex; }

.svc-modal{
  width: min(92vw, 560px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.svc-modal__header{
  display:flex; align-items:center; justify-content:space-between;
  background:#f8f8fa; border-bottom:1px solid #eee;
  padding:.9rem 1.1rem;
}
.svc-modal__title{
  font-family: 'Playfair Display', serif;
  font-size:1.2rem; font-weight:600; color: var(--accent-color, #d4af37);
}
.svc-modal__close{
  background:transparent; border:none; font-size:1.25rem; cursor:pointer; color:#777;
}

.svc-modal__body{ padding: 1rem 1.1rem; color:#444; }
.svc-modal__body ul{ margin: .5rem 0 0 1.2rem; }

.svc-modal__footer{
  display:flex; gap:.5rem; justify-content:flex-end;
  padding:.9rem 1.1rem 1.1rem; border-top:1px solid #eee; background:#fcfcfd;
}

.svc-btn{
  padding:.6rem 1rem; border-radius:10px; font-weight:600; cursor:pointer; text-decoration:none; display:inline-block;
}
.svc-btn--outline{ border:1px solid #e0e0e0; background:#fff; color:#333; }
.svc-btn--primary{ border:1px solid var(--accent-color, #d4af37); background: var(--accent-color, #d4af37); color:#fff; box-shadow:0 6px 16px rgba(212,175,55,.25); }

/* Small devices */
@media (max-width: 480px){
  .svc-modal__title{ font-size:1.05rem; }
  .svc-modal__body{ font-size:.95rem; }
}


        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .booking-form {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .booking-container {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
        /* === Auth (Login / Reset / Forgot) === */
.auth-wrap {
  min-height: 100svh; /* mobile-safe 100vh */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #FFF0F5; /* matches your login page look */
  color: var(--main-color);
}

.auth-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(255, 105, 180, 0.1);
  margin-bottom: 22px;
}

.auth-card {
  background: #FFFFFF;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 16px;
  padding: 32px;
  width: min(92vw, 420px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.auth-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-color);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.auth-label {
  display: block;
  margin: 1rem 0 0.5rem;
  text-align: left;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--secondary-accent);
  border-radius: 8px;
  background: var(--background-color);
  color: var(--main-color);
  font-size: 1rem;
  transition: all 0.25s ease;
}
.auth-input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.12);
}

.auth-btn {
  margin-top: 22px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.auth-small {
  font-size: 0.9rem;
  color: #666;
  margin-top: 14px;
}

.auth-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-link:hover {
  color: #ff85c6;
  text-decoration: underline;
}

.auth-error {
  margin: 1rem 0;
  padding: 12px;
  background: #ffebee;
  border-radius: 8px;
  border: 1px solid #ffcdd2;
  color: #d32f2f;
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .auth-brand { font-size: 2rem; margin-bottom: 18px; }
  .auth-card { padding: 24px; }
  .auth-title { font-size: 1.3rem; margin-bottom: 18px; }
}