/* ================================
   PIZZERIA ADELÌ - DESIGN NERO/ORO ELEGANTE
   Palette: Nero profondo + Oro caldo + Accenti
   ================================ */

/* ================================
   VARIABLES & RESET
   ================================ */
:root {
    /* Palette Brand Adelì - Nero/Oro Elegante */
    --black-deep: #0D0D0D;
    --black-soft: #1A1A1A;
    --black-card: #222222;
    --gold-primary: #C9A962;
    --gold-light: #E0C98A;
    --gold-dark: #A68B4B;
    --gold-glow: rgba(201, 169, 98, 0.3);
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --gray-light: #CCCCCC;
    --gray-medium: #888888;
    --gray-dark: #555555;
    --red-accent: #D4443C;
    --green-accent: #4CAF50;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 20px;
    
    /* Shadows */
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.25);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--black-deep);
}

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

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

ul {
    list-style: none;
}

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

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

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================
   BUTTONS - ELEGANTI
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.45);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

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

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ================================
   HEADER / NAVIGATION - ELEGANTE
   ================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
    background: transparent;
}

header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 18px 0;
    transition: padding var(--transition-medium);
}

header.scrolled .navbar {
    padding: 12px 0;
}

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

.logo img {
    height: 55px;
    transition: height var(--transition-medium);
}

header.scrolled .logo img {
    height: 45px;
}

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

.nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-medium);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--gold-primary);
}

.nav-cta .btn {
    padding: 12px 28px;
    font-size: 13px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 22px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
}

/* ================================
   HERO SECTION - IMPATTO VISIVO
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black-deep);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(13, 13, 13, 0.5) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 280px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 16px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.hero-subtitle {
    font-size: 22px;
    color: var(--gray-light);
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-text {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 25px 30px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
}

.hero-info-item i {
    color: var(--gold-primary);
    font-size: 20px;
}

.hero-info-item a {
    color: var(--gold-light);
}

.hero-info-item a:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 28px;
    margin-top: 8px;
}

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

/* ================================
   CHI SIAMO - ESPERIENZA PIZZAIOLO
   ================================ */
.chi-siamo {
    padding: var(--section-padding);
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.chi-siamo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23C9A962" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.chi-siamo-text .intro-text {
    font-size: 22px;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.chi-siamo-text p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--black-card);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all var(--transition-medium);
}

.stat-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Chef Signature */
.chef-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.chef-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
}

.chef-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-info h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
}

.chef-info span {
    font-size: 14px;
    color: var(--gold-primary);
}

/* Image Gallery */
.chi-siamo-images {
    position: relative;
}

.image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 2px solid rgba(201, 169, 98, 0.3);
}

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

.image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.image-badge .badge-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.image-badge .badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ================================
   MENU SECTION - ELEGANTE NERO/ORO
   ================================ */
.menu {
    padding: var(--section-padding);
    background: var(--black-deep);
}

.menu-intro {
    text-align: center;
    margin-bottom: 50px;
}

.menu-intro p {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Menu Navigation Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.menu-tab {
    padding: 14px 28px;
    background: var(--black-card);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.menu-tab:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    border-color: var(--gold-primary);
}

/* Menu Category */
.menu-category {
    margin-bottom: 60px;
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 169, 98, 0.3);
}

.menu-category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-deep);
    font-size: 22px;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
}

