@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --orange: #F7941D;
  --orange-dark: #E07A00;
  --orange-light: #FFAD4D;
  --orange-glow: rgba(247, 148, 29, 0.25);
  --black: #0D0D0D;
  --black-light: #1A1A1A;
  --black-card: #141414;
  --gray-dark: #2A2A2A;
  --gray: #4A4A4A;
  --gray-light: #8A8A8A;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --white-muted: rgba(255, 255, 255, 0.7);
  --border: rgba(247, 148, 29, 0.15);
  --border-strong: rgba(247, 148, 29, 0.3);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-orange: 0 4px 24px rgba(247, 148, 29, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-height: 72px;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* NAV */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); background: rgba(13, 13, 13, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.02em; }
.nav-links { display: none; align-items: center; gap: 8px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { padding: 10px 16px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white-muted); border-radius: 8px; transition: all 0.25s ease; display: block; }
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-glow); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: none; align-items: center; gap: 8px; padding: 10px 18px; background: var(--orange); color: var(--black); font-weight: 700; font-size: 0.9rem; border-radius: 50px; transition: all 0.3s ease; }
.nav-phone:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
@media (min-width: 900px) { .nav-phone { display: flex; } }

/* HAMBURGER */
.nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; border-radius: 8px; border: 1px solid var(--border); background: rgba(247, 148, 29, 0.08); cursor: pointer; }
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger span { display: block; height: 2px; width: 100%; background: var(--orange); border-radius: 2px; transition: all 0.3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.nav-mobile { position: fixed; top: var(--nav-height); left: 0; right: 0; z-index: 999; background: rgba(13, 13, 13, 0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; display: none; flex-direction: column; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 1rem; padding: 14px 16px; }
.nav-mobile .nav-phone { display: flex; justify-content: center; margin-top: 12px; }

/* LAYOUT */
.page { position: relative; padding-top: var(--nav-height); min-height: 100vh; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 20px; }
@media (max-width: 768px) { .section { padding: 60px 20px; } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.4) 40%, rgba(13, 13, 13, 0.8) 80%, rgba(13, 13, 13, 1) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-block; padding: 8px 20px; background: var(--orange-glow); border: 1px solid var(--border-strong); border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 24px; }
.hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 700; line-height: 1.05; text-transform: uppercase; margin-bottom: 16px; }
.hero-title span { color: var(--orange); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--white-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white-muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(45deg); animation: scrollBounce 1.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* PAGE HERO */
.page-hero { position: relative; height: min(400px, 50vw); min-height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.6) 60%, rgba(13, 13, 13, 1) 100%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 20px; }
.page-hero-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.page-hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; text-transform: uppercase; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; text-transform: uppercase; }
.section-title span { color: var(--orange); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 50px; transition: all 0.3s ease; }
.btn-primary { background: var(--orange); color: var(--black); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(247, 148, 29, 0.4); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange-glow); transform: translateY(-3px); }

/* FEATURES BAR */
.features-bar { background: var(--black-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item { padding: 24px 16px; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 600px) { .feature-item { border-bottom: none; } .feature-item:last-child { border-right: none; } }
.feature-item:nth-child(2n) { border-right: none; }
@media (min-width: 600px) { .feature-item:nth-child(2n) { border-right: 1px solid var(--border); } }
.feature-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.feature-value { font-size: 0.8rem; color: var(--gray-light); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.about-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.about-content .section-tag { text-align: left; display: block; }
.about-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; text-transform: uppercase; margin-bottom: 16px; line-height: 1.2; }
.about-title span { color: var(--orange); }
.about-text { color: var(--gray-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.about-features { display: flex; flex-wrap: wrap; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--orange-glow); border: 1px solid var(--border); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--orange); }

/* MENU GRID (Highlights) */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 480px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.menu-card { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; }
.menu-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-orange); }
.menu-card-image { width: 100%; aspect-ratio: 1; object-fit: cover; }
.menu-card-body { padding: 14px; }
.menu-card-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.menu-card-price { font-size: 0.95rem; font-weight: 700; color: var(--orange); }

