/* ========================================
   AGRITURISMO BELLA RIPA - ELEGANT ANTIQUE STYLE
   ======================================== */

/* CSS Variables - Emerald & Gold Palette */
:root {
    /* Primary Colors - Emerald Green */
    --primary: #046A38;
    --primary-dark: #034C28;
    --primary-light: #0D8A4A;

    /* Gold & Bronze Accents */
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #F4D03F;
    --bronze: #CD7F32;
    --copper: #B87333;

    /* Light Neutrals */
    --cream: #F5F9F6;
    --antique-white: #EDF5F0;
    --parchment: #E5EFE8;
    --warm-gray: #C5D5CB;
    --taupe: #6B8574;

    /* Deep Greens */
    --wood-dark: #0A1F12;
    --wood-medium: #132B1A;
    --wood-light: #1E3D26;
    --espresso: #061208;

    /* Accent Colors */
    --forest: #1B4D2E;
    --olive: #4A7C23;
    --terracotta: #C04000;
    --emerald: #046A38;
    --jade: #00A86B;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-elegant: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Warmer tones */
    --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.1);
    --shadow-md: 0 4px 20px rgba(62, 39, 35, 0.15);
    --shadow-lg: 0 8px 40px rgba(62, 39, 35, 0.2);
    --shadow-xl: 0 20px 60px rgba(62, 39, 35, 0.25);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--wood-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--wood-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto;
}

/* Elegant Ornament Dividers */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.ornament::before,
.ornament::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-elegant);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--cream);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--wood-dark);
}

.btn-full {
    width: 100%;
}

/* ========================================
   FIXED SOCIAL BUTTONS
   ======================================== */
.social-fixed {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--gold);
}

.social-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.whatsapp {
    background: linear-gradient(145deg, #2be06f, #20b858);
    width: 65px;
    height: 65px;
    font-size: 2rem;
    position: relative;
    animation: pulse-whatsapp-3d 1.5s ease-in-out infinite;
    box-shadow:
        0 4px 15px rgba(37, 211, 102, 0.4),
        0 8px 30px rgba(37, 211, 102, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 500px;
}

.social-btn.whatsapp i {
    animation: icon-bounce 1.5s ease-in-out infinite;
    display: inline-block;
}

.social-btn.whatsapp::before,
.social-btn.whatsapp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(37, 211, 102, 0.6);
    background: transparent;
    z-index: -1;
    animation: wave-whatsapp 1.8s ease-out infinite;
}

.social-btn.whatsapp::after {
    animation-delay: 0.9s;
}

@keyframes pulse-whatsapp-3d {
    0%, 100% {
        transform: scale(1) translateZ(0) rotateX(0deg);
        box-shadow:
            0 4px 15px rgba(37, 211, 102, 0.4),
            0 8px 30px rgba(37, 211, 102, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.15) translateZ(10px) rotateX(5deg);
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.5),
            0 15px 40px rgba(37, 211, 102, 0.4),
            inset 0 2px 15px rgba(255, 255, 255, 0.4);
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

@keyframes wave-whatsapp {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 20px 0;
    transition: var(--transition-elegant);
}

.navbar.scrolled {
    background: rgba(250, 246, 237, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gold);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    transition: var(--transition-normal);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-subtitle {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--gold-light);
    margin-top: -5px;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo-text {
    color: var(--wood-dark);
    text-shadow: none;
}

.navbar.scrolled .logo-subtitle {
    color: var(--gold-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition-normal);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--gold-light);
}

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

.navbar.scrolled .nav-link {
    color: var(--wood-dark);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--cream) !important;
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    text-shadow: none !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--wood-dark) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--wood-dark);
}

/* ========================================
   HERO SECTION - 3D ANIMATED
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--espresso) 50%, var(--wood-medium) 100%);
}

/* Animated Background Elements */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: -10%;
    background-image: url('../up/5922428300103978570.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) sepia(0.3);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

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

/* Falling Stars */
.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: starFall 8s linear infinite;
    box-shadow:
        0 0 6px var(--gold),
        0 0 12px var(--gold),
        0 0 20px rgba(212, 175, 55, 0.5);
}

.star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    opacity: 0.6;
}

