/* CSS Standard Format - CLEANED & ORGANIZED */
/* Importazione Font Eleganti */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
/* ============================================================
   VARIABILI E RESET
   ============================================================ */
:root {
    --primary-color: #d8b46a;
    --secondary-color: #212529;
    --terzo-color: white;
    --bg-clear: #fbf9f5;
    --text-dark-main: #261f1d;
    --text-dark-muted: #6e6460;
    --accent-gold-dark: #b09164;
    --bg-color: #1a1615;
    --accent-color: #c5a880;
    --text-main: #f5f2eb;
    --text-muted: #a8a29e;
    --font-titles: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --nero:       #141414;
    --carbone:    #1E1E1C;
    --grigio:     #2B2B28;
    --oro:        #BF9A45;
    --oro-chiaro: #D4B06A;
    --crema:      #F0EAD9;
    --testo:      #A09880;
    --bianco:     #F7F3EC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fraunces';
}

/* ============================================================
   CLASSI ORDINATE ALFABETICAMENTE
   ============================================================ */

.bar-section {
    --warm-100: #fdf8f3;
    --warm-200: #f5ede0;
    --brown-800: #3d1f08;
    --gold: #c9913a;
    --text-mid: #5a3d25;

    font-family: 'DM Sans', sans-serif;
    background: var(--warm-200);
    padding: 5rem 0;
}

.bar-section .content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    max-width: 1200px;
    margin: 0 auto 5rem;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 8px 40px rgba(61, 31, 8, 0.10);
}

.bar-section .content-row.reverse { direction: rtl; }
.bar-section .content-row.reverse > * { direction: ltr; }

.bar-section .carousel-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
    width: 100%;
    height: 100%;
}
.bar-section .carousel-container:active { cursor: grabbing; }

.bar-section .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bar-section .carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    min-width: 100%;
    display: block;
}

.bar-section .text-container {
    background: var(--warm-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.bar-section .text-container::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(201, 145, 58, 0.15);
    pointer-events: none;
}

.bar-section .text-container::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(201, 145, 58, 0.10);
    pointer-events: none;
}

.bar-section .eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

.bar-section .divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.bar-section .text-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--brown-800);
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.bar-section .text-container p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-weight: 300;
    margin: 0 0 2rem;
    max-width: 36ch;
}

.bar-section .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
    width: fit-content;
}

.bar-section .text-link:hover { border-color: var(--gold); }

@media (max-width: 900px) {
    .bar-section .content-row {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 3rem;
    }
    .bar-section .content-row.reverse { direction: ltr; }
    .bar-section .carousel-container { height: 300px; }
    .bar-section .text-container { padding: 2.5rem 2rem; }
    .bar-section .text-container h2 { font-size: 2rem; }
    .bar-section .text-container p { max-width: 100%; }
}

@media (max-width: 480px) {
    .bar-section { padding: 3rem 0; }
    .bar-section .carousel-container { height: 240px; }
    .bar-section .text-container h2 { font-size: 1.75rem; }
}

.bar-tagline {
    font-style: italic;
    color: var(--primary-color);
}

.btn-menu-hero {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 28px;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    font-size: 0.85rem;
}

.btn-menu-hero:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(216, 180, 106, 0.4);
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    position: relative;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.carousel-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #8d6e63;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-logo img {
    width: 120%;
    height: auto;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

/* ============================================================
   SEZIONE EVENTI
   ============================================================ */

.events-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-clear) 0%, #fefdfb 100%);
    color: var(--text-dark-main);
}

.events-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.events-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-titles);
}

.events-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.event-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 4px solid var(--primary-color);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(216, 180, 106, 0.15);
}

.event-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 12;
    overflow: hidden;
    background-color: #f0f0f0;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-poster img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold-dark) 100%);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(216, 180, 106, 0.35);
    border: 2px solid white;
}

.event-day {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
}

.event-month {
    font-size: 0.7rem;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.event-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.event-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    font-family: var(--font-titles);
    font-weight: 600;
}

