/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    /* Colors */
    --color-primary: #0A192F; /* Deep elegant navy */
    --color-primary-light: #162C4E;
    --color-background: #FDFBF7; /* Soft nude/off-white */
    --color-surface: #FFFFFF;
    --color-accent-gold: #C5A059; /* Champagne/Gold */
    --color-accent-gold-hover: #B08D4C;
    --color-accent-pink: #F9EBEA; /* Soft pink for floral hints */
    --color-accent-green: #F2F4F0; /* Subtle olive/green hint */
    
    /* Text Colors */
    --color-text-main: #1A1A1A;
    --color-text-muted: #5A5A5A;
    --color-text-light: #FFFFFF;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Radii */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--space-xl) 0;
}

.bg-alt {
    background-color: var(--color-surface);
}

.bg-pinkish {
    background-color: var(--color-accent-pink);
}

.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* =========================================
   COMPONENTS
   ========================================= */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-text {
    font-weight: 500;
    color: var(--color-accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    display: inline-block;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.navbar.scrolled .logo {
    color: var(--color-primary);
}

/* On top, if over an image, you might want logo white. We'll handle it below */
.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .nav-links a:not(.btn) {
    color: var(--color-text-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--color-accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: 0.3s;
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background-color: var(--color-text-light);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-surface);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-primary);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/facade.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--color-text-light);
}

.hero-subtitle-top {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Adjust outline button for dark bg */
.hero-buttons .btn-outline {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary);
}

/* =========================================
   QUICK CHOICES
   ========================================= */
.choices-grid {
    margin-top: -80px; /* Pull up to overlap hero slightly */
    position: relative;
    z-index: 10;
}

.choice-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.choice-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.choice-map {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-icon {
    width: 60px;
    height: 60px;
    color: var(--color-accent-gold);
}

.choice-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.choice-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.choice-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--color-text-main);
}

.feature-list svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--color-primary);
    color: var(--color-accent-gold);
    padding: 1.5rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.2;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--color-surface);
}

/* =========================================
   MENU SECTION
   ========================================= */
.menu-grid {
    margin-top: 3rem;
}

.menu-category {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 0.5rem;
    color: var(--color-primary-light);
}

.menu-list li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed #EAEAEA;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.menu-list li:last-child {
    border-bottom: none;
}

/* =========================================
   GIFTS SECTION
   ========================================= */
.gifts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gifts-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.tag {
    background-color: var(--color-surface);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   DIFFERENTIALS
   ========================================= */
.diff-grid {
    margin-top: 3rem;
}

.diff-card {
    background-color: var(--color-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.diff-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   LOCAL SEO
   ========================================= */
.seo-title {
    font-size: 2.5rem;
}
.seo-text {
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   FINAL CTA
   ========================================= */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: var(--color-accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.footer h4 {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-hours p, .footer-links ul li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-up { transform: translateY(30px); }
.fade-right { transform: translateX(-30px); }
.fade-left { transform: translateX(30px); }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .choices-grid { margin-top: -40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; z-index: 1001; }
    .mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .navbar:not(.scrolled) .mobile-menu-btn.open span { background-color: var(--color-primary); } /* Darker X */

    .hero-title { font-size: 2.8rem; }
    .hero { min-height: auto; padding: 120px 0 80px; background-attachment: scroll; }
    
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    
    .about-container, .gifts-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image { height: 300px; }
    .gifts-image { height: 300px; border-radius: var(--radius-lg); }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .cta-buttons .btn { width: 100%; }
    .experience-badge { width: 100px; height: 100px; font-size: 0.9rem; padding: 1rem; }
}