.star:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 6s; }
.star:nth-child(2) { left: 15%; animation-delay: 1s; animation-duration: 8s; }
.star:nth-child(3) { left: 25%; animation-delay: 2.5s; animation-duration: 7s; }
.star:nth-child(4) { left: 35%; animation-delay: 0.5s; animation-duration: 9s; }
.star:nth-child(5) { left: 45%; animation-delay: 3s; animation-duration: 6.5s; }
.star:nth-child(6) { left: 55%; animation-delay: 1.5s; animation-duration: 8.5s; }
.star:nth-child(7) { left: 65%; animation-delay: 4s; animation-duration: 7.5s; }
.star:nth-child(8) { left: 75%; animation-delay: 2s; animation-duration: 6s; }
.star:nth-child(9) { left: 85%; animation-delay: 3.5s; animation-duration: 9s; }
.star:nth-child(10) { left: 95%; animation-delay: 0.8s; animation-duration: 7s; }
.star:nth-child(11) { left: 10%; animation-delay: 4.5s; animation-duration: 8s; }
.star:nth-child(12) { left: 30%; animation-delay: 5s; animation-duration: 6.5s; }
.star:nth-child(13) { left: 50%; animation-delay: 5.5s; animation-duration: 7.5s; }
.star:nth-child(14) { left: 70%; animation-delay: 6s; animation-duration: 8.5s; }
.star:nth-child(15) { left: 90%; animation-delay: 6.5s; animation-duration: 6s; }

@keyframes starFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: translateX(0) rotate(45deg);
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: translateX(-100px) rotate(45deg);
    }
}

/* Shooting Stars - Occasional */
.shooting-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.shooting-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        0 0 10px 2px #fff,
        0 0 20px 4px var(--gold),
        0 0 40px 8px var(--gold-light);
}

.shooting-star::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(to left, #fff, var(--gold), transparent);
    border-radius: 2px;
}

.shooting-star:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: shootingStar 12s ease-out infinite;
    animation-delay: 3s;
}

.shooting-star:nth-child(2) {
    top: 25%;
    left: 60%;
    animation: shootingStar 15s ease-out infinite;
    animation-delay: 8s;
}

.shooting-star:nth-child(3) {
    top: 15%;
    left: 40%;
    animation: shootingStar 18s ease-out infinite;
    animation-delay: 14s;
}

@keyframes shootingStar {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(-45deg);
    }
    1% {
        opacity: 1;
    }
    3% {
        opacity: 1;
        transform: translate(300px, 300px) rotate(-45deg);
    }
    4% {
        opacity: 0;
        transform: translate(350px, 350px) rotate(-45deg);
    }
    100% {
        opacity: 0;
        transform: translate(350px, 350px) rotate(-45deg);
    }
}

/* Elegant Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(4, 106, 56, 0.85) 0%,
            rgba(3, 76, 40, 0.75) 30%,
            rgba(10, 31, 18, 0.8) 70%,
            rgba(6, 18, 8, 0.9) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
}

/* Floating Elements - Simple & Elegant */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    opacity: 0.15;
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease-out;
}

/* Horse 1 - Large, front */
.float-element.el1 {
    font-size: 7rem;
    bottom: 5%;
    color: var(--gold);
    opacity: 0.22;
    animation: horseRun 22s linear infinite;
}

/* Horse 2 - Smaller, back */
.float-element.el2 {
    font-size: 5rem;
    bottom: 12%;
    color: var(--gold-light);
    opacity: 0.14;
    animation: horseRun 28s linear infinite;
    animation-delay: -10s;
}

/* Horse 3 - Medium, middle */
.float-element.el9 {
    font-size: 6rem;
    bottom: 8%;
    color: var(--gold);
    opacity: 0.18;
    animation: horseRun 25s linear infinite;
    animation-delay: -18s;
}

/* Dove 1 */
.float-element.el3 {
    font-size: 2rem;
    top: 15%;
    color: var(--cream);
    opacity: 0.25;
    animation: birdFly 15s ease-in-out infinite;
}

/* Dove 2 */
.float-element.el4 {
    font-size: 1.5rem;
    top: 22%;
    color: var(--cream);
    opacity: 0.18;
    animation: birdFly 20s ease-in-out infinite;
    animation-delay: -7s;
}

