/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E42313;
    --primary-cyan: #00D4FF;
    --primary-pink: #FF00AA;
    --primary-orange: #FF8C00;
    --dark-bg: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #999;
    --white: #FFFFFF;
    --text-light: #CCCCCC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

a:hover {
    color: var(--primary-cyan);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-cyan);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

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

.btn-nav {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #E67800;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                url('images/doener-hero.jpg') center/cover;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.opening-status {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.opening-status span {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-open {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    color: #10b981;
}

.status-closed {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: #ef4444;
}

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-hero:hover {
    background: #E67800;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* ===========================
   SECTION STYLES
   =========================== */
.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: var(--dark-gray);
    padding: 6rem 2rem;
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-content strong {
    color: var(--white);
    font-weight: 700;
}

/* ===========================
   SPECIAL BANNER - Aserbaidschanische Küche
   =========================== */
.special-banner {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    padding: 5rem 2rem;
    border-top: 3px solid var(--primary-cyan);
    border-bottom: 3px solid var(--primary-cyan);
}

.special-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.special-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A574;
    font-weight: 700;
    margin-bottom: 1rem;
}

.special-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.special-days {
    font-size: 1.4rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.special-days strong {
    color: var(--white);
    background: var(--primary-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    margin: 0 0.3rem;
}

.special-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.btn-special {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #D4A574;
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-special:hover {
    background: #C49464;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.special-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.special-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===========================
   EFRE SECTION
   =========================== */
.efre-section {
    background: var(--dark-bg);
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efre-container {
    max-width: 1200px;
    margin: 0 auto;
}

.efre-logo {
    text-align: center;
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.efre-logo img {
    max-width: 100%;
    height: auto;
}

.efre-logo img:first-child {
    max-width: 500px;
}

.efre-logo img:last-child {
    max-width: 700px;
}

.efre-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.efre-highlight {
    text-align: center;
    font-size: 1.15rem;
    color: #7AB51D;
    font-weight: 600;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(122, 181, 29, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(122, 181, 29, 0.3);
}

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

.efre-box {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.efre-box:hover {
    border-color: #7AB51D;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 181, 29, 0.2);
}

.efre-box h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.efre-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.efre-box strong {
    color: var(--white);
    font-weight: 700;
}

.efre-box ul {
    list-style: none;
    padding: 0;
}

.efre-box ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.efre-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7AB51D;
    font-weight: bold;
    font-size: 1.2rem;
}

.efre-period {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7AB51D !important;
    text-align: center;
    padding: 1rem;
    background: rgba(122, 181, 29, 0.1);
    border-radius: 10px;
    margin-top: 1rem;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section {
    background: var(--dark-bg);
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.btn-speisekarte {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-pink);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border: 2px solid var(--primary-pink);
}

.btn-speisekarte:hover {
    background: transparent;
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(228, 35, 19, 0.4);
}

.btn-speisekarte svg {
    transition: transform 0.3s ease;
}

.btn-speisekarte:hover svg {
    transform: translateY(3px);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--dark-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.product-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
}

.product-info h4 {
    font-size: 0.9rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   BUFFET SECTION
   =========================== */
.buffet-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-gray) 50%, var(--dark-bg) 100%);
    padding: 6rem 2rem;
}

.buffet-container {
    max-width: 1400px;
    margin: 0 auto;
}

.buffet-header {
    text-align: center;
    margin-bottom: 4rem;
}

.buffet-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.buffet-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    height: 600px;
}

.buffet-main-image {
    grid-row: 1 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.buffet-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.buffet-main-image:hover img {
    transform: scale(1.03);
}

.buffet-side-images {
    display: contents;
}

.buffet-side-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.buffet-side-images img:hover {
    transform: scale(1.03);
}

.buffet-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 170, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.buffet-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(228, 35, 19, 0.3);
}

.buffet-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.buffet-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-primary:hover {
    background: var(--dark-bg);
    color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* ===========================
   EVENTS SECTION
   =========================== */
.events-section {
    background: var(--dark-gray);
    padding: 6rem 2rem;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.events-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(10, 10, 10, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: var(--primary-cyan);
    transform: translateX(10px);
}

.event-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.event-item h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.event-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.events-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-cyan);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-events {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-events:hover {
    background: #E67800;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.events-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.events-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--dark-gray);
    padding: 6rem 2rem 0;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.info-box {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--primary-cyan);
    transform: translateX(10px);
}

.info-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0.3rem 0;
}

.info-box a {
    color: var(--text-light);
    display: block;
}

.info-box a:hover {
    color: var(--primary-cyan);
}

.payment-info {
    background: var(--dark-bg);
    border: 2px solid var(--primary-orange);
    padding: 1.8rem;
    border-radius: 15px;
}

.payment-info h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.payment-info p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-hint {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form 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='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.contact-form select option {
    background: var(--dark-gray);
    color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-gray);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: var(--dark-gray);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: #E67800;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.map-wrapper {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    display: block;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    font-weight: 800;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li {
    color: var(--text-light);
}

.footer-col ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .special-content,
    .events-container {
        grid-template-columns: 1fr;
    }

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

    .buffet-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .buffet-main-image {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }

    .buffet-main-image img {
        height: 300px;
    }

    .buffet-side-images {
        display: contents;
    }

    .buffet-side-images img {
        height: 200px;
    }

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

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

    .about-image img,
    .special-image img,
    .events-image img {
        height: 400px;
    }

    .special-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        align-items: flex-start;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

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

    .nav-cta {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        background-attachment: scroll;
        height: auto;
        min-height: 100vh;
        padding: 120px 1rem 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 1.8rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .about-section,
    .products-section,
    .buffet-section,
    .events-section,
    .contact-section {
        padding: 4rem 1rem;
    }

    /* About Mobile */
    .about-grid {
        gap: 2rem;
    }

    .about-image img {
        height: 280px;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    /* Special Banner Mobile */
    .special-banner {
        padding: 3rem 1rem;
    }

    .special-content {
        gap: 2rem;
    }

    .special-text h2 {
        font-size: 1.8rem;
    }

    .special-days {
        font-size: 1.1rem;
    }

    .special-days strong {
        display: inline-block;
        margin: 0.2rem;
    }

    .special-image img {
        height: 280px;
    }

    /* Products Mobile */
    .products-grid {
        gap: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .btn-speisekarte {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }

    /* Buffet Mobile */
    .buffet-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1rem;
    }

    .buffet-main-image {
        grid-row: auto;
        grid-column: auto;
    }

    .buffet-main-image img {
        height: 220px;
    }

    .buffet-side-images img {
        height: 180px;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .buffet-cta {
        padding: 2rem 1.5rem;
    }

    .buffet-cta h3 {
        font-size: 1.5rem;
    }

    .buffet-cta p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Events Mobile */
    .events-container {
        gap: 2rem;
    }

    .events-intro {
        font-size: 1rem;
    }

    .event-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .event-icon {
        font-size: 2rem;
    }

    .event-item h4 {
        font-size: 1.1rem;
    }

    .events-benefits {
        justify-content: center;
        gap: 0.8rem;
    }

    .benefit {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .events-image img {
        height: 300px;
    }

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

    /* Contact Mobile */
    .contact-grid {
        gap: 2rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .info-box h3 {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* EFRE Mobile */
    .efre-section {
        padding: 3rem 1rem;
    }

    .efre-content h2 {
        font-size: 1.6rem;
    }

    .efre-highlight {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .efre-box {
        padding: 1.5rem;
    }

    .efre-box h3 {
        font-size: 1.2rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem 1.5rem;
    }

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

    .footer-col h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .logo h1 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .special-text h2 {
        font-size: 1.5rem;
    }

    .buffet-cta h3 {
        font-size: 1.3rem;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit {
        width: 100%;
        text-align: center;
    }

    .efre-content h2 {
        font-size: 1.4rem;
    }

    .efre-logo {
        padding: 1rem;
        margin: 0 -1rem;
        border-radius: 0;
        width: calc(100% + 2rem);
    }

    .efre-logo img {
        max-width: 100%;
    }

    .efre-logo img:first-child {
        max-width: 300px;
    }

    .efre-logo img:last-child {
        max-width: 100%;
    }
}
