/* =========================================
   FUOCO - Pizzería Artesanal Napolitana
   REFINED: Warm Colors + Better Contrast
   ========================================= */

/* =========================================
   1. CSS VARIABLES - WARM PALETTE
   ========================================= */
:root {
    /* Warm Dark Colors */
    --color-black: #1a1512;
    --color-dark: #231e1a;
    --color-dark-2: #2a241f;
    --color-dark-3: #3d352d;
    --color-dark-warm: #2f2822;

    /* Accent Colors */
    --color-red: #d4463b;
    --color-red-dark: #b83a31;
    --color-red-glow: rgba(212, 70, 59, 0.3);
    --color-orange: #e8732d;
    --color-gold: #c9a55c;

    /* Light Colors */
    --color-white: #ffffff;
    --color-cream: #f8f3ed;
    --color-cream-dark: #e8dfd4;
    --color-muted: #a89a8a;
    --color-muted-light: #c9bdb0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Shadows */
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-red: 0 10px 40px rgba(212, 70, 59, 0.35);
    --shadow-soft: 0 8px 30px rgba(26, 21, 18, 0.3);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
}

/* =========================================
   2. RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-cream);
    background-color: var(--color-black);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.text-red {
    color: var(--color-red) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-italic {
    font-style: italic;
}

/* =========================================
   3. SECTION BACKGROUNDS
   ========================================= */
.section-dark {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-warm) 100%);
    padding: 7rem 0;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* =========================================
   4. PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-flame {
    font-size: 4rem;
    animation: flame-pulse 1s infinite ease-in-out;
}

@keyframes flame-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.5em;
    color: var(--color-white);
    margin-top: 1rem;
}

/* =========================================
   5. NAVBAR
   ========================================= */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 21, 18, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 1.5rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-white);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted-light);
    font-size: 0.9rem;
}

.nav-phone:hover {
    color: var(--color-red);
}

.navbar-toggler {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toggler-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-cream);
    transition: all 0.3s ease;
}

/* =========================================
   6. OFFCANVAS MENU
   ========================================= */
.offcanvas {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
    border-left: 1px solid var(--color-dark-3);
}

.offcanvas-header {
    padding: 2rem;
    border-bottom: 1px solid var(--color-dark-3);
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-menu-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-cream);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-dark-3);
    transition: all 0.3s ease;
}

.nav-menu-link:hover {
    color: var(--color-red);
    padding-left: 1rem;
}

.offcanvas-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-3);
    color: var(--color-muted);
}

.offcanvas-phone {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-red);
}

.offcanvas-social {
    display: flex;
    gap: 1rem;
}

.offcanvas-social a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    transition: all 0.3s ease;
}

.offcanvas-social a:hover {
    border-color: var(--color-red);
    color: var(--color-red);
    background: rgba(212, 70, 59, 0.1);
}

/* =========================================
   7. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(26, 21, 18, 0.95) 0%,
            rgba(26, 21, 18, 0.8) 40%,
            rgba(26, 21, 18, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-muted-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.hero-scroll span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.scroll-indicator {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    margin: 0 auto;
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.6);
    }
}

.hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: var(--color-dark-2);
    border: 1px solid var(--color-dark-3);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* =========================================
   8. BUTTONS
   ========================================= */
.btn-fuoco {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fuoco:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
    color: var(--color-white);
}

.btn-fuoco-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-cream);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fuoco-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 165, 92, 0.1);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
}

/* =========================================
   9. MARQUEE
   ========================================= */
.marquee-strip {
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-orange) 50%, var(--color-red) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 8s ease infinite;
    padding: 1rem 0;
    overflow: hidden;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   10. SECTION COMPONENTS
   ========================================= */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.section-text {
    color: var(--color-muted-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-text p+p {
    margin-top: 1rem;
}

/* =========================================
   11. ABOUT SECTION
   ========================================= */
.about-images {
    position: relative;
    padding: 2rem;
}

.about-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-main img {
    width: 100%;
    transition: transform 0.4s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-float {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    border: 4px solid var(--color-black);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-red);
}

.about-badge .badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
}

.about-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    color: var(--color-white);
}

.about-features {
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-gold);
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
}

.about-feature strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* =========================================
   12. MENU HORIZONTAL SCROLL
   ========================================= */
.section-menu {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 50%, var(--color-black) 100%);
    padding: 7rem 0;
    position: relative;
}

.menu-header {
    margin-bottom: 3rem;
}

.menu-hint {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.menu-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.menu-scroll::-webkit-scrollbar {
    display: none;
}

.menu-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem;
}

.pizza-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: linear-gradient(180deg, var(--color-dark-2) 0%, var(--color-dark) 100%);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
}

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.pizza-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.pizza-card:hover .pizza-image img {
    transform: scale(1.08);
}

.pizza-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 0.375rem 0.875rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

.pizza-tag.tag-hot {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
    color: var(--color-white);
}

.pizza-tag.tag-premium {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8955b 100%);
    color: var(--color-black);
}

.pizza-tag.tag-vegan {
    background: #22c55e;
    color: var(--color-white);
}

.pizza-info {
    padding: 1.5rem;
}

.pizza-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.pizza-header h3 {
    font-size: 1.35rem;
    margin: 0;
    color: var(--color-white);
}

.pizza-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.pizza-info p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   13. PROCESS SECTION
   ========================================= */
.section-process {
    background: linear-gradient(180deg, var(--color-dark-warm) 0%, var(--color-dark) 100%);
    padding: 7rem 0;
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-red);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--color-gold);
    border-left-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-dark-3);
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, var(--color-muted) 0%, var(--color-dark-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.step-content p {
    color: var(--color-muted-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   14. GALLERY SECTION
   ========================================= */
.section-gallery {
    background: var(--color-black);
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 0.5rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 21, 18, 0.6) 100%);
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-1 {
    grid-column: span 5;
}

.gallery-item-2 {
    grid-column: span 4;
}

.gallery-item-3 {
    grid-column: span 3;
}

.gallery-item-4 {
    grid-column: span 7;
}

.gallery-item-5 {
    grid-column: span 5;
}

/* =========================================
   15. BOOKING SECTION
   ========================================= */
.section-booking {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-warm) 100%);
    padding: 7rem 0;
}

.booking-info {
    margin: 2rem 0;
}

.booking-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.booking-item i {
    font-size: 1.25rem;
    color: var(--color-gold);
    width: 24px;
    margin-top: 0.25rem;
}

.booking-item strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.booking-item p {
    color: var(--color-muted-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.booking-item a {
    color: var(--color-gold);
}

.booking-item a:hover {
    color: var(--color-red);
}

.booking-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-dark-3);
}

/* =========================================
   16. FOOTER
   ========================================= */
.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-dark-3);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-dark-3);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand p {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin: 0;
    margin-left: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 165, 92, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* =========================================
   17. FLOATING ELEMENTS
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* =========================================
   18. COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    border-top: 1px solid var(--color-dark-3);
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* =========================================
   19. RESPONSIVE
   ========================================= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-dark,
    .section-menu,
    .section-process,
    .section-booking {
        padding: 5rem 0;
    }

    .hero-badge {
        display: none;
    }

    .about-images {
        padding: 0;
        margin-bottom: 2rem;
    }

    .about-img-float {
        position: relative;
        width: 100%;
        margin-top: 1rem;
        border: none;
    }

    .about-badge {
        top: 1rem;
        right: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5 {
        grid-column: span 1;
    }

    .gallery-item-5 {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .pizza-card {
        flex: 0 0 280px;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}