.event-info {
    margin-bottom: 15px;
    flex: 1;
}

.event-time {
    font-size: 0.9rem;
    color: var(--text-dark-main);
    margin: 0 0 7px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.event-time i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.event-detail {
    font-size: 0.85rem;
    color: var(--text-dark-muted);
    margin: 0;
    line-height: 1.5;
}

.btn-event {
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    width: fit-content;
    font-family: var(--font-body);
}

.btn-event:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(216, 180, 106, 0.4);
}

/* ============================================================
   CAROSELLO EVENTI
   ============================================================ */

.events-carousel-wrapper {
    position: relative;
    margin-top: 40px;
}

.events-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.event-carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    display: flex;
}

.event-carousel-item.active {
    opacity: 1;
    z-index: 10;
}

.event-carousel-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.event-carousel-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-carousel-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.event-carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    color: white;
    z-index: 20;
}

.event-date-badge-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold-dark) 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(216, 180, 106, 0.4);
    font-weight: bold;
    border: 3px solid white;
}

.event-carousel-info .event-day {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}

.event-carousel-info .event-month {
    font-size: 0.75rem;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.event-carousel-title {
    font-size: 2.8rem;
    font-family: var(--font-titles);
    margin: 0 0 15px 0;
    font-weight: 600;
    color: white;
}

.event-carousel-time {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.event-carousel-time i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.event-carousel-detail {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
    max-width: 500px;
    opacity: 0.95;
}

.btn-event-carousel {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-event-carousel:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 180, 106, 0.35);
}

/* Controlli Carosello */
.events-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(216, 180, 106, 0.3);
    font-size: 1.3rem;
}

