/* =========================================
   0. LOKALE SCHRIFTARTEN
   ========================================= */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/dm-sans-v14-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/dm-sans-v14-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-v30-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-v30-latin-700.woff2') format('woff2');
}

/* =========================================
   1. ROOT / RESET
   ========================================= */

:root {
  --primary-gold: #E6B871;
  --primary-gold-hover: #F5C882;
  --dark-bg: #151515;
  --card-bg: #1E1E1E;
  --text-light: #FFFFFF;
  --text-muted: #A0A0A0;
  --border-soft: rgba(255, 255, 255, 0.08);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;

  --fs-h1: clamp(2.2rem, 7vw, 4.8rem);
  --fs-h2: clamp(2rem, 5.5vw, 3.4rem);
  --fs-h3: clamp(1.15rem, 3.2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.92rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(196, 155, 99, 0.9);
  outline-offset: 3px;
}

/* =========================================
   2. GENERIC
   ========================================= */

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--primary-gold);
}

.underline {
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
  margin: 20px auto 0;
}

.btn-main {
  display: inline-block;
  padding: 16px 34px;
  border: 1px solid var(--primary-gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(196, 155, 99, 0.2);
  backdrop-filter: blur(5px);
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-main:hover {
  background: var(--primary-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(196, 155, 99, 0.4);
}

.btn-main.full-width {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  background: var(--primary-gold);
  color: #000;
}

.btn-main.full-width:hover {
  background: #fff;
}

/* =========================================
   3. NAVBAR
   ========================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(196, 155, 99, 0.1);
}

.nav-left,
.nav-center,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-center {
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
  gap: 20px;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.info-bar {
  gap: 40px;
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 5px 0;
}

.nav-item i {
  color: var(--primary-gold);
  font-size: 1.3rem;
}

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

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

.nav-item:hover {
  color: var(--primary-gold);
}

.separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(196, 155, 99, 0.3);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}

.status-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 2.5rem;
  display: flex;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
  color: #fff;
}

/* =========================================
   4. SIDEBAR
   ========================================= */

.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  padding: 40px;
  background: #111;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
  border-left: 1px solid var(--primary-gold);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.sidebar.active {
  right: 0;
}

.close-btn {
  align-self: flex-end;
  margin-bottom: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

.close-btn:hover {
  color: var(--primary-gold);
  transform: rotate(90deg);
  transition: 0.3s;
}

.nav-links a {
  display: block;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.nav-links a:hover {
  color: var(--primary-gold);
  padding-left: 15px;
}

.sidebar-info {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.sidebar-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-info i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* =========================================
   5. HERO
   ========================================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 1.5s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 92%);
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.subtitle {
  display: block;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-slider h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.btn-call {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  text-align: center;
}

.btn-call span {
  display: block;
  transition: transform 0.3s ease;
}

.btn-call::after {
  content: attr(data-number);
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-gold);
  color: #000;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.btn-call:hover span {
  transform: translateY(-150%);
}

.btn-call:hover::after {
  transform: translateY(0);
}

/* =========================================
   6. MENU
   ========================================= */

.menu-section {
  padding: 100px 5%;
  background: var(--dark-bg);
}

.menu-tabs-wrapper {
  position: sticky;
  top: 90px;
  z-index: 800;
  background-color: var(--dark-bg);
  padding: 10px 16px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(196, 155, 99, 0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.menu-tabs {
  display: inline-flex;
  gap: 12px;
  white-space: nowrap;
}

.tab-btn {
  padding: 12px 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #000;
  transform: translateY(-3px);
}

.menu-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.menu-entry {
  display: block;
  padding: 22px;
  background: var(--card-bg);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 15px 15px 0;
  animation: fadeIn 0.5s ease;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-entry:hover {
  transform: translateX(10px);
  background: #2a2a2a;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.entry-header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  line-height: 1.15;
  color: var(--primary-gold);
}

.price {
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--primary-gold);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.desc {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  font-style: italic;
}

.menu-note {
  grid-column: 1 / -1;
  margin-bottom: 15px;
  padding: 20px 30px;
  background: rgba(196, 155, 99, 0.05);
  border: 1px dashed rgba(196, 155, 99, 0.3);
  border-radius: 10px;
  text-align: center;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-gold);
  font-size: 1.05rem;
}

.allergy-note {
  width: 100%;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

/* =========================================
   7. CONTACT / MAP
   ========================================= */

.contact-section {
  padding: 100px 5%;
  background-color: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-card {
  position: relative;
  min-height: 420px;
  background: #0f0f0f;
}

.map-preview {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 30% 30%, rgba(196, 155, 99, 0.18), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.85));
}

.map-preview-inner {
  width: min(520px, 100%);
  padding: 18px;
  border: 1px solid rgba(196, 155, 99, 0.28);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  text-align: center;
}

.map-preview-title {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-gold);
}

.map-preview-sub {
  color: #ddd;
  font-size: 0.95rem;
  opacity: 0.9;
}

.map-preview-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-ghost:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.map-preview-note {
  color: #bdbdbd;
  font-size: 0.88rem;
  line-height: 1.4;
}

.map-embed {
  position: absolute;
  inset: 0;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-box {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h3 {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-gold);
}

.owner {
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item i {
  padding: 12px;
  border-radius: 50%;
  background: rgba(196, 155, 99, 0.1);
  border: 1px solid rgba(196, 155, 99, 0.2);
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

.info-item a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* =========================================
   8. RESERVATION
   ========================================= */

.reservation-section {
  padding: 100px 5%;
  background-color: var(--card-bg);
}

.reservation-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 45px;
  background: var(--dark-bg);
  border: 1px solid rgba(196, 155, 99, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group.full-width {
  grid-column: 1 / -1;
  margin-top: 5px;
}

.input-group label {
  color: var(--primary-gold);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(196, 155, 99, 0.15);
}

.input-group small {
  margin-top: -3px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 25px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--primary-gold);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.submit-btn {
  margin-top: 10px;
  padding: 18px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.success-message {
  padding: 20px 0;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.success-message h3 {
  margin: 15px 0 10px;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 2.5rem);
}

.success-message p {
  color: #ccc;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  line-height: 1.6;
}

.success-icon {
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: #4CAF50;
}

/* =========================================
   9. CUSTOM TIME SELECT
   ========================================= */

.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(196, 155, 99, 0.15);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 340px;
  margin-top: 10px;
  padding: 10px;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-options::-webkit-scrollbar {
  width: 8px;
}

.custom-options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.opt-group {
  padding: 10px 15px 5px;
  color: #888;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.opt-group.mt-2 {
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.custom-option {
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  color: #222;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-option:hover {
  background: var(--primary-gold);
  color: #000;
}

.custom-option.selected {
  background: rgba(230, 184, 113, 0.2);
  color: var(--primary-gold);
  font-weight: 700;
}

/* =========================================
   10. FOOTER
   ========================================= */

footer {
  position: relative;
  z-index: 10;
  padding: 80px 5% 30px;
  background-color: #050505;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(196, 155, 99, 0.2);
}

.footer-content h3 {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-content > p {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(196, 155, 99, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.social-links a:hover {
  background: var(--primary-gold);
  color: #000;
  transform: translateY(-5px);
}

.opening-hours-box {
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.opening-hours-box:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 155, 99, 0.3);
}

.opening-hours-box h4 {
  margin-bottom: 25px;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.opening-hours-box p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.opening-hours-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.opening-note {
  margin-top: 15px;
  color: #888 !important;
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #555;
  font-size: 0.9rem;
}

.footer-bottom a {
  margin: 0 15px;
  color: #888;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--primary-gold);
}

/* =========================================
   11. BACK TO TOP / COOKIE
   ========================================= */

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-gold);
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(196, 155, 99, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #fff;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10000;
  max-width: 360px;
  padding: 20px;
  display: none;
  border-left: 4px solid var(--primary-gold);
  border-radius: 14px;
  background: #1a1a1a;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s ease;
}

.cookie-banner p {
  margin-bottom: 15px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-cookie {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  background: var(--primary-gold);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-cookie:hover {
  background: #fff;
}

.cookie-link {
  color: #888;
  font-size: 0.8rem;
  text-decoration: underline;
}

/* =========================================
   12. LEGAL PAGE HELPERS
   ========================================= */

.back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px !important;
}

.back-btn i {
  font-size: 1.2rem;
}

/* =========================================
   13. ANIMATIONS
   ========================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================================
   14. RESPONSIVE
   ========================================= */

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

  .menu-entry {
    padding: 30px;
  }
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 1100px) {
  .menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    overflow-x: visible;
  }

  .menu-tabs {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .navbar {
    height: 72px;
    padding: 0 16px;
  }

  .info-bar {
    display: none;
  }

  .nav-logo {
    height: 42px;
  }

  .status-badge {
    padding: 6px 12px;
  }

  .status-text {
    font-size: 0.72rem;
    letter-spacing: 0.6px;
  }

  .menu-tabs-wrapper {
    top: 72px;
  }
}

@media (max-width: 768px) {
  .btn-call {
    position: static;
    min-width: 0;
    width: 100%;
    max-width: 320px;
    box-shadow: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .reservation-form-wrapper {
    padding: 25px;
  }

  footer {
    padding: 60px 5% 30px;
  }

  .opening-hours-box {
    padding: 25px;
  }

  .opening-hours-box h4 {
    font-size: 1.5rem;
  }

  .opening-hours-box p {
    font-size: 1rem;
  }
}

@media (max-width: 650px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .slide .content {
    top: 58%;
    width: 92%;
  }

  .legal-content {
    padding-top: 100px !important;
  }

  .legal-content h1 {
    font-size: 2rem !important;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
  }

  .btn-text {
    display: none !important;
  }

  .back-btn {
    width: 40px;
    height: 40px;
    padding: 0 !important;
    justify-content: center;
    border-radius: 50%;
  }

  .back-btn i {
    margin: 0;
    font-size: 1.2rem;
  }
}