/* ===== CSS Custom Properties ===== */
:root {
    /* Colors */
    --color-brown-dark: #5D4037;
    --color-brown: #6D4C41;
    --color-brown-light: #8D6E63;
    --color-pink: #E8B4B8;
    --color-pink-light: #F5E1E4;
    --color-pink-soft: #FDF2F4;
    --color-cream: #FDF8F5;
    --color-white: #FFFFFF;
    --color-text: #3E2723;
    --color-text-light: #5D4037;
    --color-text-muted: #8D6E63;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #5D4037 0%, #8D6E63 50%, #E8B4B8 100%);
    --gradient-contact: linear-gradient(135deg, #E8B4B8 0%, #F5E1E4 50%, #FDF8F5 100%);
    --gradient-button: linear-gradient(135deg, #5D4037 0%, #6D4C41 100%);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(93, 64, 55, 0.08);
    --shadow-md: 0 4px 16px rgba(93, 64, 55, 0.12);
    --shadow-lg: 0 8px 32px rgba(93, 64, 55, 0.16);
    --shadow-xl: 0 16px 48px rgba(93, 64, 55, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-pink-light);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    letter-spacing: 0.5px;
}

.logo-subtext {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: normal;
    color: var(--color-brown-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-pink);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--color-brown-dark);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--color-brown-dark);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-brown-dark);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    max-width: 800px;
}

.hero-logo {
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-xs);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-pink-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-slogan {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-pink-light), transparent);
    margin: 0 auto var(--space-xl);
}

.hero-welcome {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.welcome-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.welcome-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    background-color: var(--color-white);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: var(--color-pink-light);
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-pink);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-pink-soft);
    border-radius: var(--radius-full);
}

.section-header.light .section-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-brown-dark);
    margin-bottom: var(--space-sm);
}

.section-header.light .section-title {
    color: var(--color-brown-dark);
}

.section-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.section-header.light .section-desc {
    color: var(--color-text-light);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: var(--space-3xl) 0;
    background-color: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    border: 2px dashed var(--color-brown-light);
    border-radius: var(--radius-md);
    opacity: 0.5;
}

.placeholder-text {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--color-text-muted);
    opacity: 0.7;
}

.gallery-info {
    padding: var(--space-lg);
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    margin-bottom: var(--space-xs);
}

.gallery-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.gallery-item.featured {
    grid-column: span 2;
}

/* ===== Contact Section ===== */
.contact {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--gradient-contact);
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 400px;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
}

.contact-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    color: var(--color-white);
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 28px;
    height: 28px;
    fill: #FFFFFF;
    color: #FFFFFF;
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-label {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-sublabel {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-pink-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-brown-dark);
}

.contact-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-pink);
    opacity: 0.5;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-brown-dark);
    padding: var(--space-xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-pink-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-copy {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: var(--space-lg);
        gap: var(--space-sm);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger {
        background-color: transparent;
    }

    .nav-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .hero-content {
        padding: var(--space-2xl) var(--space-sm);
    }

    .hero-welcome {
        padding: var(--space-lg);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    .contact-info {
        flex-direction: column;
        gap: var(--space-md);
    }

    .contact-divider {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-btn {
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }

    .btn-label {
        font-size: 1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-logo,
.hero-slogan,
.hero-divider,
.hero-welcome,
.hero-cta {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slogan {
    animation-delay: 0.2s;
}

.hero-divider {
    animation-delay: 0.3s;
}

.hero-welcome {
    animation-delay: 0.4s;
}

.hero-cta {
    animation-delay: 0.5s;
}