/* ================================================================
   ALOHA RESTO CAFÉ — Main Stylesheet
   Palette: #cfa670 (gold), #1b1b1b (dark), #fff (white)
   ================================================================ */

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

:root {
  --gold: #cfa670;
  --gold-dark: #b8905c;
  --dark: #1b1b1b;
  --dark2: #262626;
  --text: #444;
  --text-light: #777;
  --bg: #fff;
  --bg-light: #faf8f5;
  --bg-dark: #1b1b1b;
  --border: #e8e0d5;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', Arial, sans-serif;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

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

.text-center { text-align: center; }

/* --- PRELOADER --- */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.preloader-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(207,166,112,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207,166,112,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-block { width: 100%; justify-content: center; }

/* --- HEADER / NAVBAR --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(27,27,27,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar { padding: 0; }
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header.scrolled .navbar-container { height: 65px; }

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 50px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}
.logo-text {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.2;
}
.logo-aloha { color: var(--gold); font-size: 1.6rem; font-weight: 700; }

.navbar-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { left: 14%; right: 14%; }
.nav-link.active { color: var(--gold); }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Lang switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-sep { color: rgba(255,255,255,0.3); }
.lang-btn {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--gold);
  background: rgba(207,166,112,0.15);
}

.btn-reservation {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-reservation:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark2);
  padding: 100px 30px 40px;
  transition: right 0.4s ease;
  z-index: 999;
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); background: rgba(207,166,112,0.1); }
.mobile-lang { margin-top: 30px; display: flex; gap: 12px; }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,27,27,0.75) 0%, rgba(27,27,27,0.5) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  background: rgba(207,166,112,0.2);
  border: 1px solid rgba(207,166,112,0.5);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

.hero-shape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-shape svg { display: block; width: 100%; }

/* --- SECTIONS COMMON --- */
.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.title-divider {
  margin: 16px 0 24px;
}
.title-divider span {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.title-divider.centered span { margin: 0 auto; }
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-header { margin-bottom: 60px; }

/* --- ABOUT --- */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 700;
}
.about-badge i { font-size: 1.4rem; display: block; margin-bottom: 6px; }

.about-subtitle {
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-style: italic;
}
.about-description { color: var(--text); margin-bottom: 24px; }

.about-offerings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.about-offerings li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}
.about-offerings li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

.about-address {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  margin-bottom: 32px;
  font-weight: 600;
}
.about-address i { color: var(--gold); }

.about-stats {
  display: flex;
  gap: 32px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* --- MENU --- */
.menu-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.section-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(207,166,112,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.menu-card.hidden { display: none; }
.menu-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.menu-card-img {
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body { padding: 20px; }
.menu-card-header {
  margin-bottom: 8px;
}
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}
.menu-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-price small { font-size: 0.65rem; font-weight: 400; opacity: 0.8; }
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- GALLERY --- */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(207,166,112,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay i { color: #fff; font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- PARALLAX BANNER --- */
.parallax-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(27,27,27,0.75);
}
.parallax-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
}
.parallax-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.parallax-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.parallax-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* --- REVIEWS --- */
.reviews-section { background: var(--bg-light); }
.reviews-swiper { padding: 20px 60px 60px; }
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(207,166,112,0.15);
  line-height: 1;
}
.review-stars { margin-bottom: 16px; display: flex; gap: 4px; }
.star-filled { color: #f5b800; }
.star-empty { color: #ddd; }
.review-comment {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initials {
  width: 100%;
  height: 100%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.review-info strong { display: block; color: var(--dark); font-size: 0.95rem; }
.review-info span { color: var(--text-light); font-size: 0.8rem; }

/* Swiper customization */
.swiper-button-prev, .swiper-button-next {
  color: var(--gold) !important;
  width: 44px !important; height: 44px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1rem !important; font-weight: 700 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

.facebook-reviews-note {
  margin-top: 48px;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.facebook-reviews-note i { color: #1877F2; font-size: 1.1rem; }
.facebook-reviews-note a { color: #1877F2; font-weight: 600; }
.facebook-reviews-note a:hover { text-decoration: underline; }

/* --- CONTACT --- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(207,166,112,0.1);
  border: 1px solid rgba(207,166,112,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-item p { color: var(--dark); font-weight: 500; }
.contact-info-item a { color: var(--dark); }
.contact-info-item a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.contact-social a {
  width: 42px; height: 42px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  transition: all var(--transition);
}
.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.contact-form-wrap {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group {
  position: relative;
  display: flex;
  align-items: center;
}
.form-group label {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
  pointer-events: none;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-group textarea { padding-left: 16px; resize: vertical; align-self: stretch; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207,166,112,0.15);
}
.form-group.full { display: block; margin-bottom: 20px; }
.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe { display: block; }

/* --- FOOTER --- */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* --- FACEBOOK WIDGET (footer) --- */
.footer-facebook h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-facebook h4 i { color: #1877F2; }

.fb-page span, .fb-page iframe {
  border-radius: var(--radius) !important;
  max-width: 100% !important;
}

/* Fallback affiché tant que le SDK n'est pas chargé */
.fb-fallback {
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
.fb-fallback i { color: #1877F2; margin-bottom: 12px; display: block; }
.fb-fallback p { font-size: 0.9rem; margin-bottom: 16px; }
.btn-fb-link {
  display: inline-block;
  background: #1877F2;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-fb-link:hover { background: #1558b0; color: #fff; }

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(207,166,112,0.4);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* Hero animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 600px; margin: 0 auto; }
  .about-img-secondary { width: 160px; right: -10px; bottom: -10px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-facebook { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .navbar-menu, .btn-reservation { display: none; }
  .hamburger { display: flex; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .about-stats { gap: 20px; }
  .reviews-swiper { padding: 10px 10px 50px; }
  .swiper-button-prev { left: 0 !important; }
  .swiper-button-next { right: 0 !important; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) {
    grid-column: auto; aspect-ratio: 4/3;
  }
  .hero-title { font-size: 1.8rem; }
  .contact-form-wrap { padding: 24px; }
  .about-stats { flex-direction: column; gap: 16px; }
}
