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

body {
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    background: #fdfcfa;
    overflow-x: hidden;
}

/* WhatsApp floating button - bottom right */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: url('img/20260518_115852.webp') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.logo-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 16px auto;
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Faenza Gallery Section */
.gallery-section {
    padding: 80px 24px;
    background: #fff;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b8960c;
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #3a3225;
    margin-bottom: 16px;
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8960c, transparent);
    margin: 0 auto 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 300;
    color: #7a6f60;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

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

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

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--tall img {
    height: 100%;
    min-height: 500px;
}

.gallery-item--wide img {
    height: 300px;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Brochure Section */
.brochure-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f7f4ee, #fdfcfa);
    text-align: center;
}

.brochure-description {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    font-weight: 300;
    color: #6b5a3e;
    line-height: 1.8;
    text-align: center;
}

.brochure-showcase {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.brochure-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brochure-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brochure-cta-wrapper {
    margin-top: 48px;
}

.brochure-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #8b6914, #b8960c);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 105, 20, 0.25);
}

.brochure-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 105, 20, 0.35);
}

.brochure-cta svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Footer */
.footer {
    padding: 40px 24px;
    text-align: center;
    background: #3a3225;
    color: #c4b99a;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3.2rem;
    }

    .logo-subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

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

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

    .gallery-item--tall {
        grid-row: span 1;
    }

    .gallery-item--tall img {
        min-height: 300px;
        height: 350px;
    }

    .gallery-item--wide img {
        height: 250px;
    }

    .gallery-item .caption {
        opacity: 1;
    }

    .brochure-showcase {
        flex-direction: column;
    }

    .brochure-section {
        padding: 60px 16px;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .hero {
        padding: 40px 16px;
    }

    .gallery-section {
        padding: 50px 16px;
    }

    .gallery-item--tall img {
        min-height: 260px;
        height: 300px;
    }

    .gallery-item--wide img {
        height: 220px;
    }

    .whatsapp-btn {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}