/* Dove 3 */
.float-element.el10 {
    font-size: 1.8rem;
    top: 18%;
    color: var(--cream);
    opacity: 0.22;
    animation: birdFly 17s ease-in-out infinite;
    animation-delay: -12s;
}

/* Leaf 1 */
.float-element.el5 {
    font-size: 1.8rem;
    left: 15%;
    color: var(--olive);
    opacity: 0.2;
    animation: leafFall 18s ease-in-out infinite;
}

/* Leaf 2 */
.float-element.el6 {
    font-size: 1.4rem;
    left: 75%;
    color: var(--forest);
    opacity: 0.15;
    animation: leafFall 22s ease-in-out infinite;
    animation-delay: -8s;
}

/* Feather */
.float-element.el7 {
    font-size: 1.6rem;
    left: 45%;
    color: var(--gold-light);
    opacity: 0.18;
    animation: featherFloat 25s ease-in-out infinite;
    animation-delay: -5s;
}

/* Wind */
.float-element.el8 {
    font-size: 2rem;
    top: 40%;
    right: 10%;
    color: var(--cream);
    opacity: 0.1;
    animation: windBlow 12s ease-in-out infinite;
}

/* Horse Animation */
@keyframes horseRun {
    0% {
        left: -10%;
        transform: scaleX(1) translateY(0);
    }
    5% { transform: scaleX(1) translateY(-8px); }
    10% { transform: scaleX(1) translateY(0); }
    15% { transform: scaleX(1) translateY(-8px); }
    20% { transform: scaleX(1) translateY(0); }
    25% { transform: scaleX(1) translateY(-8px); }
    30% { transform: scaleX(1) translateY(0); }
    35% { transform: scaleX(1) translateY(-8px); }
    40% { transform: scaleX(1) translateY(0); }
    45% { transform: scaleX(1) translateY(-8px); }
    50% {
        left: 110%;
        transform: scaleX(1) translateY(0);
    }
    50.01% {
        left: 110%;
        transform: scaleX(-1) translateY(0);
    }
    55% { transform: scaleX(-1) translateY(-8px); }
    60% { transform: scaleX(-1) translateY(0); }
    65% { transform: scaleX(-1) translateY(-8px); }
    70% { transform: scaleX(-1) translateY(0); }
    75% { transform: scaleX(-1) translateY(-8px); }
    80% { transform: scaleX(-1) translateY(0); }
    85% { transform: scaleX(-1) translateY(-8px); }
    90% { transform: scaleX(-1) translateY(0); }
    95% { transform: scaleX(-1) translateY(-8px); }
    100% {
        left: -10%;
        transform: scaleX(-1) translateY(0);
    }
}

/* Bird Animation */
@keyframes birdFly {
    0% {
        left: -5%;
        transform: translateY(0) rotate(0deg);
    }
    20% { transform: translateY(-20px) rotate(-5deg); }
    40% { transform: translateY(10px) rotate(3deg); }
    50% {
        left: 105%;
        transform: translateY(-10px) rotate(-3deg);
    }
    50.01% {
        left: 105%;
        transform: translateY(-10px) scaleX(-1);
    }
    70% { transform: translateY(-25px) scaleX(-1) rotate(5deg); }
    85% { transform: translateY(5px) scaleX(-1) rotate(-3deg); }
    100% {
        left: -5%;
        transform: translateY(0) scaleX(-1);
    }
}

/* Leaf Fall Animation */
@keyframes leafFall {
    0% {
        top: -5%;
        transform: rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.2; }
    25% { transform: rotate(60deg) translateX(20px); }
    50% { transform: rotate(120deg) translateX(-15px); }
    75% { transform: rotate(200deg) translateX(25px); }
    90% { opacity: 0.2; }
    100% {
        top: 105%;
        transform: rotate(280deg) translateX(-10px);
        opacity: 0;
    }
}

/* Feather Float Animation */
@keyframes featherFloat {
    0% {
        top: -5%;
        transform: rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.18; }
    20% { transform: rotate(15deg) translateX(30px); }
    40% { transform: rotate(-10deg) translateX(-20px); }
    60% { transform: rotate(20deg) translateX(40px); }
    80% { transform: rotate(-15deg) translateX(-30px); }
    90% { opacity: 0.18; }
    100% {
        top: 105%;
        transform: rotate(10deg) translateX(20px);
        opacity: 0;
    }
}

