:root {
    --ink: #21150f;
    --ink-soft: #3a261b;
    --wood: #1b120d;
    --wood-2: #2a1b13;
    --paper: #e8d4ad;
    --paper-light: #f2e3c3;
    --paper-dark: #c6a879;
    --red: #9e2f22;
    --red-dark: #722017;
    --red-clear: #ff422c;
    --mustard: #d0a642;
    --cream: #f8edcf;
    --white: #fff9e9;
    --max-width: 1180px;
    --header-height: 82px;
    --shadow: 0 14px 35px rgba(0, 0, 0, .25);
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo Narrow';
    src: url('../fonts/ArchivoNarrow-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--wood); font-family: 'Archivo Narrow', Arial, sans-serif; font-size: 18px; line-height: 1.55; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.narrow-container { max-width: 760px; }
.text-center { text-align: center; }
.skip-link { position: fixed; top: -100px; left: 15px; z-index: 9999; background: var(--mustard); color: var(--ink); padding: 10px 15px; }
.skip-link:focus { top: 15px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); background: rgba(25, 16, 11, .92); border-bottom: 2px solid rgba(208, 166, 66, .35); transition: background .25s, box-shadow .25s; }
.site-header.is-scrolled { background: rgba(20, 12, 8, .98); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.header-inner { width: min(calc(100% - 40px), 1280px); height: 100%; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: relative; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a, .header-phone { color: var(--cream); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: 15px; font-weight: 700; transition: color .2s; }
.site-nav a:hover, .site-nav a.is-active, .header-phone:hover { color: var(--mustard); }
/*.brand { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 150px; height: 110px; display: grid; place-items: center; z-index: 2; }*/
.brand { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 135px; height: 135px; display: grid; place-items: center; z-index: 2; border: 2px solid #59451f; border-radius: 100px; background-color: #1a110a; overflow: hidden; }
.brand img { width: 145px; object-fit: contain; filter: drop-shadow(0 4px 4px rgba(0,0,0,.55)); }
.header-phone { justify-self: end; display: flex; gap: 8px; align-items: center; }
.phone-icon { color: var(--mustard); font-size: 20px; }
.menu-toggle { display: none; }

.hero { min-height: 780px; position: relative; display: grid; place-items: center; background: linear-gradient(90deg, rgba(15,8,4,.18), rgba(15,8,4,.28)), url('../images/hollywood_pub_interni_bancone_01.webp') center/cover no-repeat; }
.hero-home { min-height: 100svh; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0 35%, rgba(0,0,0,.35) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; color: var(--white); text-align: center; padding-top: 100px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .16em; font-size: 15px; font-weight: 700; margin: 0 0 12px; }
.section-kicker { color: var(--red); }
.section-kicker.light { color: var(--mustard); }
h1, h2, h3, .btn, .feature-label, .menu-category-heading h2 { font-family: 'Oswald', 'Arial Narrow', sans-serif; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; text-transform: uppercase; font-size: clamp(70px, 12vw, 150px); line-height: .82; letter-spacing: .03em; margin: 0; text-shadow: 5px 6px 0 rgba(0,0,0,.35); }
.hero-script { font-family: Georgia, serif; font-style: italic; color: var(--mustard); font-size: clamp(36px, 5vw, 64px); margin: 14px 0 0; }
.hero-subtitle { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .2em; font-weight: 600; font-size: 18px; }
.hero-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: var(--mustard); font-size: 30px; text-decoration: none; animation: bounce 1.7s infinite; }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 26px; border: 2px solid transparent; text-transform: uppercase; letter-spacing: .08em; font-size: 16px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
/*.btn-primary { color: var(--white); background: var(--red); border-color: var(--red); box-shadow: 0 5px 0 var(--red-dark); }*/
.btn-primary { color: var(--white); background: var(--red); border-color: var(--red); border-radius:6px; border-color: var(--red-clear) }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { color: var(--white); border-color: var(--mustard); background: rgba(0,0,0,.18); }
.btn-outline:hover { background: var(--mustard); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--cream); }

#welcome { background: linear-gradient(rgba(25,15,9,.05), rgba(25,15,9,.55)), url('../images/background_old_paper_01_small.jpg') center/cover no-repeat; margin: 0 20px}
.section-paper { background: var(--paper); background-image: radial-gradient(rgba(80,40,10,.07) 1px, transparent 1px); background-size: 7px 7px; }
/*.section-paper { background: linear-gradient(rgba(25,15,9,.05), rgba(25,15,9,.55)), url('../images/background_old_paper_01_small.jpg') center/cover no-repeat; margin: 0 20px}*/
.section-wood { color: var(--cream); background: linear-gradient(rgba(25,15,9,.35), rgba(25,15,9,.35)), url('../images/background_table_01_small_horiz.jpg') center/cover; }
.intro-section { padding: 100px 0 110px; }
.intro-section h2, .story-copy h2, .cta-section h2, .contact-form-wrap h2 { font-family: 'Bebas Neue', sans-serif; text-transform: uppercase; font-size: clamp(48px, 7vw, 82px); line-height: .95; margin: 0 0 25px; }
.lead { font-size: 21px; max-width: 720px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 65px; }
.feature-card { display: block; position: relative; overflow: hidden; aspect-ratio: 4/5; border: 8px solid var(--paper-light); box-shadow: var(--shadow); text-decoration: none; background: var(--ink); }
.feature-image { position: absolute; inset: 0; background-position: center; background-size: cover; transition: transform .5s; filter: saturate(.85) contrast(1.08); }
.feature-card:hover .feature-image { transform: scale(1.06); }
.image-pizza { background-image: url('../images/hollywood_pub_pizza_01.webp'); }
.image-sfilatino { background-image: url('../images/hollywood_pub_sfilatini_01.webp'); }
.image-fries { background-image: url('../images/hollywood_pub_fritti_01.webp'); }
.feature-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.75)); }
.feature-label { position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2; padding: 8px 12px; text-align: center; background: var(--red); color: var(--white); text-transform: uppercase; letter-spacing: .1em; font-size: 27px; }

