@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CUSTOM DESIGN SYSTEM TOKENS */
:root {
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  /* Colors - Raccano Theme (Yellow & Black) */
  --bg-dark: #0a0a0c;
  --bg-card: #121216;
  --bg-input: #1a1a22;
  --border-color: #24242e;

  --raccano-yellow: #fbc02d;
  --raccano-yellow-glow: rgba(251, 192, 45, 0.15);
  --raccano-yellow-hover: #ffeb3b;

  /* NOI Colors */
  --noi-blue: #005fa9;
  --noi-blue-glow: rgba(0, 95, 169, 0.2);
  --noi-red: #e3005c;
  --noi-green: #00a859;
  --noi-orange: #ffae00;

  /* Text Colors */
  --text-primary: #f3f4f6;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-dark: #0f0f11;

  /* Layout and effects */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 25px rgba(251, 192, 45, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* RESET & CORE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #24242e;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--raccano-yellow);
}

/* GLOBAL COMPONENTS & TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h2.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--raccano-yellow);
  margin: 10px auto 0;
  border-radius: 2px;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--raccano-yellow);
  color: var(--text-dark);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--raccano-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(251, 192, 45, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--raccano-yellow);
  background-color: rgba(251, 192, 45, 0.05);
  transform: translateY(-2px);
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.badge-yellow {
  background-color: var(--raccano-yellow-glow);
  color: var(--raccano-yellow);
  border: 1px solid var(--raccano-yellow);
}

.badge-blue {
  background-color: rgba(0, 95, 169, 0.15);
  color: #64b5f6;
  border: 1px solid var(--noi-blue);
}

.badge-red {
  background-color: rgba(227, 0, 92, 0.15);
  color: #ef9a9a;
  border: 1px solid var(--noi-red);
}

.badge-green {
  background-color: rgba(0, 168, 89, 0.15);
  color: #81c784;
  border: 1px solid var(--noi-green);
}

/* HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: var(--transition);
}

.navbar {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--raccano-yellow);
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--raccano-yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--raccano-yellow);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-btn {
  display: flex;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, rgba(10, 10, 12, 0.95) 40%, rgba(10, 10, 12, 0.4) 100%), url('foto/IMG_0753.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  color: var(--raccano-yellow);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  max-width: 700px;
}

.hero h1 span {
  color: var(--raccano-yellow);
  text-shadow: 0 0 20px rgba(251, 192, 45, 0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
}

.hero-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.date-tag {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-tag svg {
  color: var(--raccano-yellow);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

/* SECTION PADDINGS */
section {
  padding: 100px 24px;
}

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

/* ABOUT SECTION */
.about {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.about-content h3 span {
  color: var(--raccano-yellow);
}

.noi-branding-box {
  background: linear-gradient(135deg, rgba(0, 95, 169, 0.1), rgba(0, 168, 89, 0.05));
  border: 1px solid rgba(0, 95, 169, 0.2);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.noi-branding-box img {
  height: 90px;
  width: auto;
  border-radius: var(--border-radius-sm);
  background: white;
  padding: 8px;
}

.noi-branding-text h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.noi-branding-text p {
  font-size: 0.9rem;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--raccano-yellow);
  color: var(--text-dark);
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.about-badge span.num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge span.lbl {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* MENU SECTION */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
}

.tab-btn.active {
  background-color: var(--raccano-yellow);
  color: var(--text-dark);
  border-color: var(--raccano-yellow);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(251, 192, 45, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.menu-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 192, 45, 0.3);
  box-shadow: var(--shadow-sm);
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.menu-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-item-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.menu-item-allergens {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--raccano-yellow);
  align-self: flex-start;
  white-space: nowrap;
}

/* BOOKING SECTION */
.booking {
  background-color: var(--bg-dark);
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-info h3 {
  font-size: 2rem;
}

.booking-info p {
  font-size: 1.1rem;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.booking-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--border-radius-md);
}

.booking-feature-icon {
  background-color: rgba(251, 192, 45, 0.1);
  color: var(--raccano-yellow);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.booking-feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.booking-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label span.required {
  color: var(--noi-red);
}

.form-control {
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--raccano-yellow);
  box-shadow: 0 0 10px rgba(251, 192, 45, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Radio Cards (Inside/Outside selector) */
.area-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.area-card {
  border: 2px solid var(--border-color);
  background-color: var(--bg-input);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.area-card:hover {
  border-color: rgba(251, 192, 45, 0.3);
}

.area-card input[type="radio"] {
  accent-color: var(--raccano-yellow);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.area-card-content {
  display: flex;
  flex-direction: column;
}

.area-card-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.area-card-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.area-card.selected {
  border-color: var(--raccano-yellow);
  background-color: rgba(251, 192, 45, 0.05);
}

/* MAP & CONTACTS SECTION */
.info-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.info-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  display: flex;
  gap: 20px;
}

.contact-icon {
  background-color: rgba(251, 192, 45, 0.1);
  color: var(--raccano-yellow);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-info-text p {
  color: var(--text-secondary);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--raccano-yellow);
  color: var(--text-dark);
  border-color: var(--raccano-yellow);
  transform: translateY(-2px);
}

.map-wrapper {
  height: 100%;
  min-height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Leaflet dark theme tweaks */
.leaflet-container {
  background-color: #1a1a22 !important;
  font-family: var(--font-sans) !important;
}

.leaflet-popup-content-wrapper {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--border-radius-sm) !important;
  padding: 6px !important;
}

.leaflet-popup-tip {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}

/* FOOTER */
footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  text-align: center;
}

.footer-logo img {
  height: 70px;
  background: white;
  padding: 6px;
  border-radius: var(--border-radius-sm);
}

.footer-logo h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--raccano-yellow);
}

.footer-copyright {
  text-align: center;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-link {
  color: var(--text-muted);
  cursor: pointer;
}

.admin-link:hover {
  color: var(--raccano-yellow);
  text-decoration: underline;
}

/* MODAL & DIALOGS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--noi-red);
  border-color: var(--noi-red);
  color: white;
}

/* RECEIPT / CONFIRMATION MODAL SPECIFICS */
.receipt-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.receipt-icon {
  background-color: rgba(0, 168, 89, 0.1);
  color: var(--noi-green);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.receipt-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.receipt-card {
  background-color: var(--bg-input);
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 8px;
}

.receipt-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.receipt-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.receipt-value {
  font-weight: 600;
  color: var(--text-primary);
}

.receipt-value.highlight {
  color: var(--raccano-yellow);
}

.receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ADMIN PANEL DASHBOARD */
.admin-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background-color: var(--bg-input);
  font-weight: 600;
  color: var(--text-primary);
}

.admin-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.delete-btn {
  background: none;
  border: none;
  color: var(--noi-red);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
}

.delete-btn:hover {
  background-color: rgba(239, 68, 68, 0.15);
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  font-style: italic;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  h2 {
    font-size: 2.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .navbar {
    padding: 0 16px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-btn {
    display: none;
    /* Hide on mobile navbar, will be accessible in page */
  }

  .hero {
    background-image: linear-gradient(to top, rgba(10, 10, 12, 0.98) 30%, rgba(10, 10, 12, 0.5) 100%), url('foto/IMG_0753.jpg');
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .area-selector {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 24px;
  }

  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* PHOTO GALLERY STYLES */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--raccano-yellow);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--raccano-yellow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

/* Lightbox responsivity */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }
}