/* =========================================
   Posh & Polish - CSS Variables & Reset
   ========================================= */
   :root {
    /* Color Palette */
    --clr-bg-main: #FAF7F5; /* Soft Cream */
    --clr-bg-card: #FFFFFF;
    --clr-primary: #C49799; /* Dusty Rose */
    --clr-primary-dark: #A87D7E;
    --clr-text-main: #333333;
    --clr-text-light: #666666;
    --clr-text-muted: #999999;
    --clr-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --section-pad: 80px 20px;
    --border-rad: 12px;
    --border-rad-lg: 24px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--section-pad);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #25D366; /* WhatsApp Green */
    color: var(--clr-white);
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.btn-secondary:hover {
    background-color: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 151, 153, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--clr-text-main);
    display: block;
}

.logo-posh {
    font-style: italic;
    margin-right: 5px;
}

.logo-amp {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--clr-primary);
    margin: 0 5px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-main);
    transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--clr-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--clr-text-main);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(250, 247, 245, 0.95) 0%, rgba(250, 247, 245, 0.7) 50%, rgba(250, 247, 245, 0.2) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--clr-text-main); /* Darkened for better contrast over background */
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* =========================================
   Services Section
   ========================================= */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--clr-bg-card);
    border-radius: var(--border-rad-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-img-wrap {
    height: 300px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-info p {
    color: var(--clr-text-light);
    margin-bottom: 25px;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--clr-text-main);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--clr-primary);
}

/* =========================================
   Google Reviews Section
   ========================================= */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 600;
}

.stars {
    color: #FBBC05; /* Google Yellow */
    display: flex;
    gap: 2px;
}

.rating-count {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--clr-white);
    padding: 30px;
    border-radius: var(--border-rad);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-family: var(--font-body);
}

.review-date {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.google-icon {
    font-size: 1.5rem;
}

.review-card .stars {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    font-style: italic;
}

.mt-40 {
    margin-top: 40px;
}

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-banner h2 {
    color: var(--clr-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--clr-text-main);
    color: var(--clr-white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--clr-white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--clr-text-muted);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-contact p, .footer-hours p {
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Animations & Utilities
   ========================================= */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-overlay {
        background: linear-gradient(to right, rgba(250, 247, 245, 0.95) 0%, rgba(250, 247, 245, 0.85) 100%);
    }
    .nav-links { gap: 15px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--clr-white);
        padding: 0 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 9999;
    }
    
    .main-nav.active {
        max-height: 400px;
        padding: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 14px 5px;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--clr-text-main);
    }

    .nav-links a.active, .nav-links a:hover {
        color: var(--clr-primary);
    }
    
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; justify-content: center; }
    
    .section-header h2 { font-size: 2rem; }
    .cta-banner h2 { font-size: 2rem; }

    /* Hide premium Call Now button in header on mobile */
    .header-contact { display: none; }

    /* Slider hero on mobile */
    .premium-hero-slider {
        height: 50vh;
        min-height: 280px;
    }
    .slider-content .hero-title { font-size: 2rem; }
    .slider-content .hero-desc { font-size: 0.9rem; }

    /* Pill nav on mobile */
    .premium-sticky-nav { top: 80px; }
    .pill-links { justify-content: flex-start; padding: 0 15px; gap: 10px; }
    .pill-btn { padding: 7px 16px; font-size: 0.85rem; }

    /* Card padding on mobile */
    .menu-category-card { margin-bottom: 30px; }
    .card-header { padding: 20px 16px; }
    .card-header h2 { font-size: 1.6rem; }
    .card-body { padding: 16px; }
    .table-title { font-size: 1.1rem; }

    /* Menu container full width on mobile */
    .menu-container { max-width: 100%; padding: 0 10px; }
}

/* =========================================
   Premium Services & Pricing Redesign 
   ========================================= */

/* Hero Image Slider */
.premium-hero-slider {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Offset for fixed header */
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.slider-content {
    position: relative;
    z-index: 3;
    color: var(--clr-white);
}

.slider-content .hero-title {
    color: var(--clr-white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slider-content .hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Sticky Pill Navigation */
.premium-sticky-nav {
    position: sticky;
    top: 80px;
    background: var(--clr-white);
    z-index: 900;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.pill-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px; /* for scrollbar spacing */
}

.pill-btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: var(--clr-bg-main);
    color: var(--clr-text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
}

.pill-btn:hover, .pill-btn.active {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(196, 151, 153, 0.3);
}

@media (max-width: 768px) {
    .pill-links {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.scroll-mt {
    scroll-margin-top: 150px; /* Offset for header + sticky pill nav */
}

/* Premium Category Cards */
.menu-category-card {
    background: var(--clr-white);
    border-radius: var(--border-rad-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Stronger premium shadow */
    margin-bottom: 50px;
    overflow: hidden;
    transition: box-shadow var(--transition-slow), transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-category-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.card-header {
    background: #FDFBFA; /* Extremely subtle tint */
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.card-header h2 {
    font-size: 2.2rem;
    color: var(--clr-text-main);
    margin-bottom: 5px;
}

.card-header p {
    color: var(--clr-text-light);
    font-style: italic;
    font-size: 1.05rem;
}

.card-body {
    padding: 30px 40px;
}

.table-title {
    font-size: 1.3rem;
    color: var(--clr-text-main);
    margin-bottom: 15px;
    border-left: 4px solid var(--clr-primary);
    padding-left: 12px;
}

.t-desc {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
}

.mt-30 {
    margin-top: 30px;
}

/* True Tabular Pricing Grid */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.t-head, .t-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.2fr;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.t-head {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.t-service {
    font-weight: 500;
    color: var(--clr-text-main);
    font-size: 1.05rem;
}

.t-price {
    color: var(--clr-text-light);
    font-family: var(--font-body);
}

.t-member-price {
    font-weight: 700;
    color: var(--clr-primary);
    background: rgba(196, 151, 153, 0.08); /* Highlight members column */
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* Book Now Button */
.t-action {
    text-align: right;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: #25D366; /* WhatsApp Green */
    border: 1px solid #25D366;
    background: transparent;
    transition: var(--transition-fast);
}

.btn-book:hover {
    background: #25D366;
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .card-header, .card-body {
        padding: 20px;
    }
    
    .pricing-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .pricing-table {
        min-width: 600px; /* Force table to maintain width and scroll on small screens */
    }
}