/* Wind Blow Animation */
@keyframes windBlow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateX(-50px) scale(1.2);
        opacity: 0.15;
    }
}

/* Golden Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; }
.particle:nth-child(11) { left: 25%; animation-delay: 0.5s; }
.particle:nth-child(12) { left: 35%; animation-delay: 2.2s; }
.particle:nth-child(13) { left: 45%; animation-delay: 4.2s; }
.particle:nth-child(14) { left: 55%; animation-delay: 1.2s; }
.particle:nth-child(15) { left: 65%; animation-delay: 3.2s; }
.particle:nth-child(16) { left: 75%; animation-delay: 5.2s; }
.particle:nth-child(17) { left: 85%; animation-delay: 2.7s; }
.particle:nth-child(18) { left: 95%; animation-delay: 4.7s; }
.particle:nth-child(19) { left: 5%; animation-delay: 1.7s; }
.particle:nth-child(20) { left: 50%; animation-delay: 3.7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--cream);
    padding: 0 20px;
    padding-top: 40px;
    max-width: 900px;
}

/* Logo Container */
.logo-container {
    margin-bottom: 20px;
}

.logo-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

.logo-svg .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 10px;
}

.logo-svg .logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
}

.logo-svg .logo-year {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* Wheat animation */
.logo-svg .wheat-left,
.logo-svg .wheat-right {
    animation: wheatSway 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.logo-svg .wheat-right {
    animation-delay: -2s;
}

@keyframes wheatSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* Hide wheat on mobile */
@media (max-width: 600px) {
    .logo-svg .wheat-left,
    .logo-svg .wheat-right {
        display: none;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Decorative Frame */
.hero-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
}

.hero-frame::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.hero-frame::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* Corner Ornaments */
.corner-ornament {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.corner-ornament.top-left {
    top: 40px;
    left: 40px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.corner-ornament.top-right {
    top: 40px;
    right: 40px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.corner-ornament.bottom-left {
    bottom: 40px;
    left: 40px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.corner-ornament.bottom-right {
    bottom: 40px;
    right: 40px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 0;
    margin-bottom: 25px;
    position: relative;
}

.hero-badge::before,
.hero-badge::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.8rem;
}

.hero-badge::before { left: 10px; }
.hero-badge::after { right: 10px; }

.hero-badge span {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.hero-title-small {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--gold-light);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: shimmer 3s ease-in-out infinite, fadeInUp 1s ease 0.5s both;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin: 25px 0 35px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-divider span {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-divider i {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-location i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.3s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SECTIONS BASE
   ======================================== */
.section {
    padding: var(--section-padding);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--cream);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--parchment), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: sepia(0.1);
}

.about-img-main:hover img {
    transform: scale(1.05);
    filter: sepia(0);
}

.about-img-secondary {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    animation: pulse 2s infinite;
}

.about-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-light);
}

.about-badge .text {
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--wood-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.about-text p {
    color: var(--wood-light);
    margin-bottom: 15px;
}

.about-text .highlight-text {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text .highlight-text strong {
    color: var(--gold);
    font-style: normal;
    letter-spacing: 2px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--gold-dark);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wood-dark);
}

/* ========================================
   DRONE / PARALLAX SECTION
   ======================================== */
.drone-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.drone-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.drone-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.drone-parallax {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: sepia(0.2);
}

.drone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 106, 56, 0.6), rgba(10, 31, 18, 0.7));
}

.drone-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    padding: 25px 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.drone-tag {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.drone-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.drone-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
    background: linear-gradient(to bottom, var(--parchment), var(--cream));
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.menu-price-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    padding: 30px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.menu-price-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.price-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-icon i {
    font-size: 2rem;
    color: var(--gold-light);
}

.price-text {
    flex: 1;
}

.price-text h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--gold-light);
}

.price-amount .currency {
    font-size: 1.5rem;
}

.price-amount .value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-amount .per {
    font-size: 1rem;
    opacity: 0.85;
    color: var(--cream);
}

.menu-grid {
    display: grid;
    gap: 40px;
}

.menu-category {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--warm-gray);
    transition: var(--transition-normal);
}