.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; margin-top:160px; }
.polaroid { background: var(--paper-light); padding: 14px 14px 42px; color: var(--ink); transform: rotate(-2deg); box-shadow: var(--shadow); }
.polaroid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.polaroid span { display: block; font-family: Georgia, serif; font-style: italic; text-align: center; margin-top: 12px; }
.story-copy h2 { color: var(--white); }
.story-copy p:not(.section-kicker) { max-width: 560px; color: #e5d7ba; }
.text-link { display: inline-block; margin-top: 20px; color: var(--mustard); font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; text-decoration: none; }
.text-link span { margin-left: 8px; }
.cta-section { padding: 100px 0; background: var(--red); color: var(--white); }
.cta-section .section-kicker { color: var(--mustard); }

.page-hero { min-height: 430px; display: grid; place-items: center; padding-top: var(--header-height); color: var(--white); background-position: center; background-size: cover; position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(15,8,4,.65); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(70px, 10vw, 120px); line-height: .9; text-transform: uppercase; margin: 0; }
.page-hero p:last-child { font-size: 22px; margin: 12px 0 0; }
.page-hero-menu { background-image: url('../images/hollywood_pub_interni_bancone_01.webp'); }
.page-hero-contact { background-image: url('../images/hollywood_pub_interni_bancone_01.webp'); }

.menu-category-nav { position: sticky; top: var(--header-height); z-index: 1000; background: var(--wood-2); border-bottom: 3px solid var(--red); box-shadow: 0 5px 15px rgba(0,0,0,.25); }
.menu-category-inner { display: flex; overflow-x: auto; }
.menu-category-nav a { flex: 1; max-width: 220px; text-wrap-mode: nowrap; padding: 17px 20px; color: var(--cream); text-align: center; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-family: 'Oswald', sans-serif; font-weight: 700; border-right: 1px solid rgba(255,255,255,.1); }
.menu-category-nav a:hover { background: var(--red); }
.menu-section { padding: 80px 0 100px; }
.menu-sheet { max-width: 1000px; padding: 55px clamp(25px, 5vw, 75px); background: rgba(242,227,195,.8); box-shadow: var(--shadow); border: 1px solid rgba(80,40,10,.2); }
.menu-category + .menu-category { margin-top: 70px; }
.menu-category-heading { display: flex; align-items: center; gap: 20px; justify-content: center; color: var(--red); border-bottom: 2px solid rgba(158,47,34,.3); margin-bottom: 25px; }
.menu-category-heading h2 { font-size: 48px; text-transform: uppercase; margin: 0 0 10px; }
.menu-category-heading span { color: var(--mustard); font-size: 25px; }
.menu-item { display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; border-bottom: 1px dotted rgba(33,21,15,.4); }
.menu-item-main { flex: 1; }
.menu-item h3 { font-size: 22px; text-transform: uppercase; margin: 0; letter-spacing: .03em; }
.menu-item p { margin: 2px 0 0; font-size: 16px; color: var(--ink-soft); line-height: 1.35; }
.menu-price { white-space: nowrap; font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--red); }
.menu-photo-strip { padding: 60px 0; }
.photo-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-strip-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 6px solid var(--paper-light); box-shadow: 0 8px 20px rgba(0,0,0,.35); }

