/* Global Styles */
:root {
    --red: #BD1622;
    --black: #000000;
    --white: #FFFFFF;
    --light-bg: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .pantaleo-arc text {
    font-family: 'Dela Gothic One', cursive;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

p {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
}

/* Navbar */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vh 3vw;
    margin: 0 auto;
}

.logo-top {
    display: flex;
    align-items: center;
}

.logo-top img {
    height: 5.5vw;
    min-height: 48px;
    max-height: 94px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2vw;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 22px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--red);
}

.social-icons {
    display: none;
}

/* Hero Section */
.hero {
    height: 125vh;
    min-height: 700px;
    position: relative;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125vh;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pantaleo-arc {
    width: 38vw;
    min-width: 380px;
    max-width: 667px;
    margin-bottom: -6.5vw;
    position: relative;
    z-index: 20;
}

.pantaleo-arc svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.4));
}

.hero-logo-center {
    position: relative;
    z-index: 25;
}

.logo-circle {
    background: var(--red);
    width: 15vw;
    height: 15vw;
    min-width: 190px;
    min-height: 190px;
    max-width: 264px;
    max-height: 264px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.logo-circle img {
    height: 65%;
    width: auto;
    object-fit: contain;
}

.hero-buttons {
    display: flex;
    gap: 1vw;
    position: absolute;
    left: 1.5vw;
    bottom: calc(30vh + 4vw + 3vh);
    z-index: 31;
}

.hero-buttons.sticky {
    position: fixed;
    top: clamp(15px, 2vh, 30px);
    bottom: auto;
}

.btn-box {
    background: var(--white);
    border: 1.5px solid var(--black);
    height: clamp(36px, 2.5vw, 50px);
    padding: 0 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(12px, 1.2vw, 22px);
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-box:first-child {
    min-width: 11vw;
}

.btn-box:last-child {
    min-width: 15vw;
}

.btn-box:hover {
    background: var(--black);
    color: var(--white);
}

/* Marquee */
.running-text {
    background: var(--white);
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    height: 3.5vw;
    min-height: 50px;
    max-height: 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: absolute;
    bottom: 30vh;
    left: 0;
    right: 0;
    z-index: 30;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee span {
    font-family: 'Space Mono', monospace;
    font-weight: 75;
    font-size: clamp(16px, 2vw, 32px);
    line-height: 1;
    text-transform: uppercase;
    padding-right: 3.5vw;
    color: var(--black);
    letter-spacing: 0.02em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.checkerboard {
  --height: clamp(90px, 12vh, 140px);
  height: var(--height);
  width: 100%;
  
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='50' height='50' fill='%23000'/%3E%3Crect x='50' y='50' width='50' height='50' fill='%23000'/%3E%3C/svg%3E");
  
  /* Jedes Feld = Höhe ÷ 3. SVG ist 2×2 Felder, also background-size = Feld × 2 */
  background-size: calc(var(--height) / 3 * 2) calc(var(--height) / 3 * 2);
  background-position: 0 0;
}

/* Quote Section */
.quote-section {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 20vh 8vw 25vh;
    position: relative;
}

.quote-content {
    margin: 0 auto;
}

.quote-section h1 {
    font-size: 4vw;
    line-height: 1.05;
    margin-bottom: 4vh;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.quote-sub {
    font-size: 1.5vw;
    max-width: 65%;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Menu Section */
.menu-section {
    padding: 3vh 3vh 3vh 3vh;
    background: var(--white);
    position: relative;
}

.menu-border-bottom {
    position: absolute;
    bottom: 0;
    left: 3vh;
    right: 3vh;
    height: 2px;
    background: var(--black);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vh;
    margin: 0;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.menu-mehr-btn {
    position: absolute;
    bottom: 3vw;
    right: 3vw;
    display: inline-block;
    border: 1.5px solid var(--black);
    padding: 0.8vw 2vw;
    font-family: 'Dela Gothic One', cursive;
    text-transform: uppercase;
    font-size: clamp(12px, 1.2vw, 18px);
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 30;
}

.menu-mehr-btn:hover {
    background: var(--black);
    color: var(--white);
}

.menu-col {
    position: relative;
    border: none;
    background-image: url('images/logo_repeat.png');
    background-repeat: repeat;
    background-size: 6vw;
    background-color: #F5F5F5;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-col:first-child {
    position: relative;
}

.menu-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.fermentation-badge {
    position: absolute;
    top: 2.5vw;
    right: 2.5vw;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-circle {
    width: 8vw;
    min-width: 90px;
    height: 8vw;
    min-height: 90px;
    border: 1.5px solid var(--black);
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: 3vw;
    margin-bottom: 8px;
}

.badge-text {
    background: var(--white);
    border: 1.5px solid var(--black);
    padding: 0px 6px;
    font-size: 26px;
    min-font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.menu-info-box {
    background: var(--white);
    border: 1.5px solid var(--black);
    padding: 1.8vw 2.2vw;
    width: 40vw;
    position: absolute;
    bottom: 5vw;
    left: 3vw;
    z-index: 20;
}

.menu-info-box h2 {
    font-size: 2.8vw;
    min-font-size: 11px;
    margin-bottom: 0.8vw;
    padding-bottom: 0.8vw;
    border-bottom: 2px solid var(--black);
    font-weight: 400;
    line-height: 1;
}

.menu-info-box hr {
    display: none;
}

.menu-info-box p {
    font-size: 1.2vw;
    min-font-size: 11px;
    line-height: 1.4;
    margin: 0.8vw 0 0 0;
    font-weight: 400;
}

/* Manifesto Section */
.manifesto-section {
    padding: clamp(80px, 8.68vw, 150px) 3vh clamp(80px, 8.68vw, 150px) 3vh;
    background: var(--white);
    position: relative;
}

.manifesto-header {
    text-align: center;
    margin-bottom: clamp(50px, 5.79vw, 80px);
    display: none;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto;
    gap: 2vh;
    max-width: 100%;
    align-items: end;
}

.manifesto-img-large {
    position: relative;
    overflow: hidden;
    grid-row: 1 / span 3;
    height: 100%;
    max-width: 40vw;
    top: 6%;
}

.manifesto-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-overlay-text {
    position: absolute;
    text-align: center;
    bottom: clamp(20px, 2.5vw, 40px);
    left: clamp(20px, 2.5vw, 40px);
    right: clamp(20px, 2.5vw, 40px);
    color: var(--white);
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5vw;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    text-transform: uppercase;
}

.manifesto-right {
    display: contents;
}

.manifesto-imgs-small {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 450px;
    align-self: start;
}

.manifesto-imgs-small img:first-child {
    position: absolute;
    top: 0%;
    right: 35%;
    width: clamp(180px, 42%, 320px);
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.manifesto-imgs-small img:last-child {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 28%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 2;
}

.manifesto-text-box {
    border: 1.5px solid var(--black);
    padding: clamp(18px, 2.2vw, 35px);
    font-size: clamp(11px, 1.3vw, 22px);
    line-height: 1.6;
    background: var(--white);
    grid-column: 2;
    grid-row: 2;
    width: 85%;
    max-width: 500px;
}

.manifesto-section .btn-small {
    display: inline-block;
    border: 1.5px solid var(--black);
    padding: 0.6vw 1.5vw;
    font-family: 'Dela Gothic One', cursive;
    text-transform: uppercase;
    font-size: 1.2vw;
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    margin-right: 5vw;
    margin-bottom: -7vh;
}

.manifesto-section .btn-small:hover {
    background: var(--black);
    color: var(--white);
}

.align-right {
    align-self: flex-end;
}

/* Philosophy Section */
.philosophy-section {
    padding: clamp(80px, 8.68vw, 150px) 3vh clamp(80px, 8.68vw, 150px) 3vh;
    background: var(--white);
    position: relative;
}

.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3vh;
    right: 3vh;
    height: 1.5px;
    background: var(--black);
}

.philosophy-top {
    text-align: center;
    margin-bottom: clamp(40px, 4.5vw, 70px);
}

.small-logo {
    height: 6vw;
    margin: 0 auto clamp(15px, 1.8vw, 30px);
}

.philosophy-top > p {
    font-size: clamp(16px, 1.8vw, 32px);
    text-transform: uppercase;
}

.philosophy-pizzas {
    display: inline-flex;
    justify-content: center;
    gap: clamp(20px, 2.31vw, 40px);
    margin-top: 0.5vw;
    padding-top: clamp(20px, 2.5vw, 40px);
    padding-bottom: clamp(20px, 2.5vw, 40px);
    border-top: 1.5px solid var(--black);
    border-bottom: 1.5px solid var(--black);
    margin-left: auto;
    margin-right: auto;
}

.philosophy-pizzas img {
    width: clamp(250px, 26.04vw, 450px);
    object-fit: cover;
}

.philosophy-main h1 {
    font-size: 4vw;
    text-align: center;
    font-weight: 400;
    margin-bottom: 1vw;
}

.philosophy-sub {
    text-align: center;
    font-size: 2vw;
    text-transform: uppercase;
    margin-bottom: clamp(50px, 5.79vw, 100px);
}

.philosophy-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 2vh;
    max-width: 100%;
    margin: 0;
    margin-bottom: 6%;
}

.phi-left {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.phi-left img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phi-box {
    border: 1.5px solid var(--black);
    padding: 1.5vw;
    font-size: 1.5vw;
    line-height: 1.6;
    background: var(--white);
    text-transform: uppercase;
    position: absolute;
    bottom: 6%;
    left: 20%;
    width: 40%;
    z-index: 10;
}

.phi-right {
    display: contents;
}

.phi-imgs-small {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 450px;
    align-self: start;
}

.phi-imgs-small img:first-child {
    position: absolute;
    top: 0;
    left: 40%;
    width: 26%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 2;
}

.phi-imgs-small img:last-child {
    position: absolute;
    top: -4%;
    left: 60%;
    width: clamp(160px, 38%, 300px);
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.phi-quote {
    font-size: 2vw;
    top: 20%;
    line-height: 1.4;
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    align-self: center;
}

.philosophy-section .btn-small {
    display: inline-block;
    border: 1.5px solid var(--black);
    padding: 0.6vw 1.5vw;
    font-family: 'Dela Gothic One', cursive;
    text-transform: uppercase;
    font-size: 1.2vw;
    min-font-size: 14px;
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    grid-column: 2;
    justify-self: end;
    align-self: start;
    position: absolute;
    bottom: 12%;
    right: 58%;
}

.philosophy-section .btn-small:hover {
    background: var(--black);
    color: var(--white);
}


/* Preorder Section */
.preorder-section {
    padding-right: 7%;
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 22vh;
    background: var(--white);
    position: relative;
}

.preorder-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3vh;
    right: 3vh;
    height: 1.5px;
    background: var(--black);
}

.preorder-content h1 {
    font-size: 4vw;
    text-align: left;
    font-weight: 400;
    margin-bottom: clamp(20px, 2.5vw, 40px);
    margin-top: 8%;
}

.preorder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7vh;
    max-width: 100%;
    margin: 0;
}

.preorder-img img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preorder-info p {
    font-size: 2vw;
    line-height: 1.3;
    margin-bottom: clamp(15px, 1.8vw, 30px);
    text-transform: uppercase;
    padding-bottom: 2%;
}

.preorder-box {
    border: 1.5px solid var(--black);
    padding: 2vw;
    background: var(--white);
    margin-bottom: clamp(20px, 2.5vw, 40px);
}

.preorder-box p {
    font-size: 1.5vw;
    line-height: 1.6;
    margin-bottom: clamp(12px, 1.5vw, 24px);
}

.preorder-box p:last-child {
    margin-bottom: 0;
}

.phone {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(20px, 2.5vw, 44px);
    text-align: right;
    letter-spacing: 0.02em;
    margin-top: 5%;
}

/* Taglio Section */
.taglio-section {
    padding-right: 2%;
    padding-left: 5%;
    padding-top: 8%;
    padding-bottom: 0;
    background: var(--white);
    overflow: hidden;
}

.taglio-section h1 {
    font-size: 4vw;
    font-weight: 400;
    text-align: left;
    padding-top: 6%;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

.taglio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2vh;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.taglio-text-box {
    border: 1.5px solid var(--black);
    padding: 2vw;
    display: flex;
    align-items: flex-start;
    background: var(--white);
    grid-column: 1;
    align-self: start;
    position: absolute;
    top: 48%;
    width: 40%;
}

.taglio-text-box p {
    font-size: 1.4vw;
    line-height: 1.6;
}

.taglio-imgs {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    min-height: 700px;
}

.taglio-imgs img:first-child {
    position: absolute;
    top: 0;
    right: 13%;
    width: 53%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.taglio-imgs img:last-child {
    position: absolute;
    top: 50%;
    right: 0%;
    width: 32%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 2;
}

.taglio-footer-text {
    font-size: 2vw;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 10%;
    margin-bottom: clamp(20px, 3vw, 40px);
    text-align: left;
}

/* Footer */
.main-footer {
    background: var(--red);
    color: var(--white);
    padding: 4vh;
    padding-bottom: 4vh;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(40px, 5vw, 80px);
}

.footer-top p {
    font-size: 1.5vw;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: clamp(6px, 0.8vw, 12px);
    margin-top: 2vh;
}

.social-box {
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: #BD1622;
    text-decoration: none;
}

.footer-center {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 80px);
}

.footer-center img {
    height: clamp(120px, 14vw, 240px);
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    font-family: 'Dela Gothic One', cursive;
    gap: clamp(30px, 5vw, 80px);
}

.address, .contact-details {
    font-size: 1.5vw;
    line-height: 1.5;
    font-weight: 400;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.legal {
    display: flex;
    flex-direction: row;
    gap: clamp(12px, 1.5vw, 24px);
    font-family: 'Space Mono', monospace;
    text-align: right;
    margin-left: auto;
    align-self: flex-end;
}

.legal a {
    font-size: clamp(9px, 1vw, 16px);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.legal a:hover {
    opacity: 0.7;
}

/* Utils */
.align-right { align-self: flex-end; }

/* Responsive Media Queries */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .manifesto-grid, 
    .philosophy-grid, 
    .preorder-grid, 
    .taglio-grid {
        grid-template-columns: 1fr;
        gap: clamp(30px, 4vw, 50px);
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 30px);
    }

    .manifesto-imgs-small,
    .phi-imgs-small {
        flex-direction: column;
    }

    .manifesto-imgs-small img,
    .phi-imgs-small img {
        width: 100%;
    }

    .philosophy-pizzas {
        flex-direction: column;
        align-items: center;
    }

    .philosophy-pizzas img {
        width: 80%;
        max-width: 400px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .logo-top img {
        height: 40px;
    }

    /* Hero Section */
    .hero {
        min-height: 500px;
        height: auto;
    }

    .hero-bg {
        height: 60vh;
    }

    .hero-bg img {
        object-position: center 20%;
    }

    .pantaleo-arc {
        width: 70vw;
        min-width: auto;
    }

    .hero-overlay {
        top: 35vh;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;
    }

    .logo-circle img {
        height: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
        position: relative;
        margin-top: 20px;
    }

    .btn-box {
        width: 200px !important;
        min-width: 200px !important;
        height: 42px !important;
        max-height: 42px !important;
        font-size: 16px !important;
    }

    .running-text {
        position: relative;
        bottom: auto;
        height: 50px;
    }

    .marquee span {
        font-size: 14px;
    }

    /* Quote Section */
    .quote-section {
        padding: 60px 20px;
    }

    .quote-section h1 {
        font-size: 32px;
    }

    .quote-sub {
        font-size: 18px;
        max-width: 100%;
    }

    /* Checkerboard */
    .checkerboard {
        height: 50px;
        background-size: 50px 50px;
    }

    /* Menu Section */
    .menu-section {
        padding: 15px;
        padding-bottom: 60px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        gap: 15px;
    }

    .menu-col {
        min-height: 300px;
    }

    .menu-info-box {
        position: relative;
        width: 100%;
        min-width: auto;
        max-width: 100%;
        bottom: auto;
        left: auto;
        padding: 20px;
    }

    .menu-info-box h2 {
        font-size: 28px;
    }

    .menu-info-box p {
        font-size: 13px;
    }

    .menu-mehr-btn {
        position: relative;
        bottom: auto;
        right: auto;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-top: 15px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .menu-border-bottom {
        left: 15px;
        right: 15px;
    }

    /* Manifesto Section */
    .manifesto-section {
        padding: 60px 15px;
    }

    .manifesto-header {
        margin-bottom: 40px;
        display: none;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .manifesto-img-large {
        min-height: 350px;
        grid-row: 1;
    }

    .manifesto-imgs-small {
        display: flex;
        flex-direction: column;
        gap: 15px;
        min-height: auto;
    }

    .manifesto-imgs-small img:first-child {
        width: 100%;
        height: 250px;
        position: relative;
    }

    .manifesto-imgs-small img:last-child {
        width: 100%;
        height: 200px;
        position: relative;
        margin-top: 0;
    }

    .manifesto-text-box {
        padding: 20px;
        font-size: 14px;
    }

    .manifesto-section .btn-small {
        display: block;
        width: fit-content;
        font-size: 14px;
        padding: 10px 20px;
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        margin-top: 15px;
    }

    .img-overlay-text {
        font-size: 14px;
        padding: 10px;
    }

    /* Philosophy Section */
    .philosophy-section {
        padding: 60px 15px;
    }

    .philosophy-top {
        margin-bottom: 30px;
    }

    .small-logo {
        height: 60px;
    }

    .philosophy-top > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .philosophy-pizzas {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        width: 100%;
    }

    .philosophy-pizzas img {
        width: 100%;
        max-width: 100%;
    }

    .philosophy-main h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .philosophy-sub {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phi-left {
        min-height: 400px;
        grid-column: 1;
        grid-row: 2;
    }

    .phi-left img {
        width: 100%;
    }

    .phi-box {
        position: relative;
        width: 100%;
        bottom: auto;
        right: auto;
        margin: 0;
        padding: 20px;
        font-size: 13px;
    }

    .phi-imgs-small {
        grid-column: 1;
        grid-row: 1;
        min-height: 350px;
    }

    .phi-imgs-small img:first-child {
        width: 45%;
    }

    .phi-imgs-small img:last-child {
        width: 55%;
    }

    .phi-quote {
        grid-column: 1;
        grid-row: 3;
        font-size: 14px;
        align-self: auto;
        text-align: center;
        margin-top: 20px;
    }

    .philosophy-section .btn-small {
        grid-column: 1;
        grid-row: 4;
        display: block;
        width: fit-content;
        font-size: 14px;
        padding: 10px 20px;
        justify-self: center;
        margin-top: 20px;
    }

    /* Preorder Section */
    .preorder-section {
        padding: 60px 15px;
    }

    .preorder-content h1 {
        font-size: 32px;
        text-align: left;
        margin-bottom: 25px;
    }

    .preorder-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preorder-img {
        min-height: 300px;
    }

    .preorder-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .preorder-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .preorder-box p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .phone {
        font-size: 24px;
    }

    /* Taglio Section */
    .taglio-section {
        padding: 60px 15px;
        padding-bottom: 0;
    }

    .taglio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .taglio-section h1 {
        font-size: 28px;
        grid-column: 1;
        grid-row: 1;
    }

    .taglio-text-box {
        grid-column: 1;
        grid-row: 2;
        padding: 20px;
    }

    .taglio-text-box p {
        font-size: 13px;
    }

    .taglio-imgs {
        grid-column: 1;
        grid-row: 3;
        min-height: 400px;
        padding-bottom: 20px;
    }

    .taglio-imgs img:first-child {
        width: 60%;
    }

    .taglio-imgs img:last-child {
        width: 50%;
    }

    .taglio-footer-text {
        grid-column: 1;
        grid-row: 4;
        font-size: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: left;
    }

    .taglio-section .checkerboard {
        margin-top: 0;
    }

    /* Footer */
    .main-footer {
        padding: 30px 15px;
        padding-bottom: 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        align-items: center;
    }

    .footer-top p {
        font-size: 11px;
    }

    .social-links {
        margin-top: 10px;
    }

    .social-box {
        width: 40px;
        height: 40px;
    }

    .footer-center {
        margin-bottom: 30px;
    }

    .footer-center img {
        height: 100px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }

    .address, .contact-details {
        font-size: 14px;
    }

    .legal {
        margin-left: 0;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .legal a {
        font-size: 11px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-bg {
        height: 55vh;
    }

    .pantaleo-arc {
        width: 85vw;
        max-width: 380px;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .logo-circle img {
        height: 100px;
    }

    .hero-buttons {
        bottom: 80px;
        gap: 10px;
    }

    .btn-box {
        width: 170px !important;
        height: 38px;
        font-size: 14px;
        padding: 0 15px;
    }

    .running-text {
        height: 45px;
    }

    .marquee span {
        font-size: 12px;
    }

    .quote-section {
        padding: 40px 15px;
    }

    .quote-section h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    .quote-sub {
        font-size: 14px;
    }

    /* Menu Section */
    .menu-section {
        padding: 10px;
        padding-bottom: 40px;
    }

    .menu-col {
        min-height: 250px;
    }

    .menu-info-box {
        padding: 15px;
    }

    .menu-info-box h2 {
        font-size: 24px;
    }

    .menu-info-box p {
        font-size: 12px;
    }

    .menu-mehr-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Manifesto Section */
    .manifesto-section,
    .philosophy-section,
    .preorder-section,
    .taglio-section {
        padding: 40px 15px;
    }

    .manifesto-header {
        display: none;
    }

    .manifesto-img-large {
        min-height: 280px;
    }

    .manifesto-imgs-small img:first-child,
    .manifesto-imgs-small img:last-child {
        height: 200px;
    }

    .manifesto-text-box {
        padding: 15px;
        font-size: 12px;
    }

    .manifesto-section .btn-small {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Philosophy Section */
    .philosophy-top > p {
        font-size: 12px;
    }

    .small-logo {
        height: 50px;
    }

    .philosophy-pizzas {
        padding: 12px 0;
    }

    .philosophy-main h1 {
        font-size: 28px;
    }

    .philosophy-sub {
        font-size: 12px;
    }

    .phi-left {
        min-height: 300px;
    }

    .phi-box {
        padding: 15px;
        font-size: 12px;
    }

    .phi-imgs-small {
        min-height: 280px;
    }

    .phi-quote {
        font-size: 12px;
    }

    .philosophy-section .btn-small {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Preorder Section */
    .preorder-content h1 {
        font-size: 26px;
    }

    .preorder-info h3 {
        font-size: 16px;
    }

    .preorder-box {
        padding: 15px;
    }

    .preorder-box p {
        font-size: 12px;
    }

    .phone {
        font-size: 20px;
    }

    /* Taglio Section */
    .taglio-section h1 {
        font-size: 24px;
    }

    .taglio-text-box {
        padding: 15px;
    }

    .taglio-text-box p {
        font-size: 12px;
    }

    .taglio-imgs {
        min-height: 300px;
    }

    .taglio-footer-text {
        font-size: 11px;
    }

    /* Footer */
    .main-footer {
        padding: 25px 15px;
    }

    .footer-top p {
        font-size: 10px;
    }

    .social-box {
        width: 35px;
        height: 35px;
    }

    .footer-center img {
        height: 80px;
    }

    .address, .contact-details {
        font-size: 12px;
    }

    .legal {
        gap: 15px;
    }

    .legal a {
        font-size: 10px;
    }
}

/* Menu Page Styles */
.menu-hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.menu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(189, 22, 34, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.menu-hero-logo {
    width: clamp(80px, 15vw, 140px);
    height: auto;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.menu-hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(36px, 8vw, 100px);
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    margin-bottom: clamp(20px, 3vw, 40px);
}

.menu-hero-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.8vw, 20px);
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.menu-pricing-section {
    background: var(--white);
    padding: clamp(80px, 10vw, 160px) clamp(40px, 6vw, 100px);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(28px, 4vw, 56px);
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 100px);
    color: var(--black);
    letter-spacing: 0.01em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
}

.price-box {
    background: var(--red);
    border: 3px solid var(--black);
    padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
    text-align: center;
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-10px);
}

.price-amount {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(36px, 5vw, 72px);
    color: var(--white);
    margin-bottom: clamp(15px, 2vw, 30px);
    letter-spacing: 0.02em;
}

.price-label {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Responsive Menu Page */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .price-box {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        min-height: 50vh;
    }
    
    .menu-pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

/* About Page Styles */
.about-hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(189, 22, 34, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-logo {
    width: clamp(80px, 15vw, 140px);
    height: auto;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.about-hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(36px, 8vw, 100px);
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    margin-bottom: clamp(20px, 3vw, 40px);
}

.about-hero-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.8vw, 20px);
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-story-section {
    background: var(--white);
    padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 100px);
}

.about-story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(60px, 8vw, 120px);
    align-items: start;
}

.about-story-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 2vw, 30px);
}

.about-story-img-large {
    width: 100%;
}

.about-story-img-large img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-imgs-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2vw, 30px);
}

.about-story-imgs-small img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-text p {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.8;
    color: var(--black);
    margin-bottom: clamp(25px, 3vw, 40px);
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    font-weight: 700;
    font-size: clamp(16px, 1.6vw, 22px) !important;
}

.philosophy-about-section {
    background: var(--red);
    padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 100px);
}

.philosophy-about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-about-top {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.philosophy-about-logo {
    width: clamp(80px, 10vw, 120px);
    height: auto;
    margin: 0 auto clamp(20px, 3vw, 30px) auto;
}

.philosophy-about-tradition {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.2vw, 16px);
    color: var(--white);
    margin-bottom: clamp(25px, 3vw, 40px);
    letter-spacing: 0.1em;
}

.philosophy-about-pizzas {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    justify-content: center;
    align-items: center;
}

.philosophy-about-pizzas img {
    width: clamp(120px, 18vw, 280px);
    height: auto;
}

.philosophy-about-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(50px, 7vw, 100px);
    color: var(--white);
    text-align: center;
    margin-bottom: clamp(15px, 2vw, 25px);
    letter-spacing: 0.02em;
}

.philosophy-about-sub {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.2vw, 16px);
    color: var(--white);
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
    letter-spacing: 0.1em;
}

.philosophy-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 4vw, 50px);
    align-items: start;
}

.philosophy-about-img-left img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-about-imgs-small {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 30px);
}

.philosophy-about-imgs-small img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-about-text {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: clamp(30px, 4vw, 50px) auto 0;
    text-align: center;
}

.philosophy-about-text p {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.8;
    color: var(--white);
    margin-bottom: clamp(20px, 2.5vw, 35px);
}

.philosophy-about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-story-images {
        order: -1;
    }
    
    .philosophy-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }
    
    .about-story-section {
        padding: 60px 20px;
    }
    
    .philosophy-about-section {
        padding: 60px 20px;
    }
    
    .philosophy-about-pizzas {
        flex-direction: column;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(189, 22, 34, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-logo {
    width: clamp(80px, 15vw, 140px);
    height: auto;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.contact-hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(36px, 8vw, 100px);
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    margin-bottom: clamp(20px, 3vw, 40px);
}

.contact-hero-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.8vw, 20px);
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-info-section {
    background: var(--white);
    padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 100px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 4vw, 60px);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--black);
    padding: clamp(30px, 3vw, 50px);
    text-align: center;
}

.contact-card h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(20px, 2vw, 32px);
    margin-bottom: clamp(20px, 2vw, 30px);
    padding-bottom: clamp(15px, 1.5vw, 20px);
    border-bottom: 2px solid var(--black);
    color: var(--black);
}

.contact-card p {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.8;
    color: var(--black);
    font-weight: 400;
}

.hours-card {
    background: var(--red);
    border-color: var(--red);
}

.hours-card h2 {
    color: var(--white);
    border-bottom-color: var(--white);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.5vw, 20px);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.2vw, 18px);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hours-row .day {
    text-align: left;
}

.hours-row .time {
    text-align: right;
}

.map-section {
    background: var(--white);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        height: auto;
    }
    
    .contact-info-section {
        padding: 60px 20px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: var(--black);
    margin: 0 3vh;
}

.section-divider-mobile {
    height: 2px;
    background: #000000;
    margin: 0 20px;
}

/* Legal Pages Styles (Impressum & Datenschutz) */
.legal-hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    position: relative;
    overflow: hidden;
}

