:root {
  --primary: #059669;
  --primary-hover: #047857;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#addressText a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: #fff;
  transition: color 0.25s ease;
}

.info-card,
.lang-switch,
.theme-toggle,
.restaurant-name,
.restaurant-tagline,
.info-card-description {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.top-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px;
}

.lang-switch button {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.lang-switch button.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: all 0.3s ease;
  font-size: 18px;
}

.theme-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

.theme-toggle.dark .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.theme-toggle.dark .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding: 0 24px 40px;
}

.restaurant-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.restaurant-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.restaurant-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 380px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.info-card {
  width: 100%;
  max-width: 430px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
}

.info-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.info-stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-stat .bi-star-fill {
  color: #fbbf24;
}

.info-stat .bi-heart-fill {
  color: #f87171;
}

.info-stat .stat-value {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.info-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
}

.info-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-row i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.info-row span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.5;
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.info-card-description {
  margin-top: 0;
  padding-top: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.info-card-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
  opacity: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.3);
  text-decoration: none;
  margin-bottom: 28px;
}

.cta-button:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* Hero image + overlay stay the same in both themes */
body.light .hero-bg::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Hero text stays light — readable on dark overlay */
body.light .restaurant-name,
body.light .restaurant-tagline {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

body.light .restaurant-tagline {
  color: rgba(255, 255, 255, 0.72);
}

body.light .lang-switch {
  background: rgba(255, 255, 255, 0.12);
}

body.light .lang-switch button {
  color: rgba(255, 255, 255, 0.55);
}

body.light .lang-switch button.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

body.light .theme-toggle {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

body.light .restaurant-logo {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Light mode: only info card uses bright panel + dark text */
body.light .info-card {
  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-border: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

body.light .info-card .stat-value {
  color: #111827;
}

body.light .info-card .stat-label {
  color: #6b7280;
}

body.light .info-card .info-row span {
  color: #374151;
}

body.light .info-card .info-divider {
  background: rgba(0, 0, 0, 0.08);
}

body.light .info-card .info-card-divider {
  background: rgba(0, 0, 0, 0.1);
}

body.light .info-card .social-link {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: #374151;
}

body.light .info-card .social-link:hover {
  background: rgba(5, 150, 105, 0.12);
  color: var(--primary);
}

body.light .info-card .info-card-description,
body.light .info-card #homeTagline {
  color: #374151;
}

@media (max-width: 400px) {
  .restaurant-name {
    font-size: 2rem;
  }
  .restaurant-tagline {
    font-size: 1rem;
  }
  .info-card {
    padding: 20px;
  }
  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}