.menu-category-title span {
    color: var(--gold-primary);
    font-size: 18px;
    font-weight: 400;
    margin-left: 10px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Menu Item Card */
.menu-item {
    background: var(--black-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.menu-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
    white-space: nowrap;
}

.menu-item-description {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Menu Item Tags */
.menu-item-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-special {
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.tag-spicy {
    background: rgba(212, 68, 60, 0.2);
    color: var(--red-accent);
    border: 1px solid var(--red-accent);
}

.tag-vegetarian {
    background: rgba(76, 175, 80, 0.2);
    color: var(--green-accent);
    border: 1px solid var(--green-accent);
}

/* Featured Item */
.menu-item.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, var(--black-card) 0%, rgba(201, 169, 98, 0.1) 100%);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    padding: 6px 14px;
    border-radius: 0 0 10px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subcategory */
.menu-subcategory {
    margin-bottom: 40px;
}

.menu-subcategory-title {
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Note */
.menu-note {
    text-align: center;
    padding: 25px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    border: 1px dashed var(--gold-primary);
    margin-top: 40px;
}

.menu-note p {
    color: var(--gold-light);
    font-size: 15px;
    margin-bottom: 5px;
}

.menu-note .highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Menu CTA */
.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* ================================
   IL LOCALE / GALLERY
   ================================ */
.locale {
    padding: var(--section-padding);
    background: var(--black-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* Locale Features */
.locale-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--black-card);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all var(--transition-medium);
}

.feature-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.feature-item span {
    display: block;
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 500;
}

/* ================================
   RECENSIONI
   ================================ */
.recensioni {
    padding: var(--section-padding);
    background: var(--black-deep);
}

.recensioni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.recensione-card {
    background: var(--black-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all var(--transition-medium);
    position: relative;
}

.recensione-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold-primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.recensione-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.recensione-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.recensione-stars i {
    color: var(--gold-primary);
    font-size: 18px;
}

.recensione-text {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.recensione-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-deep);
    font-weight: 700;
    font-size: 16px;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-medium);
}

.google-badge {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-medium);
}

.google-badge i {
    color: #4285F4;
}

/* Recensioni CTA */
.recensioni-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.recensioni-cta p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 20px;
}

/* ================================
   CONTATTI
   ================================ */
.contatti {
    padding: var(--section-padding);
    background: var(--black-soft);
}

.contatti-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contatti-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--black-card);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all var(--transition-medium);
}

.info-card:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-deep);
    font-size: 22px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.info-content a {
    color: var(--gold-light);
    font-weight: 500;
}

.info-content a:hover {
    color: var(--gold-primary);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contatti-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 2px solid rgba(201, 169, 98, 0.2);
}

.contatti-map iframe {
    width: 100%;
    height: 400px;
    display: block;
    filter: grayscale(50%) contrast(1.1);
}

/* ================================
   FOOTER - ELEGANTE
   ================================ */
.footer {
    background: var(--black-deep);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

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

.footer-brand .footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--black-card);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 18px;
    transition: all var(--transition-medium);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li i {
    color: var(--gold-primary);
    font-size: 14px;
    width: 20px;
}

.footer-column ul li a,
.footer-column ul li span {
    font-size: 15px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-medium);
}

.footer-bottom a {
    color: var(--gold-primary);
}

/* ================================
   FLOATING ELEMENTS
   ================================ */
.floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    border-radius: 50%;
    font-size: 26px;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-medium);
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(201, 169, 98, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(201, 169, 98, 0.7);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--black-card);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 998;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
    transform: translateY(-3px);
}

/* ================================
   POP-UP - ELEGANTE NERO/ORO
   ================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.4s ease;
    backdrop-filter: blur(10px);
}

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background: linear-gradient(180deg, var(--black-card) 0%, var(--black-soft) 100%);
    padding: 35px 30px 30px;
    border-radius: 24px;
    max-width: 380px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 98, 0.3);
    animation: slideUp 0.5s ease;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: 3px solid var(--black-deep);
    font-size: 20px;
    color: var(--black-deep);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    box-shadow: var(--shadow-gold);
    font-weight: bold;
}

.popup-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.popup-logo {
    margin-bottom: 20px;
}

.popup-logo img {
    max-width: 150px;
    margin: 0 auto;
}

.popup-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.popup-content p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.popup-highlight {
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* ================================
   MOBILE MENU OVERLAY
   ================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 998;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================================
   RESPONSIVE - TABLET (1024px)
   ================================ */