.legal-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.legal-hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(36px, 8vw, 100px);
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    margin: 0;
}

.legal-content-section {
    background: var(--white);
    padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 100px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: clamp(40px, 5vw, 60px);
    padding-bottom: clamp(30px, 4vw, 40px);
    border-bottom: 1px solid var(--black);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--black);
    margin-bottom: clamp(20px, 2vw, 30px);
    text-transform: uppercase;
}

.legal-block h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(16px, 1.8vw, 24px);
    color: var(--black);
    margin-bottom: clamp(15px, 1.5vw, 20px);
    margin-top: clamp(20px, 2vw, 30px);
}

.legal-block p {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.8;
    color: var(--black);
    margin-bottom: clamp(15px, 1.5vw, 20px);
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.8;
    color: var(--black);
    margin-bottom: clamp(15px, 1.5vw, 20px);
    padding-left: clamp(20px, 2vw, 30px);
}

.legal-block li {
    margin-bottom: clamp(8px, 1vw, 12px);
}

.legal-block strong {
    font-weight: 700;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        min-height: 60vh;
        height: auto;
    }
    
    .legal-content-section {
        padding: 40px 20px;
    }
    
    .legal-block {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

/* Catering Page Styles */
.catering-hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.catering-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.catering-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catering-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.catering-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.catering-hero-logo {
    width: clamp(80px, 15vw, 140px);
    height: auto;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.catering-hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(36px, 8vw, 100px);
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    margin-bottom: clamp(20px, 3vw, 40px);
}

.catering-hero-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.8vw, 20px);
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.catering-form-section {
    background: var(--white);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
}

