/* ======== CSS VARIABLES ======== */
:root {
    --bg-color: #fcfbf9; /* Soft cream */
    --surface-color: #ffffff; /* White */
    --primary-color: #dfc88e; /* Soft Gold */
    --primary-dark: #c5a059; /* Deeper Gold */
    --text-main: #4a4542; /* Soft brown/grey */
    --text-light: #7b7571;
    --pastel-accent: #f2ede5; /* Very light beige/cream */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
    
    --shadow-soft: 0 10px 40px rgba(74, 69, 66, 0.05);
}

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

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

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

.mt-5 {
    margin-top: 3rem;
}

/* ======== TYPOGRAPHY ======== */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--surface-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 1.5rem 0;
}

.text-center .divider {
    margin: 1.5rem auto;
}

/* ======== BUTTONS ======== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 200, 142, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(223, 200, 142, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 200, 142, 0); }
}

/* ======== NAVBAR ======== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(252, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--surface-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--surface-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.whatsapp-btn {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--surface-color);
}

.navbar.scrolled .whatsapp-btn {
    border-color: var(--primary-color);
    color: var(--primary-dark);
}
.navbar.scrolled .whatsapp-btn:hover {
    background-color: var(--primary-color);
    color: var(--surface-color);
}

/* ======== HERO SECTION ======== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.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;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ======== ABOUT SECTION ======== */
.about {
    padding: 8rem 0;
    background-color: var(--bg-color);
    position: relative;
}

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

.about-text p {
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* ======== GALLERY SECTION ======== */
.gallery {
    padding: 5rem 0 8rem;
    background-color: var(--pastel-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--surface-color);
    transition: var(--transition-fast);
}

.gallery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: var(--surface-color);
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption p {
    opacity: 1;
    transform: translateY(0);
}

/* ======== PRICING SECTION ======== */
.pricing {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.pricing-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.pricing-category {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.category-title {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--pastel-accent);
    padding-bottom: 1rem;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px dashed var(--pastel-accent);
}

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

.pricing-info {
    display: flex;
    flex-direction: column;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
}

/* ======== FOOTER ======== */
.footer {
    background-color: #2a2825;
    color: #e3dac9;
    padding: 5rem 0 2rem;
}

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

.footer .logo {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer h4 {
    color: var(--surface-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #a49e98;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #7b7571;
    font-size: 0.9rem;
}

/* ======== REVEAL ANIMATIONS ======== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* ======== RESPONSIVE ======== */
@media (max-width: 992px) {
    .about-container, .pricing-menu {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none; /* simple hidden nav on mobile for this static page */
    }
}
@media (max-width: 768px) {
    .hero-content {
        padding-top: 4rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .pricing-category {
        padding: 2rem;
    }
}
