/* =============================================
   Restaurante Alagoa - Stylesheet
   Cozinha Tradicional Portuguesa, Albufeira
   ============================================= */

/* --- CSS Variables --- */
:root {
  --ocean-dark: #1a3a4a;
  --ocean: #2c6e8a;
  --ocean-light: #4a9cb8;
  --gold: #c8952e;
  --gold-light: #e8b84a;
  --gold-glow: #f0c85a;
  --terracotta: #b85a3a;
  --terracotta-light: #d47a5a;
  --olive: #6b7a3a;
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --warm-white: #fdfcf8;
  --parchment: #f5edd6;
  --text-dark: #2a2118;
  --text-body: #4a3f32;
  --text-light: #7a7060;
  --shadow: rgba(26, 58, 74, 0.12);
  --shadow-strong: rgba(26, 58, 74, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.3;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200, 149, 46, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 149, 46, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-glow));
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--ocean-dark);
  transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 58, 74, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 4px 30px var(--shadow);
}

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

.nav-logo-img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 44px;
}

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

.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff !important;
  border: none;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-glow));
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg,
      rgba(26, 58, 74, 0.7) 0%,
      rgba(26, 58, 74, 0.5) 50%,
      rgba(26, 58, 74, 0.8) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><rect fill="%231a3a4a" width="1440" height="900"/><circle fill="%232c6e8a" cx="720" cy="450" r="600" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  background-color: var(--ocean-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 149, 46, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(44, 110, 138, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-logo {
  width: 420px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
  animation: heroLogoIn 1s ease-out;
}

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

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s ease-out 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.7s both;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  margin: 8px auto 0;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* --- Sections --- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-icon {
  font-size: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 16px auto 0;
}

/* --- About Section --- */
.about {
  background: var(--cream);
  overflow: hidden;
}

.azulejo-border {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--ocean) 0px,
    var(--ocean) 16px,
    var(--gold) 16px,
    var(--gold) 32px,
    var(--cream-dark) 32px,
    var(--cream-dark) 48px,
    var(--terracotta) 48px,
    var(--terracotta) 64px
  );
}

.azulejo-border.top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ocean-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.feature {
  text-align: center;
  padding: 32px 20px;
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-strong);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ocean-dark);
}

.feature p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Menu Section --- */
.menu-section {
  background: var(--warm-white);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 149, 46, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(44, 110, 138, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.menu-tab {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 28px;
  border: 2px solid var(--cream-dark);
  background: var(--warm-white);
  color: var(--text-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200, 149, 46, 0.3);
}

.menu-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.menu-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item {
  padding: 20px 0;
  border-bottom: 1px dashed var(--cream-dark);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-item-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--cream-dark);
  min-width: 20px;
  margin-bottom: 4px;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
  font-style: italic;
}

.menu-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-style: italic;
  font-size: 1.05rem;
}

.menu-item-name:empty ~ .menu-item-dots,
.menu-item-name:empty ~ .menu-item-price {
  display: none;
}

.menu-item-name:empty {
  display: none;
}

.menu-item:has(.menu-item-name:empty) {
  display: none;
}

/* --- Gallery Section --- */
.gallery-section {
  background: var(--cream);
  position: relative;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 24px;
  border: 2px solid var(--cream-dark);
  background: var(--warm-white);
  color: var(--text-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.gallery-filter.active {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-strong);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-item-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-style: italic;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: #fff;
  margin-top: 16px;
  font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 16px;
  transition: opacity var(--transition);
  opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

/* --- Reservations Section --- */
.reservations-section {
  background: var(--warm-white);
  position: relative;
}

.reservations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--gold), var(--terracotta), var(--ocean));
}

.reservation-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.reservation-form {
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid var(--cream-dark);
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--text-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean-light);
  box-shadow: 0 0 0 3px rgba(74, 156, 184, 0.15);
}

/* Phone input with country code */
.phone-input-group {
  display: flex;
  gap: 0;
  position: relative;
}

.phone-code-dropdown {
  position: relative;
}

.phone-code-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 12px 10px 12px 12px;
  border: 2px solid var(--cream-dark);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--cream-dark);
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
  height: 100%;
  transition: border-color var(--transition);
}

.phone-code-btn:hover {
  background: #e8e0d0;
}

.phone-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
}

.phone-code-arrow {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-left: 2px;
}

.phone-code-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  background: var(--warm-white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px var(--shadow-strong);
  z-index: 100;
  margin-top: 4px;
}

.phone-code-list.open {
  display: block;
}

.phone-code-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 0.9rem;
}

.phone-code-option:hover {
  background: var(--cream);
}

.phone-code-option.selected {
  background: var(--cream);
  font-weight: 700;
}

.phone-code-option img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
}

.phone-code-option .country-name {
  flex: 1;
  color: var(--text-body);
}

.phone-code-option .country-code {
  color: var(--text-light);
  font-weight: 600;
}

.phone-input-group input[type="tel"] {
  flex: 1;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  min-width: 0;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* Reservation Success */
.reservation-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px var(--shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--olive), #8aab4a);
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.reservation-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--ocean-dark);
}

.reservation-success p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.reservation-success .btn-outline {
  color: var(--ocean);
  border-color: var(--ocean);
}

.reservation-success .btn-outline:hover {
  background: var(--ocean);
  color: #fff;
}

/* --- Contact Section --- */
.contact-section {
  background: var(--ocean-dark);
  color: #fff;
}

.contact-section .section-label {
  color: var(--gold-light);
}

.contact-section .section-title {
  color: #fff;
}

.contact-section .section-divider::before,
.contact-section .section-divider::after {
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.contact-item h3 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--gold-light);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background: #0e1f28;
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-schedule h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-schedule p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: fallbackShow 0s 2s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

@keyframes fallbackShow {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hero-logo {
    width: 340px;
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ocean-dark);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 20px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .hero-tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

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

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

  .reservation-form {
    padding: 28px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 280px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .menu-tab {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