@media (max-width: 1024px) {
    .chi-siamo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chi-siamo-images {
        order: -1;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .recensioni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locale-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   RESPONSIVE - MOBILE (768px)
   OTTIMIZZAZIONE COMPLETA
   ================================ */
@media (max-width: 768px) {
    /* === VARIABILI MOBILE === */
    :root {
        --section-padding: 60px 0;
        --container-padding: 16px;
    }
    
    /* === CONTAINER === */
    .container {
        padding: 0 16px;
        width: 100%;
    }
    
    /* === TYPOGRAPHY MOBILE === */
    body {
        font-size: 16px;
        line-height: 1.7;
        -webkit-text-size-adjust: 100%;
    }
    
    /* === HEADER MOBILE - SEMPRE VISIBILE === */
    header {
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-wrapper {
        min-height: 56px;
    }
    
    .logo img {
        height: 42px;
    }
    
    /* === HAMBURGER MENU - GRANDE E VISIBILE === */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        font-size: 22px;
        background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
        color: var(--black-deep);
        border: none;
        border-radius: 14px;
        box-shadow: var(--shadow-gold);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.92);
    }
    
    /* === NAV MENU SLIDE === */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 88%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--black-soft) 0%, var(--black-deep) 100%);
        flex-direction: column;
        padding: 100px 20px 40px;
        box-shadow: 8px 0 50px rgba(0, 0, 0, 0.7);
        transition: left 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        overflow-y: auto;
        z-index: 1001;
        gap: 10px;
        border-right: 1px solid rgba(201, 169, 98, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 20px;
        background: var(--black-card);
        border-radius: 14px;
        border: 1px solid rgba(201, 169, 98, 0.2);
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        min-height: 58px;
        transition: all 0.2s ease;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li a:active {
        transform: scale(0.97);
        background: var(--black-soft);
    }
    
    .nav-menu li.nav-cta {
        margin-top: 10px;
    }
    
    .nav-menu li.nav-cta a {
        background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
        color: var(--black-deep);
        font-weight: 700;
        font-size: 18px;
        min-height: 62px;
        box-shadow: var(--shadow-gold);
    }
    
    /* === HERO MOBILE === */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 30px 16px;
    }
    
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .hero-logo img {
        max-width: 200px;
    }
    
    .hero-tagline {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* === HERO BUTTONS - GRANDI E TOUCH === */
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 16px;
        border-radius: 14px;
        justify-content: center;
        min-height: 60px;
        font-weight: 700;
    }
    
    .hero-buttons .btn i {
        font-size: 20px;
    }
    
    /* === HERO INFO === */
    .hero-info {
        flex-direction: column;
        gap: 14px;
        padding: 20px 16px;
        border-radius: 16px;
        margin: 0;
    }
    
    .hero-info-item {
        font-size: 14px;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-info-item i {
        font-size: 18px;
        min-width: 24px;
    }
    
    .hero-scroll {
        bottom: 20px;
    }
    
    .hero-scroll span {
        font-size: 11px;
    }
    
    .hero-scroll i {
        font-size: 22px;
    }
    
    /* === SECTION HEADERS MOBILE === */
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .section-tag {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 5px;
    }
    
    /* === CHI SIAMO MOBILE === */
    .chi-siamo {
        padding: 60px 0;
    }
    
    .chi-siamo-content {
        gap: 35px;
    }
    
    .chi-siamo-text .intro-text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .chi-siamo-text p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    /* === EXPERIENCE STATS === */
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 30px 0;
    }
    
    .stat-item {
        padding: 18px 8px;
        border-radius: 14px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    /* === CHEF SIGNATURE === */
    .chef-signature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 25px;
    }
    
    .chef-avatar {
        width: 80px;
        height: 80px;
    }
    
    .chef-info h4 {
        font-size: 18px;
    }
    
    /* === CHI SIAMO IMAGES === */
    .image-main img {
        height: 280px;
    }
    
    .image-badge {
        bottom: -15px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .image-badge .badge-number {
        font-size: 28px;
    }
    
    .image-badge .badge-text {
        font-size: 11px;
    }
    
    /* === MENU SECTION MOBILE === */
    .menu {
        padding: 60px 0;
    }
    
    .menu-intro p {
        font-size: 15px;
    }
    
    /* === MENU TABS - SCROLLABILI === */
    .menu-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding: 0 16px 15px;
        margin-bottom: 35px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .menu-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .menu-tab {
        flex-shrink: 0;
        padding: 14px 22px;
        font-size: 13px;
        border-radius: 30px;
        min-height: 48px;
        white-space: nowrap;
    }
    
    /* === MENU CATEGORY === */
    .menu-category {
        margin-bottom: 45px;
    }
    
    .menu-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .menu-category-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .menu-category-title {
        font-size: 24px;
    }
    
    .menu-category-title span {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    /* === MENU GRID === */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    /* === MENU ITEM CARD === */
    .menu-item {
        padding: 20px 18px;
        border-radius: 16px;
    }
    
    .menu-item.featured {
        padding: 24px 18px;
    }
    
    .featured-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: 0;
        right: 14px;
        border-radius: 0 0 8px 8px;
    }
    
    .menu-item-header {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .menu-item-name {
        font-size: 17px;
        flex: 1;
        min-width: 60%;
    }
    
    .menu-item-price {
        font-size: 20px;
    }
    
    .menu-item-description {
        font-size: 14px;
        line-height: 1.6;
        color: var(--gray-medium);
    }
    
    .menu-item-tags {
        margin-top: 12px;
        gap: 6px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    /* === MENU NOTE === */
    .menu-note {
        padding: 20px 16px;
        margin-top: 30px;
    }
    
    .menu-note p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .menu-note p:last-child {
        margin-bottom: 0;
    }
    
    /* === MENU CTA === */
    .menu-cta {
        margin-top: 35px;
    }
    
    .menu-cta .btn {
        width: 100%;
        max-width: 320px;
    }
    
    /* === LOCALE / GALLERY === */
    .locale {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        border-radius: 12px;
        aspect-ratio: 1;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-overlay span {
        font-size: 13px;
    }
    
    /* === LOCALE FEATURES === */
    .locale-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 35px;
    }
    
    .feature-item {
        padding: 18px 14px;
        border-radius: 14px;
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 26px;
        margin-bottom: 0;
    }
    
    .feature-item span {
        font-size: 12px;
    }
    
    /* === RECENSIONI === */
    .recensioni {
        padding: 60px 0;
    }
    
    .recensioni-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .recensione-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
    
    .recensione-card::before {
        font-size: 60px;
        top: 5px;
        left: 15px;
    }
    
    .recensione-stars {
        margin-bottom: 16px;
    }
    
    .recensione-stars i {
        font-size: 16px;
    }
    
    .recensione-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .recensione-author {
        gap: 12px;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    
    .author-info strong {
        font-size: 14px;
    }
    
    .author-info span {
        font-size: 12px;
    }
    
    .google-badge {
        margin-top: 12px;
        font-size: 11px;
    }
    
    /* === RECENSIONI CTA === */
    .recensioni-cta {
        padding: 25px 20px;
        margin-top: 35px;
    }
    
    .recensioni-cta p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .recensioni-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* === CONTATTI === */
    .contatti {
        padding: 60px 0;
    }
    
    .contatti-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contatti-info {
        gap: 14px;
    }
    
    .info-card {
        padding: 22px 18px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-radius: 16px;
        gap: 12px;
    }
    
    .info-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 14px;
    }
    
    .info-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .info-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .info-content a {
        font-size: 17px;
        font-weight: 600;
    }
    
    /* === CTA BUTTONS === */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 15px;
        min-height: 58px;
    }
    
    /* === MAPPA === */
    .contatti-map {
        border-radius: 16px;
    }
    
    .contatti-map iframe {
        height: 260px;
        border-radius: 16px;
    }
    
    /* === FOOTER === */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-tagline {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social a {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .footer-column ul {
        gap: 12px;
    }
    
    .footer-column ul li {
        justify-content: center;
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 25px;
        margin-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    /* === FLOATING ELEMENTS === */
    .floating-cta {
        bottom: 20px;
        right: 16px;
    }
    
    .floating-btn {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 16px;
    }
    
    .scroll-top-btn {
        bottom: 92px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    /* === POPUP MOBILE === */
    .popup-overlay {
        padding: 16px;
    }
    
    .popup-content {
        max-width: 340px;
        width: 95%;
        padding: 30px 22px 25px;
        border-radius: 20px;
    }
    
    .popup-close {
        width: 52px;
        height: 52px;
        font-size: 22px;
        top: -14px;
        right: -14px;
    }
    
    .popup-logo {
        margin-bottom: 18px;
    }
    
    .popup-logo img {
        max-width: 130px;
    }
    
    .popup-content h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .popup-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .popup-highlight {
        font-size: 15px;
        margin: 15px 0 22px;
    }
    
    .popup-buttons {
        gap: 12px;
    }
    
    .popup-buttons .btn {
        padding: 16px 22px;
        font-size: 14px;
        border-radius: 12px;
        min-height: 54px;
    }
}

/* ================================
   RESPONSIVE - MOBILE SMALL (480px)
   ================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    
    /* Hero Small */
    .hero-logo img {
        max-width: 170px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    /* Section Titles Small */
    .section-title {
        font-size: 26px;
    }
    
    .section-tag {
        font-size: 11px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Stats Small - Horizontal Layout */
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 16px 20px;
    }
    
    .stat-number {
        font-size: 32px;
        margin-bottom: 0;
    }
    
    .stat-label {
        text-align: left;
        font-size: 12px;
    }
    
    /* Menu Small */
    .menu-tabs {
        flex-direction: column;
        padding: 0 14px;
        gap: 8px;
    }
    
    .menu-tab {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .menu-category-title {
        font-size: 22px;
    }
    
    .menu-item-name {
        font-size: 16px;
    }
    
    .menu-item-price {
        font-size: 18px;
    }
    
    .menu-item-description {
        font-size: 13px;
    }
    
    /* Gallery Small */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    /* Features Small */
    .locale-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .feature-item i {
        font-size: 24px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    /* Popup Small */
    .popup-content {
        max-width: 300px;
        padding: 25px 18px 22px;
    }
    
    .popup-content h2 {
        font-size: 18px;
    }
    
    .popup-content p {
        font-size: 13px;
    }
    
    .popup-buttons .btn {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    /* Footer Small */
    .footer-logo img {
        max-width: 130px;
    }
}

/* ================================
   RESPONSIVE - ULTRA SMALL (360px)
   ================================ */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .menu-category-title {
        font-size: 20px;
    }
    
    .menu-item-name {
        font-size: 15px;
    }
    
    .menu-item-price {
        font-size: 17px;
    }
    
    .popup-content {
        max-width: 280px;
        padding: 22px 15px 20px;
    }
    
    .popup-close {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* ================================
   LANDSCAPE MOBILE
   ================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 180px;
    }
    
    .hero-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .popup-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ================================
   TOUCH OPTIMIZATION
   ================================ */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn,
    .nav-menu li a,
    .menu-tab,
    .menu-item,
    .info-card,
    .feature-item,
    .gallery-item {
        -webkit-tap-highlight-color: rgba(201, 169, 98, 0.2);
        touch-action: manipulation;
    }
    
    /* Remove hover effects on touch */
    .menu-item:hover,
    .recensione-card:hover,
    .info-card:hover,
    .feature-item:hover {
        transform: none;
    }
    
    /* Active states for immediate feedback */
    .btn:active {
        transform: scale(0.96);
        opacity: 0.9;
    }
    
    .menu-item:active,
    .recensione-card:active,
    .info-card:active {
        transform: scale(0.98);
    }
    
    .nav-menu li a:active {
        transform: scale(0.97);
    }
    
    /* Larger close button for touch */
    .popup-close {
        min-width: 48px;
        min-height: 48px;
    }
}

/* ================================
   SAFE AREA - iPhone Notch
   ================================ */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .floating-cta {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(18px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* ================================
   CAFFÈ OFFERTO - STILI SPECIALI
   ================================ */

/* Coffee Banner in Hero */
.coffee-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    padding: 14px 28px;
    margin-bottom: 30px;
    animation: coffeeGlow 2s ease-in-out infinite;
}

.coffee-banner i {
    font-size: 24px;
    color: var(--gold-primary);
}

.coffee-banner span {
    font-size: 15px;
    color: var(--white);
}

.coffee-banner strong {
    color: var(--gold-light);
}

@keyframes coffeeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(201, 169, 98, 0.5);
    }
}

/* Coffee Section */
.coffee-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
}

.coffee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
}

.coffee-icon {
    width: 80px;
    height: 80px;
    background: var(--black-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.coffee-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--black-deep);
    margin-bottom: 10px;
}

.coffee-text p {
    font-size: 18px;
    color: var(--black-soft);
    max-width: 500px;
}

.coffee-text strong {
    color: var(--black-deep);
}

/* Popup Coffee Badge */
.popup-coffee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
    border: 1px solid var(--gold-primary);
    border-radius: 30px;
    padding: 12px 20px;
    margin: 15px 0;
}

.popup-coffee-badge i {
    color: var(--gold-primary);
    font-size: 20px;
}

.popup-coffee-badge span {
    font-size: 14px;
    color: var(--gold-light);
    font-weight: 500;
}

/* Menu Notes with Coffee */
.menu-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(201, 169, 98, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--black-card);
    border-radius: 12px;
}

.menu-note i {
    color: var(--gold-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.menu-note p {
    font-size: 15px;
    color: var(--gray-light);
    margin: 0;
}

.menu-note.coffee-note {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border: 2px solid var(--gold-primary);
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.menu-note.coffee-note i {
    font-size: 36px;
}

.menu-note.coffee-note p {
    font-size: 18px;
    color: var(--white);
}

/* Perché Noi Section */
.perche-noi {
    padding: 60px 0;
    background: var(--black-soft);
}

.perche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.perche-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--black-card);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all var(--transition-medium);
}

.perche-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.perche-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--black-deep);
}

.perche-item h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.perche-item p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.perche-item.coffee-highlight {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
}

.perche-item.coffee-highlight .perche-icon {
    animation: coffeeGlow 2s ease-in-out infinite;
}

/* Footer Coffee */
.footer-coffee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 12px 20px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 30px;
    border: 1px solid var(--gold-primary);
}

