/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    color: #000;
    overflow-x: hidden;
    background: #ffd700;
    padding-top: 85px;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000 !important;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #ffd700;
    overflow: visible;
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-beelen {
    margin-left: 1.2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.logo-circle-new {
    background: transparent;
    border-radius: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
    padding: 0;
}

.logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: contrast(1.1) brightness(1.05) saturate(1.05);
    transform: none;
    clip-path: none;
}

.logo-image:hover {
    transform: scale(1.15);
}

.logo-circle {
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
}

.doner-man-logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dönerbude Text im Bogen - geschwungen */
.doner-man-logo::before {
    content: 'Dönerbude';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    font-weight: bold;
    color: #333;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: none;
    font-style: italic;
}

/* Chef Figure - Detailliert wie im Original */
.chef-figure {
    position: absolute;
    left: 12px;
    top: 18px;
    width: 20px;
    height: 35px;
    z-index: 2;
}

.chef-head {
    width: 7px;
    height: 7px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 6px;
    border: 1px solid #333;
}

.chef-hat {
    width: 11px;
    height: 6px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: 3px;
    left: 4px;
}

.chef-hat::after {
    content: '';
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: 4px;
}

.chef-body {
    width: 8px;
    height: 18px;
    background: #fff;
    border: 1px solid #333;
    position: absolute;
    top: 15px;
    left: 5px;
    border-radius: 0 0 4px 4px;
}

.chef-arms {
    width: 16px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 20px;
    left: 1px;
    border-radius: 1px;
}

/* Döner Spit - Detailliert wie im Original */
.doner-spit {
    position: absolute;
    right: 8px;
    top: 15px;
    width: 18px;
    height: 30px;
    z-index: 1;
}

.spit-rod {
    width: 2px;
    height: 25px;
    background: #333;
    position: absolute;
    left: 8px;
    top: 2px;
    border-radius: 1px;
}

.meat-cone {
    position: absolute;
    left: 4px;
    top: 6px;
    width: 10px;
    height: 16px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 5px;
    transform: rotate(8deg);
}

.meat-details {
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 12px;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 1px,
        #333 1px,
        #333 2px,
        transparent 2px,
        transparent 3px
    );
    border-radius: 4px;
    transform: rotate(8deg);
}


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 0.75rem 0.5rem;
}

.nav-link:hover {
    color: #000;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.order-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000 !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
}

.order-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.order-btn::after {
    display: none;
}