.catering-container {
    max-width: 900px;
    margin: 0 auto;
}

.catering-intro {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.catering-intro h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--black);
    margin-bottom: clamp(20px, 2vw, 30px);
}

.catering-intro p {
    font-family: 'Space Mono', monospace;
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--black);
    line-height: 1.6;
}

.catering-form {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 60px);
}

.form-step {
    display: flex;
    gap: clamp(30px, 4vw, 50px);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid #ddd;
}

.form-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: clamp(50px, 5vw, 70px);
    height: clamp(50px, 5vw, 70px);
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(20px, 2vw, 28px);
    color: var(--white);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--black);
    margin-bottom: clamp(25px, 3vw, 35px);
}

.form-row {
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 100%;
}

.form-row.zeit-row {
    gap: clamp(15px, 2vw, 25px);
    display: flex;
    flex-wrap: wrap;
}

.form-row.zeit-row .form-group {
    flex: 1;
    min-width: 200px;
    max-width: none;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Space Mono', monospace;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: clamp(10px, 1.2vw, 15px);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 18px);
    padding: clamp(15px, 1.8vw, 20px);
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(189, 22, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.catering-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: clamp(30px, 4vw, 50px) auto 0;
    padding: clamp(20px, 2.5vw, 25px) clamp(40px, 5vw, 60px);
    background: var(--red);
    border: 2px solid var(--black);
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.catering-submit-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.catering-submit-btn .arrow {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.catering-submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* Interactive Input Styles */
.datum-input-group .datum-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.zeit-input-group .zeit-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 160px;
}

.personen-input-group .personen-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.datum-prefix,
.zeit-prefix,
.personen-prefix,
.personen-suffix {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(18px, 2vw, 28px);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.datum-input-group input {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(20px, 2.5vw, 32px);
    padding: clamp(12px, 1.5vw, 18px) clamp(15px, 2vw, 25px);
    background: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    min-width: 280px;
    max-width: 700px;
}

.datum-input-group.full-width {
    width: 100%;
}

.datum-input-group.full-width .datum-input-wrapper {
    width: 100%;
    justify-content: flex-start;
}

.datum-input-group.full-width input {
    width: 100%;
    flex: 1;
}

.zeit-input-group input {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(20px, 2.5vw, 32px);
    padding: clamp(12px, 1.5vw, 18px) clamp(15px, 2vw, 25px);
    background: var(--red);
    border: 2px solid var(--black);
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 140px;
    width: 100%;
}

.datum-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.zeit-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.datum-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(189, 22, 34, 0.3);
}

.zeit-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(189, 22, 34, 0.3);
}

.personen-input-wrapper {
    background: var(--red);
    border: 2px solid var(--black);
    padding: clamp(12px, 1.5vw, 18px) clamp(15px, 2vw, 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.personen-prefix,
.personen-suffix {
    color: var(--white);
    font-size: clamp(16px, 2vw, 24px);
}

.personen-input-group input {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(28px, 4vw, 48px);
    padding: 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--white);
    color: var(--white);
    text-align: center;
    width: clamp(60px, 8vw, 100px);
    -moz-appearance: textfield;
}

.personen-input-group input::-webkit-outer-spin-button,
.personen-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.personen-input-group input:focus {
    outline: none;
    border-bottom-color: var(--black);
}

/* Responsive Catering Page */
@media (max-width: 1024px) {
    .datum-input-wrapper,
    .zeit-input-wrapper,
    .personen-input-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .datum-prefix,
    .zeit-prefix,
    .personen-prefix,
    .personen-suffix {
        font-size: clamp(18px, 3vw, 28px);
        margin-bottom: 10px;
    }
    
    .datum-input-group input,
    .zeit-input-group input {
        font-size: clamp(24px, 5vw, 36px);
        min-width: 180px;
        width: 100%;
    }
    
    .personen-input-wrapper {
        gap: 15px;
    }
    
    .personen-input-group input {
        font-size: clamp(32px, 8vw, 56px);
        width: 100%;
    }
}

@media (max-width: 768px) {
    .catering-hero {
        min-height: 60vh;
        height: auto;
    }
    
    .catering-form-section {
        padding: 40px 20px;
    }
    
    .form-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
}

/* Danke Page */
.danke-section {
    background: #FFFFFF;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 60px);
}

.danke-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.danke-logo {
    margin-bottom: clamp(30px, 4vw, 50px);
}

.danke-logo img {
    width: clamp(80px, 12vw, 130px);
    height: auto;
}

.danke-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(60px, 10vw, 120px);
    color: #BD1622;
    line-height: 1;
    margin-bottom: clamp(16px, 2vw, 24px);
    letter-spacing: 0.02em;
}

.danke-sub {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.4vw, 18px);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: clamp(30px, 4vw, 50px);
}

