/* =============================================
   Website Template – Stylesheet
   Generic single-page restaurant / business site
   ============================================= */

/* ---- Custom Properties (Dark mode default) ---- */
:root {
  --primary:       #e63946;
  --primary-dark:  #c1121f;
  --secondary:     #f4a261;
  --accent:        #2a9d8f;
  --gold:          #f4c430;

  --bg:            #0d0d0d;
  --bg-section:    #111111;
  --bg-card:       rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.09);

  --text:          #f1f1f1;
  --text-muted:    #9a9a9a;
  --text-heading:  #ffffff;

  --border:        rgba(255, 255, 255, 0.1);
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow:   0 0 40px rgba(230, 57, 70, 0.25);

  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:         72px;
  --transition:    0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
}

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
a:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; line-height: 1.8; }

button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
button:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 3px; }

.hidden { display: none !important; }

/* ---- Container ---- */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 28px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* ---- Section ---- */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-heading), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-heading);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text-heading); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle {
  width: auto;
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.theme-toggle:hover,
.lang-toggle:hover {
  background: var(--bg-card-hover);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: radial-gradient(ellipse at top, #1a0a0a 0%, var(--bg) 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0.5); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

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

.status-badge {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}
.status-badge.open {
  background: rgba(42, 157, 143, 0.2);
  color: #4ecdc4;
  border: 1px solid rgba(42, 157, 143, 0.4);
}
.status-badge.closed {
  background: rgba(230, 57, 70, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(230, 57, 70, 0.3);
}
.status-badge.loading {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1rem;
  animation: fadeInDown 0.7s ease 0.1s both;
  background: linear-gradient(135deg, #ffffff 30%, var(--secondary) 70%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.4rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---- News Banner ---- */
.news-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.7s ease 0.6s both;
}
.news-item {
  background: rgba(244, 162, 97, 0.12);
  border: 1px solid rgba(244, 162, 97, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  text-align: center;
}
.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 0.25rem;
}
.news-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* ---- Keyframes ---- */
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: none; } }
@keyframes scaleIn    { from { transform: scale(0.9); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes spin       { to { transform: rotate(360deg); } }

/* =============================================
   SPEISEKARTE / MENU
   ============================================= */
.menu-section {
  background: var(--bg);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-transform: capitalize;
}
.filter-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-loading,
.hours-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-category-section { grid-column: 1 / -1; }
.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(244, 162, 97, 0.3);
  text-transform: capitalize;
}
.menu-items-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 162, 97, 0.25);
}

.menu-card-img {
  width: 100%; height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a, #2a1010);
}
.menu-card-img-placeholder {
  width: 100%; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 162, 97, 0.08));
}

.menu-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.menu-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.menu-error,
.hours-error {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: var(--radius);
}

/* =============================================
   ÖFFNUNGSZEITEN / HOURS
   ============================================= */
.hours-section {
  background: var(--bg-section);
}

.hours-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.hours-row td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child td { border-bottom: none; }

.hours-day {
  font-weight: 600;
  color: var(--text-heading);
  width: 40%;
}
.hours-time {
  color: var(--text-muted);
}
.hours-row.today .hours-day  { color: var(--primary); }
.hours-row.today .hours-time { color: var(--text-heading); font-weight: 600; }

.hours-status {
  text-align: center;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.hours-status.open {
  background: rgba(42, 157, 143, 0.15);
  color: #4ecdc4;
  border: 1px solid rgba(42, 157, 143, 0.3);
}
.hours-status.closed {
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  border: 1px solid rgba(230, 57, 70, 0.25);
}

/* =============================================
   KONTAKT / CONTACT
   ============================================= */
.contact-section {
  background: var(--bg);
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item address,
.contact-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

.phone-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary) !important;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--primary) !important; }

.maps-btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  display: block;
  filter: grayscale(30%) contrast(1.05);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p { color: var(--text-muted); margin-top: 0.75rem; font-size: 0.9rem; }
.footer-brand a { color: var(--text-muted); font-size: 0.9rem; }
.footer-brand a:hover { color: var(--secondary); }

.footer h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-link-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link-btn:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-copyright {
  cursor: pointer;
}

/* =============================================
   MODALS
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.2s ease both;
}
.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}
.modal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-weight: 700;
}
.modal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.modal-content a { color: var(--secondary); }

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-heading);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.modal-close:hover { background: rgba(255, 255, 255, 0.15); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(13, 13, 13, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    animation: fadeIn 0.2s ease;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; }
  .nav-cta  { font-size: 1.1rem; padding: 0.75rem 2rem; }

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

@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .section { padding: 4rem 0; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hours-card { padding: 1.5rem; }
  .modal-content { padding: 1.75rem 1.25rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-items-row { grid-template-columns: 1fr; }
}

/* =============================================
   ACCESSIBILITY – reduce motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =============================================
   LIGHT THEME
   ============================================= */
[data-theme="light"] {
  --bg:            #f5f5f5;
  --bg-section:    #ffffff;
  --bg-card:       rgba(0, 0, 0, 0.03);
  --bg-card-hover: rgba(0, 0, 0, 0.07);
  --text:          #333333;
  --text-muted:    #666666;
  --text-heading:  #1a1a1a;
  --border:        rgba(0, 0, 0, 0.1);
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow:   0 0 40px rgba(230, 57, 70, 0.08);
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.85);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
}
[data-theme="light"] .hero {
  background: radial-gradient(ellipse at top, #fff5f0 0%, var(--bg) 70%);
}
[data-theme="light"] .hero-title {
  background: linear-gradient(135deg, #1a1a1a 30%, var(--secondary) 70%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .footer {
  background: #e8e8e8;
}
[data-theme="light"] .modal-content {
  background: #ffffff;
}
[data-theme="light"] .modal-backdrop {
  background: rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .modal-close {
  background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .modal-close:hover {
  background: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .menu-card-img {
  background: linear-gradient(135deg, #f0f0f0, #e8e0e0);
}
[data-theme="light"] .menu-card-img-placeholder {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(244, 162, 97, 0.05));
}
[data-theme="light"] .btn-secondary {
  color: var(--text-heading);
  border-color: rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .btn-secondary:hover {
  color: var(--text-heading);
  border-color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .contact-map iframe {
  filter: none;
}
[data-theme="light"] .hours-status.open {
  background: rgba(42, 157, 143, 0.1);
}
[data-theme="light"] .hours-status.closed {
  background: rgba(230, 57, 70, 0.06);
}

@media (max-width: 900px) {
  [data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.97);
  }
}