.events-carousel-btn:hover {
    background: rgba(216, 180, 106, 0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.events-carousel-wrapper:hover .events-carousel-btn {
    color: rgba(216, 180, 106, 0.6);
}

.events-carousel-prev {
    left: 20px;
}

.events-carousel-next {
    right: 20px;
}

/* Indicatori */
.events-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.footer-bar {
    color: white;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #666;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li, .footer-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 480px;
    background-image: url("../img/barbeppe.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    text-align: center;
    padding: 0 1rem;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.hero__content button {
    background-color: var(--primary-color);
    border-color: var(--terzo-color);
    border-radius: 5px;
    border-width: 3px;
    color: var(--terzo-color);
    padding: 10px 5px;
}

.hero__content button:hover {
    background-color: var(--terzo-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero__content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 0 0.5rem 0;
}

.hero__content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin: 0;
    opacity: 0.95;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.menu-hero {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.4s ease;
}

.menu-hero:hover {
    flex: 1.2;
}

.menu-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    color: white;
}

.menu-hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 280px;
    opacity: 0.95;
    line-height: 1.5;
}

.menu-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.menu-hero:hover .menu-hero-image {
    transform: scale(1.05);
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 21, 0.60) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(0px);
}

.menu-hero:hover .menu-hero-overlay {
    background: linear-gradient(135deg, rgba(26, 22, 21, 0.45) 0%, rgba(0, 0, 0, 0.30) 100%);
    backdrop-filter: blur(3px);
}

.menu-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.menu-hero:hover .menu-hero-title {
    color: white;
}

.menu-heroes-container {
    display: flex;
    gap: 0;
    width: 100%;
    min-height: 100vh;
}

.menu-selector {
    width: 100%;
    background-color: var(--bg-clear);
    padding: 0;
}

.photo-text-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.5rem;
}

.photo-text-item {
    background: var(--secondary-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.photo-text-item__content {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.photo-text-item__content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 0;
}

.photo-text-item__content p {
    color: var(--terzo-color);
    line-height: 1.8;
    margin: 0;
}

.photo-text-item__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.photo-text-section {
    padding: 80px 5% 40px;
    background-color: #faf7f1;
}

.photo-text-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.photo-text-section__container h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3vw, 2.75rem);
    text-align: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.text-container {
    flex: 1;
    text-align: center;
}

.text-container h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

.top-bar {
    background-color: #d8b46a;
    color: #d8b46a;
    padding: 10px 5%;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
    font-size: 14px;
    position: relative;
    z-index: 101;
}

.top-bar a {
    font-size: 20px;
    color: white;
    text-decoration: none;
}

/* ============================================================
   MEDIA QUERIES RAGGRUPPATE
   ============================================================ */

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .navbar {
        position: relative;
    }

    .navbar-toggler {
        border: none;
        position: relative;
    }

    .navbar-toggler .navbar-toggler-icon {
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        display: inline-block;
    }

    .navbar-toggler .toggler-close {
        display: none;
        font-size: 1.8rem;
        line-height: 1;
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-180deg) scale(0);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        display: inline-block;
        opacity: 0;
        transform: rotate(90deg) scale(0);
    }

    .navbar-toggler:not(.collapsed) .toggler-close {
        display: inline-block;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    .navbar .navbar-nav {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding-top: 10rem;
    }

    .navbar .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .navbar-collapse.collapse.show {
        max-height: 100vh;
        overflow-y: auto;
    }

    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    .footer-text {
        margin-top: 2rem;
    }

    .footer-text p {
        font-family: 'Great Vibes', cursive;
        color: var(--primary-color);
        font-size: 2.5rem;
        font-weight: 400;
        margin: 0;
        padding: 3rem 0;
        line-height: 1.6;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .circular-logo {
        margin: 0 auto 15px;
    }

    .footer-section {
        margin-bottom: 10px;
    }

    .photo-text-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .menu-heroes-container {
        height: auto;
        min-height: 100vh;
    }

    .menu-hero-title {
        font-size: 1.8rem;
    }

    .menu-hero-description {
        font-size: 0.9rem;
    }

    .menu-hero-content {
        padding: 40px 30px;
    }

      .content-row,
  .content-row.reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
    flex: none;
    border-radius: 0px;
  }

  .carousel-track {
    width: 100%;
    height: 100%;
  }

  .carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .events-section {
    padding: 60px 20px;
  }

  .events-header {
    margin-bottom: 45px;
  }

  .events-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
  }

  .events-subtitle {
    font-size: 1rem;
  }

  .events-carousel {
    height: 500px;
  }

  .event-carousel-info {
    padding: 40px 30px;
  }

  .event-carousel-title {
    font-size: 2.2rem;
  }

  .event-carousel-time {
    font-size: 1rem;
  }

  .event-carousel-detail {
    font-size: 0.95rem;
    max-width: 450px;
    margin-bottom: 20px;
  }

  .btn-event-carousel {
    padding: 10px 26px;
    font-size: 0.85rem;
  }

  .events-carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .events-carousel-prev {
    left: 15px;
  }

  .events-carousel-next {
    right: 15px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 28px;
  }
}