.danke-box {
    border: 2px solid #000000;
    padding: clamp(24px, 3vw, 40px) clamp(24px, 4vw, 50px);
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.3vw, 17px);
    line-height: 1.8;
    color: #000000;
    margin-bottom: clamp(30px, 4vw, 50px);
    text-align: left;
}

.danke-box p { margin-bottom: 12px; }
.danke-box p:last-of-type { margin-bottom: 20px; }

.danke-phone {
    display: inline-block;
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(22px, 3vw, 36px);
    color: #BD1622;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.danke-phone:hover { text-decoration: underline; }

.danke-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(16px, 2vw, 22px) clamp(30px, 4vw, 50px);
    background: #000000;
    border: 2px solid #000000;
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(14px, 1.4vw, 18px);
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.25s, border-color 0.25s;
}

.danke-back-btn:hover {
    background: #BD1622;
    border-color: #BD1622;
}

/* Service Toggle */
.service-toggle {
    display: flex;
    gap: 0;
    margin-bottom: clamp(30px, 3vw, 40px);
    border: 2px solid var(--black);
}

/* Main Toggle (Vorbestellen / Catering) — larger, more prominent */
.service-toggle-main {
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

.toggle-btn {
    flex: 1;
    padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 30px);
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(13px, 1.2vw, 18px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn-main {
    font-size: clamp(16px, 1.8vw, 26px);
    padding: clamp(20px, 2.5vw, 28px) clamp(30px, 4vw, 50px);
}

.toggle-btn.active {
    background: var(--red);
    color: var(--white);
}

.toggle-btn:hover:not(.active) {
    background: var(--black);
    color: var(--white);
}

.toggle-btn:not(:last-child) {
    border-right: 2px solid var(--black);
}

/* Service description box */
.service-desc-box {
    display: flex;
    align-items: flex-start;
    gap: clamp(15px, 2vw, 25px);
    background: #F5F5F5;
    border: 2px solid var(--black);
    padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 32px);
    margin-bottom: clamp(20px, 2.5vw, 30px);
    font-family: 'Space Mono', monospace;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.7;
    color: var(--black);
}

.service-desc-box strong {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(14px, 1.3vw, 18px);
    color: var(--red);
    letter-spacing: 0.03em;
}

.service-desc-icon {
    font-size: clamp(20px, 2.5vw, 30px);
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'Dela Gothic One', cursive;
}

.service-desc-text {
    flex: 1;
}

/* Sub-Toggle (second level: Kalt/Warm or Ofen/Personal) */
.service-sub-toggle {
    margin-bottom: clamp(30px, 3.5vw, 45px);
}

.sub-toggle-label {
    font-family: 'Space Mono', monospace;
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: clamp(10px, 1.2vw, 16px);
}

.sub-info {
    font-family: 'Space Mono', monospace;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.7;
    color: var(--black);
    margin-top: clamp(12px, 1.5vw, 20px);
    padding-top: clamp(12px, 1.5vw, 20px);
    border-top: 1px solid #ddd;
}

.service-info {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    color: var(--black);
    padding: clamp(15px, 2vw, 25px) 0;
    margin-bottom: clamp(20px, 2.5vw, 30px);
    border-bottom: 1px solid #ddd;
}

/* Sub-toggle button group reuses .warm-options + .warm-opt-btn */

.warm-options {
    display: flex;
    gap: 0;
    border: 2px solid var(--black);
    margin-bottom: clamp(15px, 2vw, 25px);
}

.warm-opt-btn {
    flex: 1;
    padding: clamp(12px, 1.5vw, 18px) clamp(15px, 2vw, 25px);
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(11px, 1vw, 15px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.warm-opt-btn.active {
    background: var(--black);
    color: var(--white);
}

.warm-opt-btn:hover:not(.active) {
    background: #333;
    color: var(--white);
}

.warm-opt-btn:not(:last-child) {
    border-right: 2px solid var(--black);
}

.catering-hinweis {
    margin-top: clamp(40px, 5vw, 60px);
    padding: clamp(20px, 2.5vw, 30px);
    border: 2px solid var(--black);
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    text-align: center;
    color: var(--black);
}

.catering-hinweis a {
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
}

.catering-hinweis a:hover {
    text-decoration: underline;
}