.footer-coffee i {
    color: var(--gold-primary);
    font-size: 18px;
}

.footer-coffee span {
    font-size: 14px;
    color: var(--gold-light);
}

/* Info Card Coffee */
.info-card.coffee-card {
    border: 2px solid var(--gold-primary);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
}

.info-card.coffee-card .info-icon {
    animation: coffeeGlow 2s ease-in-out infinite;
}

/* Locale Feature Coffee */
.feature-item.coffee-feature {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
}

/* ================================
   ANIMATIONS
   ================================ */
[data-aos] {
    transition-property: opacity, transform;
}

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

/* ================================
   MOBILE - CAFFÈ OFFERTO
   ================================ */
@media (max-width: 768px) {
    .coffee-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 8px;
    }
    
    .coffee-banner span {
        font-size: 14px;
    }
    
    .coffee-section {
        padding: 50px 0;
    }
    
    .coffee-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .coffee-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .coffee-text h3 {
        font-size: 26px;
    }
    
    .coffee-text p {
        font-size: 16px;
    }
    
    .perche-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .perche-item {
        padding: 25px 15px;
    }
    
    .perche-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .perche-item h3 {
        font-size: 16px;
    }
    
    .perche-item p {
        font-size: 13px;
    }
    
    .menu-notes {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .menu-note {
        padding: 14px 16px;
    }
    
    .menu-note.coffee-note {
        padding: 20px;
    }
    
    .menu-note.coffee-note i {
        font-size: 30px;
    }
    
    .menu-note.coffee-note p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .perche-grid {
        grid-template-columns: 1fr;
    }
    
    .perche-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 20px;
    }
    
    .perche-icon {
        margin: 0;
        width: 55px;
        height: 55px;
        font-size: 22px;
        flex-shrink: 0;
    }
    
    .perche-item h3 {
        margin-bottom: 5px;
    }
    
    .coffee-banner {
        border-radius: 16px;
        padding: 14px 16px;
    }
    
    .coffee-banner span {
        font-size: 13px;
    }
}