@media (max-width: 768px) {
  .events-carousel {
    height: 400px;
  }

  .event-carousel-info {
    padding: 30px 25px;
  }

  .event-carousel-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .event-carousel-time {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .event-carousel-detail {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .event-date-badge-carousel {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .event-carousel-info .event-day {
    font-size: 1.6rem;
  }

  .btn-event-carousel {
    padding: 9px 22px;
    font-size: 0.8rem;
  }

  .events-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .events-carousel-prev {
    left: 10px;
  }

  .events-carousel-next {
    right: 10px;
  }

  .indicator {
    width: 8px;
    height: 8px;
    gap: 8px;
  }

  .indicator.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .events-carousel {
    height: 300px;
  }

  .event-carousel-info {
    padding: 25px 20px;
  }

  .event-carousel-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .event-carousel-time {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .event-carousel-detail {
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .event-date-badge-carousel {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .event-carousel-info .event-day {
    font-size: 1.3rem;
  }

  .event-carousel-info .event-month {
    font-size: 0.65rem;
  }

  .btn-event-carousel {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .events-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .events-carousel-prev {
    left: 8px;
  }

  .events-carousel-next {
    right: 8px;
  }

  .events-carousel-indicators {
    bottom: 12px;
  }

  .indicator {
    width: 7px;
    height: 7px;
    gap: 6px;
  }

  .indicator.active {
    width: 20px;
  }
}

@media (max-width: 1024px) {
    .menu-hero-content {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .menu-hero-content {
        padding: 25px 15px;
    }
    .content-row,
    .content-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

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

    .photo-text-grid {
        grid-template-columns: 1fr;
    }

    .menu-heroes-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        gap: 0;
    }

    .menu-hero {
        height: 100vh;
        min-height: 100vh;
        flex: none;
    }

    .menu-hero-image {
        width: 100%;
        height: 100%;
        background-attachment: scroll;
    }

    .menu-hero-overlay {
        backdrop-filter: blur(4px);
        background: linear-gradient(135deg, rgba(26, 22, 21, 0.70) 0%, rgba(0, 0, 0, 0.50) 100%);
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
    }

    .menu-hero-title {
        font-size: 1.6rem;
    }

    .menu-hero-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .btn-menu-hero {
        padding: 8px 22px;
        font-size: 0.8rem;
    }
}

@media (max-width: 700px) {
    .photo-text-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 420px;
    }

    .hero__content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        height: 250px;
    }

    .menu-hero-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .menu-hero-description {
        font-size: 0.75rem;
        margin-bottom: 12px;
        max-width: 220px;
    }

    .btn-menu-hero {
        padding: 6px 18px;
        font-size: 0.75rem;
    }
}

.s-head {
      padding: 5rem 5vw 3.5rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(191,154,69,.18);
    }
    .s-head__left { max-width: 560px; }
    .s-head__eyebrow {
      font-size: .68rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--oro);
      margin-bottom: 1rem;
    }
    .s-head__title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      line-height: 1.04;
      color: var(--bianco);
    }
    .s-head__title em {
      font-style: italic;
      color: var(--oro-chiaro);
    }
    .s-head__sub {
      margin-top: 1.1rem;
      font-size: .88rem;
      font-weight: 300;
      line-height: 1.75;
      max-width: 420px;
    }

    /* filtri */
    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
      align-items: center;
    }
    .f-btn {
      background: transparent;
      border: 1px solid rgba(191,154,69,.3);
      color: var(--testo);
      font-family: 'DM Sans', sans-serif;
      font-size: .7rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .4rem 1rem;
      cursor: pointer;
      border-radius: 1px;
      transition: all .2s;
      white-space: nowrap;
    }
    .f-btn:hover { border-color: var(--oro); color: var(--oro); }
    .f-btn.on {
      background: var(--oro);
      border-color: var(--oro);
      color: var(--nero);
      font-weight: 500;
    }

    /* ──────────────────────────────
       EVENTI GRID
    ────────────────────────────── */
    .eventi {
      padding: 2rem 5vw 3.5rem;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 0.8rem;
      background-color:#f5ede0;
    }

    /* card base */
    .ev {
      background: var(--terzo-color);
      border: 2px solid var(--primary-color);
      border-radius: 2px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .ev:hover {
      border-color: var(--primary-color);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(216, 180, 106, 0.15);
    }

    /* layout varianti */
    .ev--hero  { grid-column: span 6; flex-direction: row; }
    .ev--side  { grid-column: span 3; flex-direction: column; }
    .ev--third { grid-column: span 3; }

    @media (max-width: 1024px) {
      .ev--hero  { grid-column: span 12; flex-direction: column; }
      .ev--side  { grid-column: span 6; }
      .ev--third { grid-column: span 6; }
    }
    @media (max-width: 640px) {
      .ev--hero,
      .ev--side,
      .ev--third { grid-column: span 12; }
    }

    /* immagine */
    .ev__img {
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      background: #f5f2eb;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ev--hero .ev__img { width: 50%; }
    .ev--side .ev__img { width: 100%; min-height: 320px; }
    .ev--third .ev__img { width: 100%; height: 240px; }
    @media (max-width: 1024px) {
      .ev--hero .ev__img { width: 100%; min-height: 240px; }
      .ev--side .ev__img { width: 100%; min-height: 300px; }
    }
    .ev__img img {
      width: 100%;
      height: 100%;
      object-fit: scale-down;
      display: block;
      filter: brightness(1) saturate(1);
      transition: transform .5s ease, filter .3s;
    }
    .ev:hover .ev__img img { transform: scale(1.04); filter: brightness(1.05) saturate(1.1); }

    /* timbro data */
    .ev__stamp {
      position: absolute;
      top: 1.1rem;
      left: 1.1rem;
      background: var(--primary-color);
      color: var(--terzo-color);
      font-family: 'DM Sans', sans-serif;
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .35rem .65rem .3rem;
      border-radius: 1px;
      line-height: 1;
      text-align: center;
    }
    .ev__stamp b {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1;
      margin-bottom: .15rem;
    }

    .ev__tag {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      background: rgba(38, 31, 29, 0.85);
      backdrop-filter: blur(4px);
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      font-size: .6rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: .22rem .6rem;
      border-radius: 1px;
    }

    /* corpo */
    .ev__body {
      padding: 1rem 1.1rem 1rem;
      display: flex;
      flex-direction: column;
      flex: 1;
      color: var(--text-dark-main);
    }
    .ev__orario {
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: .65rem;
    }
    .ev__title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.text-dark-main;
      color: var(--primary-color);
      line-height: 1.2;
      margin-bottom: .7rem;
    }
    .ev--hero .ev__title { font-size: 1.75rem; }
    .ev__desc {
      font-size: .84rem;
      font-weight: 300;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.3rem;
      color: var(--text-dark-muted);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* footer card */
    .ev__foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: .9rem;
    }
    .ev__prezzo {
      font-size: .78rem;
      color: var(--text-dark-main);
    }
    .ev__prezzo strong {
      color: var(--primary-color);
      font-size: 1rem;
      font-weight: 500;
    }
    .ev__cta {
      text-decoration: none;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      font-family: 'DM Sans', sans-serif;
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .45rem 1.1rem;
      border-radius: 1px;
      transition: all .2s;
      background: transparent;
    }
    .ev__cta:hover {
      background: var(--primary-color);
      color: var(--terzo-color-oro);
      color: var(--nero);
    }

    /* ──────────────────────────────
       DIVIDER LINE DECORATIVA
    ────────────────────────────── */
    .divider {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 0 5vw;
      margin-bottom: 3rem;
    }
    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(191,154,69,.15);
    }
    .divider span {
      font-size: .6rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(191,154,69,.45);
      white-space: nowrap;
    }

    /* ──────────────────────────────
       NEWSLETTER
    ────────────────────────────── */
    .nl {
      background: var(--grigio);
      padding: 4rem 5vw;
      text-align: center;
      border-top: 1px solid rgba(191,154,69,.12);
    }
    .nl__title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 300;
      color: var(--bianco);
      margin-bottom: .5rem;
    }
    .nl__title em { font-style: italic; color: var(--oro-chiaro); }
    .nl__sub {
      font-size: .86rem;
      font-weight: 300;
      margin-bottom: 2rem;
    }
    .nl__form {
      display: flex;
      gap: .5rem;
      max-width: 400px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nl__form input {
      flex: 1;
      min-width: 190px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.12);
      color: var(--bianco);
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem;
      padding: .7rem 1rem;
      border-radius: 1px;
      outline: none;
      transition: border-color .2s;
    }
    .nl__form input::placeholder { color: rgba(255,255,255,.28); }
    .nl__form input:focus { border-color: var(--oro); }
    .nl__form button {
      background: var(--oro);
      border: none;
      color: var(--nero);
      font-family: 'DM Sans', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .7rem 1.5rem;
      border-radius: 1px;
      cursor: pointer;
      transition: background .2s;
    }
    .nl__form button:hover { background: var(--oro-chiaro); }

    @media (prefers-reduced-motion: reduce) {
      .ev, .ev__img img { transition: none !important; transform: none !important; }
    }