.menu-category:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.menu-category-header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid var(--gold);
}

.menu-icon i {
    font-size: 1.5rem;
    color: var(--gold-light);
}

.menu-category-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.menu-divider {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--parchment);
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-gray);
    transition: all 0.6s ease-out;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

.menu-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.menu-item.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05) saturate(1.2);
}

.menu-item-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item:hover .menu-item-img {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-width: 3px;
}

.menu-item-content {
    flex: 1;
}

.menu-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--wood-dark);
}

.menu-item-content p {
    font-size: 0.9rem;
    color: var(--taupe);
    line-height: 1.5;
}

.speciality-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--wood-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wines Section */
.menu-category.wines {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--gold);
}

.menu-category.wines .menu-category-header h3 {
    color: var(--cream);
}

.menu-category.wines .menu-icon {
    background: rgba(212, 175, 55, 0.2);
}

.menu-category.wines .menu-divider {
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.wines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.wine-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.wine-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.wine-item i {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.wine-item h4 {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wine-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.wine-item.featured {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
}

/* Dolci e Vini Combined Section */
.dolci-vini-combined {
    background: linear-gradient(135deg, var(--cream) 0%, #f8f4e8 100%);
    padding: 25px 30px !important;
}

.dolci-vini-combined .menu-divider {
    display: none;
}

.dolci-vini-combined .menu-category-header {
    margin-bottom: 15px;
}

.dolci-vini-content {
    display: flex;
    justify-content: center;
}

.dolci-vini-images {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.dolci-vini-image {
    position: relative;
    width: 120px;
    height: 120px;
    text-align: center;
}

.dolci-vini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dolci-vini-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.dolci-vini-image .img-label {
    display: block;
    margin-top: 8px;
    color: var(--wood-medium);
    font-size: 0.85rem;
    font-weight: 500;
}

.dolci-vini-image .img-label i {
    color: var(--gold);
    margin-right: 4px;
}

@media (max-width: 480px) {
    .dolci-vini-images {
        gap: 20px;
    }

    .dolci-vini-image {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   FIREPLACE SECTION - ENHANCED
   ======================================== */
.fireplace-section-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--espresso) 0%, var(--wood-dark) 50%, #1a0a05 100%);
    padding: 80px 0;
}

/* Video Background */
.fireplace-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.fireplace-video-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: brightness(0.4) saturate(1.3);
}

/* Fire Particles / Embers */
.fire-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.ember {
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff6b35 0%, #ff4500 50%, transparent 70%);
    border-radius: 50%;
    animation: emberFloat 6s ease-out infinite;
    opacity: 0;
    box-shadow: 0 0 10px #ff6b35, 0 0 20px #ff4500;
}

.ember:nth-child(1) { left: 10%; animation-delay: 0s; }
.ember:nth-child(2) { left: 20%; animation-delay: 0.4s; }
.ember:nth-child(3) { left: 30%; animation-delay: 0.8s; }
.ember:nth-child(4) { left: 40%; animation-delay: 1.2s; }
.ember:nth-child(5) { left: 50%; animation-delay: 1.6s; }
.ember:nth-child(6) { left: 60%; animation-delay: 2s; }
.ember:nth-child(7) { left: 70%; animation-delay: 2.4s; }
.ember:nth-child(8) { left: 80%; animation-delay: 2.8s; }
.ember:nth-child(9) { left: 90%; animation-delay: 3.2s; }
.ember:nth-child(10) { left: 15%; animation-delay: 3.6s; }
.ember:nth-child(11) { left: 25%; animation-delay: 4s; }
.ember:nth-child(12) { left: 45%; animation-delay: 4.4s; }
.ember:nth-child(13) { left: 55%; animation-delay: 4.8s; }
.ember:nth-child(14) { left: 75%; animation-delay: 5.2s; }
.ember:nth-child(15) { left: 85%; animation-delay: 5.6s; }

@keyframes emberFloat {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: translateY(-600px) scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Gradient Overlay */
.fireplace-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at center, transparent 0%, rgba(26, 10, 5, 0.8) 100%);
    z-index: 2;
}

/* Heat Wave Effect */
.heat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top,
        rgba(255, 69, 0, 0.1) 0%,
        rgba(255, 107, 53, 0.05) 50%,
        transparent 100%);
    animation: heatWave 3s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes heatWave {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1.1);
        opacity: 0.8;
    }
}