/* ================================
   ENHANCED CAFFÈ OFFERTO STYLES
   Maggiore visibilità del messaggio
   ================================ */

/* Coffee Banner - Pulse Effect più evidente */
.coffee-banner {
    position: relative;
    overflow: hidden;
}

.coffee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: coffeeShine 3s ease-in-out infinite;
}

@keyframes coffeeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Coffee Highlight Card - Animazione speciale */
.perche-item.coffee-highlight {
    position: relative;
    overflow: hidden;
}

.perche-item.coffee-highlight::after {
    content: '☕';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    opacity: 0.3;
    animation: coffeeSteam 2s ease-in-out infinite;
}

@keyframes coffeeSteam {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-5px); opacity: 0.6; }
}

/* Coffee Section - Enhanced Gradients */
.coffee-section {
    position: relative;
    overflow: hidden;
}

.coffee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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='%23000000' fill-opacity='0.08'%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");
    opacity: 0.5;
}

.coffee-content {
    position: relative;
    z-index: 1;
}

/* Coffee Icon - Animated Steam */
.coffee-icon {
    position: relative;
}

.coffee-icon::before {
    content: '~';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--black-deep);
    opacity: 0.6;
    animation: steam 1.5s ease-in-out infinite;
}

.coffee-icon::after {
    content: '~';
    position: absolute;
    top: -10px;
    left: 30%;
    font-size: 18px;
    color: var(--black-deep);
    opacity: 0.4;
    animation: steam 1.5s ease-in-out infinite 0.3s;
}