.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-card { color: black; padding: 30px 10px 30px 90px; background: linear-gradient(rgba(25,15,9,.0), rgba(25,15,9,.0)), url('../images/background_paper_card_01.webp') center/cover no-repeat; transform: rotate(-1deg);}
/*.contact-card { background: var(--paper-light); color: var(--ink); padding: 45px; box-shadow: var(--shadow); transform: rotate(-1deg); }*/
.contact-info-item { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(33,21,15,.15); }
.contact-info-item:last-child { border-bottom: 0; }
.contact-icon { font-size: 28px; color: var(--red); }
.contact-info h3 { margin: 0; text-transform: uppercase; font-size: 19px; }
.contact-info p { margin: 3px 0 0; }
.contact-info a { color: var(--red); font-weight: 700; }
.contact-form-wrap h2 { color: var(--white); }
.contact-form { margin-top: 25px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 6px; color: var(--cream); font-size: 15px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 5px; background: rgba(0,0,0,.70); color: var(--white); outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--mustard); box-shadow: 0 0 0 2px rgba(208,166,66,.2); }
.form-field textarea { resize: vertical; min-height: 130px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { min-height: 25px; margin-top: 14px; font-weight: 700; }
.form-status.is-success { color: #8fd18f; }
.form-status.is-error { color: #ff9a86; }
.map-section { padding: 70px 0; }
.map-placeholder { min-height: 430px; display: grid; place-items: center; text-align: center; background: linear-gradient(rgba(40,30,20,.2), rgba(40,30,20,.2)), repeating-linear-gradient(0deg, transparent 0 39px, rgba(80,50,20,.1) 40px), repeating-linear-gradient(90deg, transparent 0 39px, rgba(80,50,20,.1) 40px); border: 8px solid var(--paper-light); box-shadow: var(--shadow); }
.map-content { padding: 30px; }
.map-pin { display: block; color: var(--red); font-size: 48px; }
.map-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 55px; margin: 0; }

.site-footer { color: var(--cream); background: #120b08; }
.footer-main { padding: 65px 0; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; }
.footer-brand img { width: 170px; margin-bottom: 15px; }
.footer-brand p { color: #b9aa8f; margin: 0; }
.footer-brand h3 { letter-spacing: .1em; margin: 0 0 10px; }
.footer-column { display: flex; flex-direction: column; gap: 7px; }
.footer-column h3 { color: var(--mustard); text-transform: uppercase; letter-spacing: .1em; margin: 0 0 10px; }
.footer-column a { color: var(--cream); text-decoration: none; }
.footer-column a:hover { color: var(--mustard); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); color: #988b76; font-size: 14px; }
.footer-bottom-inner { min-height: 55px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }

.error-page { min-height: 100vh; }
.error-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 10rem 2rem 4rem; background-image: url('../images/hollywood_pub_interni_bancone_01.webp'); background-size: cover; background-position: center center; overflow: hidden; }
.error-overlay { position: absolute; inset: 0; background: linear-gradient( to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.82) ); }
.error-content { position: relative; z-index: 1; width: 100%; max-width: 850px; margin: 0 auto; text-align: center; color: #fff; }
.error-logo-link { display: inline-block; margin-bottom: 2rem; } .error-logo { display: block; width: auto; max-width: min(280px, 65vw); height: auto; margin: 0 auto; }
.error-code { margin: 0; font-family: 'Bebas Neue', 'Arial Narrow', sans-serif; font-size: clamp(8rem, 25vw, 18rem); font-weight: 400; line-height: 0.75; letter-spacing: 0.03em; color: #fff; text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35), 0 8px 30px rgba(0, 0, 0, 0.5); }
.error-title { margin: 2rem 0 1.25rem; font-family: 'Bebas Neue', 'Arial Narrow', sans-serif; font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 400; line-height: 0.95; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35), 0 4px 15px rgba(0, 0, 0, 0.4); }
.error-text { max-width: 600px; margin: 0 auto 2.5rem; font-size: 1.1rem; line-height: 1.7; color: rgba(255, 255, 255, 0.9); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.error-actions { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) { 
    .error-page *, 
    .error-page *::before, 
    .error-page *::after { transition: none !important; animation: none !important; } 
}

/* 
========================================
   LIGHTBOX
======================================== */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 2rem;  background: rgba(0, 0, 0, 0.92);  opacity: 0; visibility: hidden;  transition: opacity 0.25s ease, visibility 0.25s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { display: block;  max-width: 95vw;  max-height: 90vh; width: auto; height: auto; object-fit: contain; border-radius: 4px;  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); transform: scale(0.95); transition: transform 0.25s ease; }
.lightbox.is-open img { transform: scale(1); }
/* Pulsante di chiusura */
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #fff; font-family: Arial, sans-serif; font-size: 2.5rem; line-height: 1; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease; }
.lightbox-close:hover { background-color: rgba(255, 255, 255, 0.15); transform: rotate(90deg); }
/* Immagini cliccabili */
.lightbox-image { cursor: zoom-in; }

/* Mobile */
@media screen and (max-width: 800px) {
    :root { --header-height: 68px; }
    .container { width: min(calc(100% - 28px), var(--max-width)); }
    .header-inner { width: calc(100% - 28px); grid-template-columns: 1fr auto 1fr; }
    /*.brand { top: 2px; width: 125px; height: 80px; }*/
    .brand { top: 12px; width: 100px; height: 100px; border: 2px solid #59451f; border-radius: 61px; background-color: #1a110a; overflow: hidden; }
    .brand img { width: 120px; }
    .menu-toggle { display: flex; width: 42px; height: 42px; padding: 9px 7px; border: 0; background: transparent; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; z-index: 5; }
    .menu-toggle span { display: block; height: 2px; width: 26px; background: var(--cream); transition: transform .2s, opacity .2s; }
    .site-nav { position: fixed; inset: var(--header-height) 0 0; background: rgba(18,11,8,.98); display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 45px 28px; gap: 0; transform: translateX(-100%); transition: transform .25s ease; }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 25px; }
    .header-phone { font-size: 0; }
    .phone-icon { font-size: 23px; }
    .image-pizza { background-position: bottom; }
    .hero { min-height: 700px; }
    .hero h1 { font-size: clamp(65px, 19vw, 105px); }
    .hero-content { padding-top: 60px; }
    .feature-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
    .feature-grid { gap: 20px; }
    /*.feature-card { aspect-ratio: 16/10; }*/
    .story-grid { gap: 50px; }
    .story-copy { text-align: center; }
    .story-copy p:not(.section-kicker) { margin-inline: auto; }
    .text-link { margin-top: 10px; }
    .photo-strip-grid { grid-template-columns: 1fr; }
    .photo-strip-grid img { aspect-ratio: 16/9; }
    /*.contact-card { transform: none; padding: 30px 24px; }*/
    .contact-card { transform: none; padding: 12px 0; }
    .contact-info { padding-left: 50px; margin: 32px 0; }
    .contact-info-item { padding: 0; font-size: 0.9rem; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom-inner { gap: 0; }

    .error-hero { min-height: 100svh; padding: 7rem 1.25rem 3rem; background-position: center center; } 
    .error-logo { max-width: min(230px, 65vw); } 
    .error-code { font-size: clamp(7rem, 32vw, 11rem); } 
    .error-title { margin-top: 1.5rem; font-size: clamp(2.4rem, 11vw, 4rem); } 
    .error-text { max-width: 90%; font-size: 1rem; line-height: 1.6; } 
    .error-actions { flex-direction: column; width: 100%; } 
    .error-actions .btn { width: min(100%, 280px); } }

    #welcome { margin: 0 10px; }
}

@media screen and (max-width: 768px) {
    .lightbox { padding: 1rem; }
    .lightbox img { max-width: 100vw; max-height: 85vh; }
    .lightbox-close { top: 0.5rem; right: 0.75rem; }
}

@media screen and (max-width: 520px) {
    body { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 300px; margin-inline: auto; }
    .hero-actions .btn { width: 100%; }
    .hero-script { text-shadow: 2px 2px 2px black; }
    .intro-section, .story-section, .contact-section { padding: 75px 0; }
    #welcome h2 { text-shadow: 1px 1px 20px white; }
    .intro-section h2, .story-copy h2, .cta-section h2, .contact-form-wrap h2 { font-size: 55px; }
    .lead { font-size: 19px; }
    .menu-category-inner { justify-content: flex-start; }
    .menu-category-nav a { padding: 15px 12px; font-size: 14px; text-wrap-mode: nowrap; max-width: none; min-width: auto}
    .menu-section { padding: 45px 0 70px; }
    .menu-sheet { padding: 35px 20px; }
    .menu-category + .menu-category { margin-top: 50px; }
    .menu-category-heading h2 { font-size: 32px; }
    .menu-category-heading { gap: 10px; }
    .menu-item { gap: 10px; }
    .menu-item h3 { font-size: 19px; }
    .menu-item p { font-size: 15px; }
    .menu-price { font-size: 18px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 14px 0; text-align: center; }
}
