:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --text: #2d2d2d;
  --muted: #6b7280;
  --accent: #9c5f3f;
  --accent-soft: #e8d7cd;
  --border: rgba(45, 45, 45, 0.08);
  --primary: #2563eb;
  --danger: #ef4444;
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top left, #fff8f0 0%, #f0e8e2 40%, #f4f7fb 100%);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.gallery-card {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 240px;
  border-radius: 20px;
  cursor: zoom-in;
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

header { padding: 12px 0 6px; }

header.bg-white {
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.navbar-brand { font-size: 1.15rem; letter-spacing: 0.02em; }

.navbar-nav { display: flex; align-items: center; gap: 1rem; }

.navbar-nav .nav-link {
  padding: 0.55rem 0.9rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.active {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.18);
  text-shadow: 0 0 6px rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1050;
}

.image-modal.show {
  display: flex;
}

.image-modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.image-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

body .card { border-radius: 20px; }

.divider-card { min-width: 48px; }
.divider-dot { width: 10px; height: 10px; background: #d6b7a1; border-radius: 50%; display: block; margin: 6px 0; }

form .form-label { font-weight: 600; }

footer { padding: 24px 0 14px; text-align: center; color: var(--muted); }

.menu-card-img {
  height: 220px;
  object-fit: cover;
}

@media (max-width: 991px) {
  header.bg-white { border-radius: 0.75rem; }
  .navbar-nav { gap: 0.75rem; }
}