/* Content Layout */
.fireplace-enhanced-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Info */
.fireplace-info {
    color: var(--cream);
}

.fireplace-icon-animated {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.fireplace-icon-animated i {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: #ff6b35;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px #ff4500);
}

@keyframes fireFlicker {
    0% {
        transform: scale(1) rotate(-2deg);
        filter: drop-shadow(0 0 20px #ff4500) drop-shadow(0 0 40px #ff6b35);
    }
    100% {
        transform: scale(1.05) rotate(2deg);
        filter: drop-shadow(0 0 30px #ff4500) drop-shadow(0 0 60px #ff6b35);
    }
}

.fire-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, rgba(255, 69, 0, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: fireGlow 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes fireGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.fireplace-tag {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.fireplace-info h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-family: var(--font-heading);
    color: var(--cream);
    margin-bottom: 25px;
    line-height: 1.2;
}

.fireplace-info h2 span {
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.fireplace-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.fireplace-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.fire-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.fire-feature i {
    font-size: 2rem;
    color: #ff6b35;
    filter: drop-shadow(0 0 10px #ff4500);
    animation: fireFlicker 1s ease-in-out infinite alternate;
}

.fire-feature:nth-child(2) i { animation-delay: 0.3s; }
.fire-feature:nth-child(3) i { animation-delay: 0.6s; }

.fire-feature span {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Gallery */
.fireplace-gallery {
    position: relative;
}

.fireplace-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(255, 69, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(255, 107, 53, 0.1);
}

.fireplace-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fireplace-frame {
    position: absolute;
    inset: 10px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    pointer-events: none;
    opacity: 0.6;
}

.fireplace-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s;
}

.fireplace-gallery-main:hover .fireplace-shine {
    transform: translateX(100%);
}

/* Thumbnails */
.fireplace-gallery-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.fireplace-thumb {
    width: 100px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.fireplace-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fireplace-thumb:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.fireplace-thumb:hover img {
    transform: scale(1.1);
}

.fireplace-thumb.active {
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.fireplace-thumb.video-thumb .play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--cream);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.fireplace-thumb.video-thumb:hover .play-icon {
    background: rgba(255, 69, 0, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .fireplace-enhanced-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .fireplace-info {
        order: 2;
    }

    .fireplace-gallery {
        order: 1;
    }

    .fireplace-icon-animated {
        margin: 0 auto 20px;
    }

    .fireplace-features {
        justify-content: center;
    }

    .fireplace-main-img {
        height: 350px;
    }

    .fireplace-info h2 {
        font-size: 2rem;
    }

    .fireplace-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .fireplace-section-enhanced {
        padding: 50px 0;
    }

    .fireplace-main-img {
        height: 280px;
    }

    .fireplace-thumb {
        width: 65px;
        height: 50px;
    }

    .fireplace-features {
        gap: 15px;
    }

    .fire-feature i {
        font-size: 1.3rem;
    }

    .fire-feature span {
        font-size: 0.75rem;
    }

    .fireplace-info h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .fireplace-info p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .fireplace-gallery-thumbs {
        gap: 10px;
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--cream);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wood-dark);
    background: var(--parchment);
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--cream);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--gold);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.8), rgba(44, 24, 16, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
    transform: scale(0.5);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: sepia(0);
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item.hidden {
    display: none;
}

/* ========================================
   FELICITÀ SECTION - 3D CARDS
   ======================================== */
.felicita-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
    perspective: 1000px;
    position: relative;
}

.felicita-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.felicita-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.felicita-card {
    width: 450px;
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.felicita-card:hover .card-inner,
.felicita-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--gold);
}

.card-front {
    background: var(--cream);
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0) 0%,
        rgba(212, 175, 55, 0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.felicita-card:hover .card-shine,
.felicita-card.flipped .card-shine {
    transform: translateX(100%);
}

.card-back {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-back-content {
    text-align: center;
    padding: 40px;
    color: var(--cream);
}

.card-back-content i {
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 25px;
}

.card-back-content h3 {
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-back-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events-section {
    background: var(--parchment);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
}

.events-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.events-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--cream);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.events-video-btn i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-left: 5px;
}

.events-video-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

.events-video-btn:hover i {
    color: var(--wood-dark);
}

.events-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-type {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.event-type:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-icon i {
    font-size: 1.5rem;
    color: var(--gold-light);
}

.event-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--wood-dark);
}

.event-details p {
    color: var(--taupe);
    font-size: 0.95rem;
}

.events-info .btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card {
    background: var(--parchment);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-gray);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--warm-gray);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-details p {
    color: var(--wood-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
}

.contact-details a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gold);
}

.contact-form-wrapper {
    background: var(--parchment);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    background: var(--cream);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--antique-white) 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.google-logo {
    height: 24px;
    width: auto;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #FBBC05;
    font-size: 1.2rem;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(4, 106, 56, 0.08);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(4, 106, 56, 0.15);
    border-color: var(--gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.reviewer-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--wood-dark);
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FBBC05;
    font-size: 0.85rem;
}

.review-source {
    margin-left: auto;
    font-size: 1.5rem;
    color: #4285F4;
    opacity: 0.7;
}

.review-text {
    color: var(--wood-medium);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--taupe);
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-reviews {
    background: linear-gradient(135deg, #2E8B57, #1D6A45);
    color: #D4AF37 !important;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
}

.btn-reviews:hover {
    background: linear-gradient(135deg, #1D6A45, #2E8B57);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 139, 87, 0.5);
    color: #F4D03F !important;
}

.btn-reviews i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        gap: 10px;
    }

    .review-card {
        padding: 25px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--wood-dark), var(--espresso));
    color: var(--cream);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    transform: translateY(-3px);
}

/* Instagram brand colors */
.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    color: white;
}