/* Hamburger Menu - Hidden by default on desktop */
.hamburger {
    display: none;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    border: 2px solid #ffd700;
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.dropdown-menu a:hover {
    background: #ffd700;
    color: #000;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.dropdown-menu li:first-child a {
    border-radius: 6px 6px 0 0;
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        border-width: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-menu a {
        text-align: center;
    }
}

/* Menu Section Styles */
.menu {
    background: #121212;
    padding: 0.5rem 0 3rem;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

/* Daily Specials Section */
.daily-specials {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100vw;
}

.daily-specials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.daily-specials .section-title {
    color: #ffd700;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.daily-specials .section-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.special-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.special-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.special-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.special-card:hover::before {
    opacity: 1;
}

.special-card.today {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #3a3a00 0%, #2f2f00 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    }
}

.special-card.today .special-day::after {
    content: ' • HEUTE';
    color: #ffd700;
    font-size: 0.8em;
    font-weight: 800;
    margin-left: 0.5rem;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.special-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.special-card:hover .special-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.special-day {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-offer {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.special-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.special-description {
    font-size: 1rem;
    color: #aaa;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Daily Specials */
@media (max-width: 1024px) {
    .specials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .daily-specials .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .daily-specials {
        padding: 2rem 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.8rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .special-card {
        padding: 1.2rem 0.8rem;
        border-radius: 15px;
        min-width: 0;
        overflow: hidden;
    }
    
    .special-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .special-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .special-day {
        font-size: 1rem;
    }
    
    .special-offer {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .special-price {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .special-description {
        font-size: 0.85rem;
    }
    
    .daily-specials .section-title {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    .daily-specials .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .daily-specials {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .special-card {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .special-card:hover {
        transform: translateY(-5px) scale(1.0);
    }
    
    .daily-specials .section-title {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
    
    .daily-specials .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* Menu Sections */
.menu-section {
    background: #1a1a1a;
    margin: 0 auto 0;
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: none;
    border-top: 1px solid #333;
    width: 100%;
    max-width: 800px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.menu-section:first-of-type {
    border-top: none;
}

.menu-section-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    color: #ffd700;
    padding: 1.5rem 0.5rem;
    margin: 0;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    min-height: 65px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    box-sizing: border-box;
}

.menu-section-header span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1.3;
    text-align: center;
}

.menu-section-header i {
    margin-left: 0.8rem;
    font-size: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
    flex-shrink: 0;
}

.menu-section-header:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.menu-section-header:hover {
    background: #444;
}

.menu-section-header i {
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.menu-section-header.collapsed i {
    transform: rotate(-90deg);
}

.menu-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #1a1a1a;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.menu-section-content.show {
    padding: 1.5rem 2rem;
}

.menu-section-content.show {
    max-height: 5000px;
    transition: max-height 0.5s ease-in;
}

.menu-section-content-inner {
    padding: 1.5rem 2rem;
}

.menu-items-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1a1a1a;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin: 0;
    background: #1e1e1e;
}

@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

.menu-item-row {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    position: relative;
    padding: 1rem;
    background: #1e1e1e;
}

.menu-item-row:hover {
    background: #252525;
}

.menu-item-row:last-child {
    border-bottom: none;
}

.menu-item-image {
    width: 100%;
    max-width: 100%;
    height: 220px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 6px;
    border-radius: 8px;
    border: 2px solid #333;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.menu-item-details {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin-top: 1rem;
}

.item-number {
    display: inline-block;
    background: #ffd700;
    color: #000;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-right: 10px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.item-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffd700;
    margin: 0.5rem 0;
    display: block;
    text-align: center;
    line-height: 1.4;
    display: block;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-price {
    font-weight: 800;
    color: #ffd700;
    font-size: 1.3rem;
    display: block;
    text-align: center;
    margin: 0.5rem 0;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.item-price:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
}

.item-description {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    text-align: center;
    font-style: italic;
}

/* Hover Effects */
.menu-item-row:hover {
    background: #252525;
}

.menu-item-row:hover .menu-item-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Ensure all sections have the same styling */
.salad-section,
.fastfood-section,
.pizza-section,
.schnitzel-section {
    background: #1a1a1a;
    margin: 0 auto 0;
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: none;
    border-top: 1px solid #333;
    width: 100%;
    max-width: 800px;
    box-shadow: none;
    box-sizing: border-box;
}

.salad-section:first-of-type,
.fastfood-section:first-of-type,
.pizza-section:first-of-type,
.schnitzel-section:first-of-type {
    border-top: none;
}

/* Tax Information */
.price-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin: 2rem 0 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
}

.price-note p {
    margin: 0;
    padding: 0;
}

.price-note small {
    color: #888;
    font-size: 0.9em;
}

/* Ensure menu sections have consistent spacing */
.menu-section,
.salad-section,
.fastfood-section,
.pizza-section,
.schnitzel-section,
.toppings-section,
.sauces-section {
    margin-bottom: 0 !important;
}

.pizza-price-highlight {
    display: inline-block;
    background: #ffd700;
    color: #000;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-top: 1rem;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pizza-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #ffd700;
}

.pizza-note p {
    color: #ffd700;
    font-weight: 600;
    margin: 0;
}

.pizza-price-highlight {
    background: #ffd700;
    color: #000;
    font-size: 2rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Toppings and Sauces Sections */
.toppings-section, .sauces-section {
    background: #1a1a1a;
    border: none;
    border-top: 1px solid #333;
    margin: 0 auto 0;
    padding: 0;
    transform: skew(0deg);
    position: relative;
    box-shadow: none;
    border-radius: 0;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.toppings-section:first-of-type,
.sauces-section:first-of-type {
    border-top: none;
}

.toppings-section .menu-section-header,
.sauces-section .menu-section-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    color: #ffd700;
    transform: skew(0deg);
    margin: 0;
    padding: 1.5rem 0.5rem;
    box-sizing: border-box;
}

.toppings-grid, .sauces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1e1e1e;
}

.price-note {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ffd700;
}

.price-note p {
    color: #000;
    font-style: italic;
}

.topping-item, .sauce-item {
    background: #1e1e1e;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    color: #ffd700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid #333;
    transform: skew(0deg);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.sauce-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #ffd700;
}

.topping-item:hover, .sauce-item:hover {
    background: #252525;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.topping-item span {
    background: #000;
    color: #ffd700;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
    margin-left: 1rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section Updates */
.hero {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background: url('hero-background.avif') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
}

.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.hero-logo-animation {
    background: transparent;
    border-radius: 0;
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    animation: logoFloat 3s ease-in-out infinite;
    overflow: visible;
    padding: 0;
}

.hero-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
    transform: none;
    clip-path: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* Service Info */
.service-info {
    margin: 2rem 0;
    text-align: center;
}

.service-highlight {
    background: #ffd700;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-highlight i {
    color: #000;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.service-highlight span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-highlight strong {
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-option {
    color: #ffd700;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-option i {
    color: #ffd700;
    font-size: 1.1rem;
}

.service-divider {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid #000;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.btn-secondary {
    background: #000;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: #ffd700;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: #000;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Restaurant Video Section */
.restaurant-video {
    background: #000;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.restaurant-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.video-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 60vh;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffd700;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
}

.restaurant-video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 16px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Highlight cards under the video sitting on a wooden board background */
.video-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 2rem 3rem;
    background-image: url('board.avif');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    min-width: 150px;
}

.highlight:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.highlight i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.highlight span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive Video Section */
@media (max-width: 768px) {
    .restaurant-video {
        padding: 1rem 0;
        min-height: 100vh;
    }

    .video-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .video-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .video-container {
        width: 95vw;
        height: 50vh;
        margin-bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .restaurant-video-player {
        height: 100%;
        object-fit: contain;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-highlights {
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .highlight {
        padding: 1rem;
        min-width: 120px;
    }

    .highlight i {
        font-size: 2rem;
    }

    .highlight span {
        font-size: 1rem;
    }
}

/* Quick Order Section */
.quick-order {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 4px solid #ffd700;
    border-bottom: 4px solid #ffd700;
    position: relative;
}

.quick-order-content h2 {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.quick-order-content p {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffd700;
    color: #000;
    padding: 1.5rem 3rem;
    border-radius: 0;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: none;
    position: relative;
    font-family: 'Poppins', sans-serif;
    transform: skew(-5deg);
}

.phone-number:hover {
    transform: skew(-5deg) scale(1.05);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7);
    background: #ffed4e;
}

/* Google Maps Section */
.map-container {
    margin-top: 3rem;
    padding: 2rem 0;
}

.map-wrapper {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.address-info {
    text-align: center;
    margin-top: 2rem;
}

.address-info p {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.address-info i {
    color: #ffd700;
    margin-right: 10px;
    font-size: 1.5rem;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffd700;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
}

.btn-map:hover {
    background: #000;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-map i {
font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
body {
padding-top: 100px;
}

.hamburger {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 21px;
cursor: pointer;
z-index: 1001;
}

.hamburger span {
display: block;
width: 100%;
height: 3px;
background-color: #ffd700;
transition: all 0.3s ease-in-out;
}

.nav-menu {
position: fixed;
left: -100%;
top: 80px;
flex-direction: column;
background-color: #000;
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
z-index: 999;
padding: 2rem 0;
border-top: 3px solid #ffd700;
}

.nav-menu.active {
left: 0;
}

.hero {
flex-direction: column;
text-align: center;
padding: 7.5rem 0.75rem 2rem;
min-height: auto;
width: 100%;
max-width: 100vw;
overflow-x: hidden;
background-attachment: scroll;
}

.hero-content {
    padding: 0 0.5rem;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    margin-top: 2.5rem;
}

.service-info {
    margin: 1rem 0;
}
    .service-highlight {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .service-divider {
        display: none;
    }

    .logo-beelen {
        margin-left: 0.5rem;
        font-size: 1.2rem;
    }

    .logo-circle-new {
        width: 120px;
        height: 120px;
    }

    .logo {
        z-index: 1001;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .doner-man-logo::before {
        font-size: 6px;
        top: 3px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .menu-item-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .menu-item-image {
        width: 100%;
        height: 220px;
        order: -1;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .menu-item-details {
        grid-template-columns: auto 1fr auto;
    }

    .hero-logo-animation {
        width: 200px;
        height: 200px;
        margin: 1rem auto;
    }

    .service-info {
        margin: 1rem 0;
    }

    .service-highlight {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .service-highlight span {
        font-size: 0.9rem;
    }

    .service-options {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .menu-section {
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0;
        box-sizing: border-box;
        border: none;
        border-top: 1px solid #333;
        padding: 0 !important;
    }

    .menu .container {
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .salad-section,
    .fastfood-section,
    .pizza-section,
    .schnitzel-section,
    .toppings-section,
    .sauces-section {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        box-sizing: border-box;
        border: none;
        border-top: 1px solid #333;
        padding: 0 !important;
    }

    .menu-section:first-of-type,
    .salad-section:first-of-type,
    .fastfood-section:first-of-type,
    .pizza-section:first-of-type,
    .schnitzel-section:first-of-type,
    .toppings-section:first-of-type,
    .sauces-section:first-of-type {
        border-top: none !important;
    }

    .menu-section-header {
        font-size: 0.95rem;
        padding: 1.2rem 1rem;
        min-height: auto;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        margin: 0;
    }

    .menu-section-header span {
        padding: 0;
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.5px;
    }

    .menu-section-header i {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .menu-section-content {
        padding: 0;
        width: 100%;
    }

    .menu-section-content.show {
        padding: 1rem;
        width: 100%;
    }

    .menu-items-grid {
        padding: 1rem;
        gap: 1rem;
        width: 100%;
    }

    .toppings-grid, .sauces-grid {
        padding: 1rem;
        gap: 1rem;
        width: 100%;
    }

    .menu-item-row {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .menu-item-image {
        height: 180px;
        margin-bottom: 0.8rem;
    }

    .item-number {
        min-width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }

    .item-name {
        font-size: 1rem;
        min-height: 2.5em;
        margin: 0.3rem 0;
    }

    .item-price {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        margin: 0.3rem 0;
    }

    .item-description {
        font-size: 0.9rem;
        margin: 0.3rem 0;
    }

    .item-dots {
        display: none;
    }

    .phone-number {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .address-info p {
        font-size: 1.1rem;
    }

    .btn-map {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .toppings-grid, .sauces-grid {
        grid-template-columns: 1fr;
    }

}

.container {
    padding: 0 5px;
    box-sizing: border-box;
}

.contact-grid {
    grid-template-columns: 1fr;
}

.contact-item {
    padding: 1rem;
}

.opening-hours {
    padding: 1.5rem;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-section {
    text-align: center;
}

.social-links {
    justify-content: center;
}


/* About Section */
.about {
    background: url('laden.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 5rem 0;
    color: #fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #ffd700;
    width: 90%;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-size: 1.2rem;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: #fff;
}

/* Remove the image element since we're using it as background */
.about-image, .about-img {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        margin: 0 1rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 1.5rem 1rem;
        width: calc(100% - 2rem);
        max-width: 100%;
        margin: 1.5rem auto;
        box-sizing: border-box;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.chef-icon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Contact Section */
.contact {
    background: #000;
    padding: 4rem 0;
    color: #ffd700;
}

.contact .section-title {
    color: #ffd700;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    background: #2a2a2a;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #ffd700;
    margin: 0;
}

.contact-item a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #fff;
}

.opening-hours {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.opening-hours h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    transition: all 0.3s ease;
}

.day:hover {
    background: #333;
    transform: translateX(5px);
}

.day span:first-child {
    font-weight: 600;
    color: #ffd700;
}

.day span:last-child {
    color: #ffd700;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #000;
    color: #ffd700;
    padding: 3rem 0 1rem;
    border-top: 4px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ffd700;
    color: #ffd700;
}

/* Floating Share Button */
.share-button {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 2px solid #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1200;
    font-size: 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.share-button i {
    pointer-events: none;
}

@media (max-width: 768px) {
    .share-button {
        right: 0.9rem;
        bottom: 0.9rem;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #ffd700;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    color: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #000;
}

.modal-content h2 {
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.close {
    color: #000;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffd700;
}

.modal-actions {
    text-align: center;
    margin-top: 2rem;
}

.modal-actions p {
    margin-bottom: 1rem;
    color: #000;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .logo-circle-new {
        width: 120px;
        height: 120px;
        border-width: 3px;
        padding: 8px;
        overflow: visible;
    }

    .logo-beelen {
        font-size: 1.4rem;
        margin-left: 0.8rem;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-animation {
        width: 250px;
        height: 250px;
        border-width: 5px;
        padding: 6px;
    }

    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-info {
        margin: 1rem 0;
    }

    .service-highlight {
        padding: 1rem;
    }

    .service-divider {
        display: none;
    }

    .logo-beelen {
        margin-left: 0.5rem;
        font-size: 1.2rem;
    }

    .logo-circle-new {
        width: 120px;
        height: 120px;
    }

    .logo {
        z-index: 1001;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .doner-man-logo::before {
        font-size: 6px;
        top: 3px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .menu-item-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .menu-item-image {
        width: 100%;
        height: 220px;
        order: -1;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .menu-item-details {
        grid-template-columns: auto 1fr auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-logo-animation {
        width: 240px;
        height: 240px;
        max-width: 80vw;
        max-height: 80vw;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .menu-item-row {
        padding: 1rem;
    }
    
    .menu-item-image {
        height: 200px;
    }
    
    .item-name {
        font-size: 0.95rem;
    }
    
    .item-price {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-circle-new {
        width: 120px;
        height: 120px;
    }
    
    .logo-beelen {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .opening-hours {
        padding: 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .about-content {
        padding: 1.5rem 0.75rem;
        margin: 0 0.5rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
}

/* Location Pages */
.location-page {
    padding-top: 120px; /* Add padding to account for fixed header */
}

.location-hero {
    padding: 2rem 0;
    background: #fff;
    margin-top: -40px; /* Compensate for body padding */
}

.location-content {
    margin: 2rem 0;
    line-height: 1.8;
    color: #333;
}

.location-content h2 {
    color: #000;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
}

.cta-section {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #eee;
}

.cta-section .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #000;
    color: #ffd700;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #000;
    min-height: 100vh;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    background: #ffd700;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd700;
}

.legal-page h1 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.5);
}

.legal-subtitle {
    text-align: center;
    color: #000;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.legal-section p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #000;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.back-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-page {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
}

/* Tuesday Special Offer Section */
.tuesday-special {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tuesday-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.tuesday-offer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    position: relative;
}

.offer-title {
    text-align: center;
    color: #ffd700;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offer-subtitle {
    text-align: center;
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.offer-item {
    flex: 0 0 auto;
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-10px);
}

.offer-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.offer-image:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.offer-label {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
}

.offer-plus,
.offer-equals {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-sign,
.equals-sign {
    font-size: 4rem;
    color: #ffd700;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.offer-price {
    text-align: center;
    background: #ffd700;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 3px solid #000;
}

.price-amount {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-label {
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
    margin-top: 10px;
}

.offer-cta {
    text-align: center;
}

.btn-offer {
    background: #ffd700;
    color: #000;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-offer:hover {
    background: #000;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-offer i {
    font-size: 1.5rem;
}

.pom-info-box {
    margin-top: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 15px;
    border: 3px solid #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.pom-info-box p {
    margin: 0;
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Tuesday Offer */
@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-subtitle {
        font-size: 1rem;
    }
    
    .offer-content {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .offer-image {
        width: 180px;
        height: 180px;
    }
    
    .plus-sign,
    .equals-sign {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-label {
        font-size: 1rem;
    }
    
    .offer-label {
        font-size: 0.9rem;
    }
    
    .btn-offer {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .pom-info-box p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .tuesday-special {
        padding: 40px 0;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-image {
        width: 150px;
        height: 150px;
    }
    
    .plus-sign,
    .equals-sign {
        font-size: 2rem;
    }
    
    .pom-info-box {
        padding: 15px 20px;
    }
    
    .pom-info-box p {
        font-size: 0.95rem;
    }
}

/* Pizza Special Offers Section */
.pizza-special {
    background: #ffd700;
    padding: 80px 0;
    position: relative;
}

.pizza-offer-box {
    background: #000;
    border: 4px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.pizza-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pizza-offer-image {
    flex: 0 0 auto;
}

.pizza-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.pizza-offer-details {
    text-align: center;
    flex: 0 0 auto;
}

.pizza-offer-details h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pizza-price {
    background: #ffd700;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    border: 3px solid #000;
}

.pizza-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
}

/* Family Deal */
.family-deal {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.family-deal-title {
    text-align: center;
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.pizza-offer-content-family {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.family-item {
    flex: 0 0 auto;
    text-align: center;
}

.family-item p {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.family-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.family-drink-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
    border: 4px solid #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.family-salad-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.text-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.family-plus,
.family-equals {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.plus-sign-pizza,
.equals-sign-pizza {
    font-size: 3rem;
    color: #ffd700;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.family-price {
    text-align: center;
    background: #ffd700;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 3px solid #000;
    flex: 0 0 auto;
}

.price-amount-pizza {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.price-label-pizza {
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
    margin-top: 8px;
}

/* Responsive Pizza Offers */
@media (max-width: 968px) {
    .pizza-offer-content-family {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .family-img,
    .family-drink-img,
    .family-salad-img {
        width: 120px;
        height: 120px;
    }
    
    .plus-sign-pizza,
    .equals-sign-pizza {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pizza-special {
        padding: 40px 0;
    }
    
    .pizza-offer-box {
        padding: 20px;
    }
    
    .pizza-img {
        width: 180px;
        height: 180px;
    }
    
    .pizza-offer-details h3 {
        font-size: 1.5rem;
    }
    
    .pizza-price .price {
        font-size: 2.5rem;
    }
    
    .family-deal-title {
        font-size: 1.8rem;
    }
    
    .family-img,
    .family-drink-img,
    .family-salad-img {
        width: 100px;
        height: 100px;
    }
    
    .price-amount-pizza {
        font-size: 2.5rem;
    }
    
    .family-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pizza-img {
        width: 150px;
        height: 150px;
    }
    
    .family-deal-title {
        font-size: 1.3rem;
    }
    
    .pizza-offer-content-family {
        flex-direction: column;
        gap: 10px;
    }
    
    .family-img,
    .family-drink-img,
    .family-salad-img {
        width: 120px;
        height: 120px;
    }
}

/* SEO Page – Street-Food / Berlin Look */
.seo-main {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top, #222 0%, #000 55%, #111 100%);
    color: #fff;
}

.seo-hero {
    padding: 40px 0 60px;
}

.seo-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 3rem;
    align-items: center;
}

.seo-hero-text {
    max-width: 640px;
}

.seo-hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.seo-hero-title {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
}

.seo-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f5f5f5;
    opacity: 0.95;
    margin-bottom: 0.75rem;
}

.seo-hero-btn {
    margin-top: 1.2rem;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.seo-hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.seo-hero-logo-circle {
    width: 320px;
    height: 320px;
    max-width: 80vw;
    max-height: 80vw;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
}

.seo-hero-logo-circle img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
}

.seo-hero-tagline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd700;
    text-align: center;
    opacity: 0.9;
}

.seo-text,
.seo-region,
.seo-faq,
.seo-cta {
    margin-top: 40px;
}

.seo-food-gallery {
    margin-top: 40px;
}

.seo-food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.seo-food-item {
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.12) 0%, rgba(0, 0, 0, 0.95) 55%, #000 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 1.4rem 1.3rem 1.6rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.seo-food-item picture {
    display: block;
    margin: 0 auto 0.9rem;
}

.seo-food-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.seo-food-text {
    font-size: 0.95rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.seo-text h2,
.seo-region h2,
.seo-faq h2,
.seo-cta h2 {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.seo-text p,
.seo-region p,
.seo-faq p,
.seo-cta p {
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 1rem;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.seo-city-block {
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.12) 0%, rgba(0, 0, 0, 0.95) 55%, #000 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 1.5rem 1.4rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.seo-city-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), transparent 40%, rgba(255, 255, 255, 0.03));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.seo-city-block:hover::before {
    opacity: 1;
}

.seo-city-block h3 {
    color: #ffd700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
}

.seo-city-block p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.seo-keyword-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.seo-keyword-list li {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    font-size: 0.9rem;
}

.seo-cta .phone-number {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    margin-top: 0.75rem;
}

.seo-cta .phone-number i {
    color: #000;
}

@media (max-width: 900px) {
    .seo-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .seo-hero-text {
        margin: 0 auto;
    }

    .seo-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .seo-main {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .seo-hero {
        padding-top: 60px;
    }

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

    .seo-text h2,
    .seo-region h2,
    .seo-faq h2,
    .seo-cta h2 {
        font-size: 1.5rem;
    }

    .seo-food-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
    }

    .seo-food-item {
        padding: 1.2rem 1rem 1.4rem;
    }

    .tuesday-special,
    .pizza-special {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}