@keyframes steam {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
        opacity: 0; 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px); 
        opacity: 0.6; 
    }
}

/* ================================
   ENHANCED ESPERIENZA PIZZAIOLO
   Sezione più prominente
   ================================ */

/* Stats con effetto glow */
.stat-item {
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.25);
}

.stat-number {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Experience Badge Enhanced */
.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black-deep);
    margin-top: 20px;
    box-shadow: var(--shadow-gold);
    animation: badgePulse 3s ease-in-out infinite;
}

.experience-badge i {
    font-size: 18px;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 6px 30px rgba(201, 169, 98, 0.5); }
}

/* Chef Signature Enhanced */
.chef-signature {
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    margin-top: 30px;
    position: relative;
}

.chef-signature::before {
    content: '✦';
    position: absolute;
    left: -8px;
    top: 0;
    color: var(--gold-primary);
    font-size: 12px;
}

/* International Flags Animation */
.international-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.country-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--black-card);
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    font-size: 14px;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.country-flag:hover {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: scale(1.05);
}

.country-flag span {
    font-size: 20px;
}

/* ================================
   ACCESSIBILITÀ MIGLIORATA
   ================================ */

/* Focus visible per navigazione tastiera */
*:focus-visible {
    outline: 3px solid var(--gold-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--black-deep);
    padding: 15px 25px;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Aria labels visivamente nascosti ma leggibili */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast per text su immagini */
.hero-content,
.gallery-overlay {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* ================================
   MOBILE EXTRA OPTIMIZATIONS
   ================================ */

/* Ultra small screens - 320px */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn-large {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
    
    .popup-content {
        max-width: 260px;
        padding: 20px 14px 18px;
    }
    
    .popup-close {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Smooth scrolling su iOS */
@supports (-webkit-touch-callout: none) {
    html {
        scroll-behavior: auto;
    }
    
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
}