.footer-social a[aria-label="Instagram"]:hover {
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

/* Facebook brand colors */
.footer-social a[aria-label="Facebook"] {
    background: #1877f2;
    border: none;
    color: white;
}

.footer-social a[aria-label="Facebook"]:hover {
    background: #166fe5;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

/* WhatsApp brand colors */
.footer-social a[aria-label="WhatsApp"] {
    background: #25D366;
    border: none;
    color: white;
}

.footer-social a[aria-label="WhatsApp"]:hover {
    background: #22c55e;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 10px;
    font-family: var(--font-script);
    font-size: 1.1rem !important;
    color: var(--gold) !important;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--cream);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--gold);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--cream);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    cursor: default;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2.5rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.video-modal-close:hover {
    color: var(--cream);
    transform: scale(1.1);
}

#modalVideo {
    width: 100%;
    border-radius: var(--radius-md);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-xl);
    display: block;
}

/* Hint to close */
.video-modal::after {
    content: 'Clicca fuori per chiudere';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    pointer-events: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-content,
    .events-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .price-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .price-text {
        order: 3;
        width: 100%;
    }

    .corner-ornament {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 70px 0;
    }

    /* Navigation Mobile */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--wood-dark), var(--espresso));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-normal);
    }

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

    .nav-link {
        color: var(--cream);
        font-size: 1.2rem;
        text-shadow: none;
    }

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

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

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

    /* Social Fixed */
    .social-fixed {
        right: 10px;
        gap: 8px;
    }

    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 28px;
    }

    .hero-frame {
        inset: 10px;
    }

    /* About */
    .about-img-secondary {
        right: 0;
        bottom: -30px;
        width: 150px;
        height: 150px;
    }

    .about-badge {
        width: 100px;
        height: 100px;
        top: -20px;
        right: 20px;
    }

    .about-badge .years {
        font-size: 2rem;
    }

    .about-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Parallax disable on mobile */
    .drone-parallax {
        background-attachment: scroll;
    }

    /* Menu */
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-category {
        padding: 25px;
    }

    .menu-price-banner {
        padding: 20px;
    }

    .price-amount .value {
        font-size: 3rem;
    }

    /* Felicità Cards */
    .felicita-cards {
        gap: 30px;
    }

    .felicita-card {
        width: 380px;
        height: 280px;
    }

    /* Events */
    .events-image img {
        height: 350px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-card {
        padding: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .gallery-tabs {
        gap: 10px;
    }

    .gallery-tab {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title-main {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

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

    .about-img-main img {
        height: 350px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-img {
        width: 100%;
        height: 150px;
    }

    .felicita-card {
        width: 100%;
        max-width: 400px;
        height: 260px;
    }

    .events-image img {
        height: 280px;
    }

    .event-type {
        padding: 15px;
    }

    .event-icon {
        width: 50px;
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .social-fixed,
    .navbar,
    .scroll-indicator,
    .floating-elements,
    .particles,
    .fireplace-section,
    .lightbox,
    .video-modal {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px;
    }
}

/* ========================================
   EXTRAORDINARY ANIMATIONS
   ======================================== */

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.custom-cursor.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
}

.cursor-dot.cursor-hover {
    transform: translate(-50%, -50%) scale(0);
}

/* Hide custom cursor on mobile/touch */
@media (hover: none) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    z-index: 10001;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--wood-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* Image Reveal Animation */
.image-reveal {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-reveal.image-revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Gallery Fade In Scale */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lightbox Animations */
@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lightboxZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes lightboxSlide {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Character Animation for Split Text */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    animation: charReveal 0.6s ease forwards;
}

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

/* Section Visibility Animation */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 20px 25px;
    background: var(--cream);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    animation: notificationIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--gold);
    max-width: 400px;
}

.notification.success {
    border-left-color: #28a745;
}

.notification.success i {
    color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.error i {
    color: #dc3545;
}

.notification i {
    font-size: 1.5rem;
}

.notification span {
    flex: 1;
    color: var(--wood-dark);
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--taupe);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: var(--transition-fast);
}

.notification-close:hover {
    color: var(--primary);
}

.notification-out {
    animation: notificationOut 0.3s ease forwards;
}

@keyframes notificationIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes notificationOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Form Focus Animation */
.form-group.focused label {
    color: var(--primary);
    transform: translateY(-2px);
}

.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* Hero Loaded State */
.hero.hero-loaded .hero-content {
    animation: heroContentReveal 1s ease forwards;
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth 3D Card Transforms */
.menu-item,
.event-type,
.gallery-item,
.wine-item {
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

/* Parallax Section Effects */
.section::before {
    transition: transform 0.3s ease-out;
    transform: translateY(var(--parallax-offset, 0));
}

/* Glow Effect on Gold Elements */
.gold-glow {
    animation: goldGlow 2s ease-in-out infinite alternate;
}

@keyframes goldGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

/* Floating Animation Enhancement */
.float-element {
    transition: transform 0.3s ease-out;
}

/* Magnetic Button Reset */
.btn,
.social-btn,
.nav-cta {
    transition: transform 0.2s ease-out, background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* Wine Glass Swirl Animation */
@keyframes wineSwirl {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.wine-item:hover i {
    animation: wineSwirl 0.5s ease-in-out;
}

/* Elegant Text Shadow for Headers */
.section-title {
    text-shadow: 2px 2px 4px rgba(62, 39, 35, 0.1);
}

/* Staggered Entrance Animation */
.events-info .event-type:nth-child(1) { animation-delay: 0.1s; }
.events-info .event-type:nth-child(2) { animation-delay: 0.2s; }
.events-info .event-type:nth-child(3) { animation-delay: 0.3s; }
.events-info .event-type:nth-child(4) { animation-delay: 0.4s; }
.events-info .event-type:nth-child(5) { animation-delay: 0.5s; }

/* Preloader */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded)::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded)::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid var(--parchment);
    border-top-color: var(--gold);
    border-radius: 50%;
    z-index: 100000;
    animation: preloaderSpin 1s linear infinite;
}

body.loaded::before,
body.loaded::after {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Mobile Adjustments for Animations */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }

    .notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }

    /* Reduce animation complexity on mobile */
    .reveal-element {
        transform: translateY(30px);
    }

    .menu-item,
    .event-type,
    .gallery-item,
    .wine-item {
        transform: none !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .custom-cursor,
    .cursor-dot,
    .scroll-progress {
        display: none;
    }
}