/* SPEISEKARTE */
.menu-section { margin-bottom: 60px; }
.menu-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.menu-section-title { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; text-transform: uppercase; color: var(--orange); }
.menu-section-subtitle { font-size: 0.85rem; color: var(--gray-light); margin-top: 4px; }
.menu-items { display: flex; flex-direction: column; gap: 12px; }
.menu-item { display: flex; flex-direction: column; gap: 8px; padding: 16px; background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.2s ease; }
@media (min-width: 500px) { .menu-item { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 16px; } }
.menu-item:hover { border-color: var(--border-strong); background: rgba(247, 148, 29, 0.03); }
.menu-item-info { flex: 1; }
.menu-item-number { font-size: 0.75rem; color: var(--orange); font-weight: 700; margin-right: 8px; }
.menu-item-name { font-weight: 600; font-size: 1rem; margin-bottom: 4px; display: inline; }
.menu-item-desc { font-size: 0.85rem; color: var(--gray-light); }
.menu-item-prices { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
@media (min-width: 500px) { .menu-item-prices { gap: 16px; } }
.menu-item-price { text-align: center; min-width: 45px; }
.menu-item-price-size { font-size: 0.6rem; color: var(--gray-light); text-transform: uppercase; margin-bottom: 2px; }
.menu-item-price-value { font-weight: 700; color: var(--orange); font-size: 0.95rem; }
.menu-size-header { display: none; justify-content: flex-end; gap: 16px; padding: 8px 16px; margin-bottom: 8px; }
@media (min-width: 600px) { .menu-size-header { display: flex; } }
.menu-size-label { width: 50px; text-align: center; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--gray-light); }
.menu-extras { margin-top: 16px; padding: 16px; background: rgba(247, 148, 29, 0.05); border: 1px solid var(--border); border-radius: var(--radius); }
.menu-extras-title { font-size: 0.8rem; font-weight: 700; color: var(--orange); margin-bottom: 8px; text-transform: uppercase; }
.menu-extras-text { font-size: 0.85rem; color: var(--gray-light); line-height: 1.7; }

/* HOURS */
.hours-section { background: var(--black-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hours-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .hours-grid { grid-template-columns: 1fr 1fr; } }
.hours-card { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
@media (max-width: 400px) { .hours-card { padding: 20px; } }
.hours-title { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; text-align: center; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 8px; gap: 10px; }
.hours-row.today { background: var(--orange-glow); border: 1px solid var(--border-strong); }
.hours-day { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.hours-time { color: var(--gray-light); font-size: 0.8rem; text-align: right; white-space: nowrap; }
.hours-note { margin-top: 16px; padding: 12px; background: var(--orange-glow); border-radius: 8px; text-align: center; font-size: 0.85rem; color: var(--orange); }

/* LOCATION */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-map { width: 100%; height: 350px; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-card { display: flex; gap: 16px; padding: 20px; background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.2s ease; }
.location-card:hover { border-color: var(--border-strong); }
.location-icon { flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--orange-glow); border: 1px solid var(--border); border-radius: 12px; color: var(--orange); }
.location-icon svg { width: 24px; height: 24px; }
.location-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.location-value { color: var(--white-soft); font-size: 0.95rem; line-height: 1.5; }
.location-value a { color: var(--white-soft); transition: color 0.2s ease; }
.location-value a:hover { color: var(--orange); }

/* CTA */
.cta-section { padding: 80px 20px; text-align: center; background: linear-gradient(135deg, rgba(247, 148, 29, 0.1) 0%, transparent 50%, rgba(247, 148, 29, 0.05) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.cta-title span { color: var(--orange); }
.cta-subtitle { color: var(--gray-light); font-size: 1rem; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-light); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; padding: 14px 18px; background: var(--black); border: 1px solid var(--border); border-radius: var(--radius); color: var(--white); font-family: inherit; font-size: 1rem; transition: all 0.2s ease; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-submit { width: 100%; padding: 16px 32px; background: var(--orange); color: var(--black); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border: none; border-radius: var(--radius); cursor: pointer; transition: all 0.3s ease; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.form-message { padding: 16px; border-radius: var(--radius); margin-bottom: 20px; display: none; }
.form-message.success { display: block; background: rgba(39, 174, 96, 0.15); border: 1px solid rgba(39, 174, 96, 0.3); color: #27ae60; }
.form-message.error { display: block; background: rgba(231, 76, 60, 0.15); border: 1px solid rgba(231, 76, 60, 0.3); color: #e74c3c; }

/* FOOTER */
.site-footer { background: var(--black-light); border-top: 1px solid var(--border); padding: 60px 24px 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand img { height: 56px; margin-bottom: 12px; }
.footer-brand-name { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.footer-brand-desc { font-size: 0.85rem; color: var(--gray-light); line-height: 1.7; max-width: 280px; }
.footer-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--gray-light); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-icon { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.footer-contact-icon svg { width: 18px; height: 18px; }
.footer-contact-text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.5; }
.footer-contact-text a { color: var(--gray-light); transition: color 0.2s ease; }
.footer-contact-text a:hover { color: var(--orange); }
.footer-bottom { max-width: 1000px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.75rem; color: var(--gray); }
