/* ═══════════════════════════════════════════════
   LA INDIKA — SHARED STYLESHEET
   Used by: index.html, about.html, menu.html,
            contact.html, blog.html
   ═══════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7830;
  --cream: #FAF6EE;
  --deep: #0E0A04;
  --charcoal: #1C1610;
  --warm-brown: #2E1F0F;
  --text-light: #8B7355;
  --text-medium: #4A3728;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--deep);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,10,4,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 75px;
  transition: all 0.3s ease;
}
nav.scrolled { height: 65px; background: rgba(14,10,4,0.98); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 16px; color: var(--deep); font-weight: 700;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-family: 'Cinzel', serif; font-size: 15px; color: var(--gold); letter-spacing: 2px;
}
.nav-logo-text span:last-child {
  font-size: 9px; color: var(--text-light); letter-spacing: 3px; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: all 0.3s !important;
}
.nav-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: all 0.3s;
}

.mobile-menu {
  display: none; position: fixed; top: 75px; left: 0; right: 0;
  background: rgba(14,10,4,0.98); backdrop-filter: blur(12px);
  padding: 2rem; z-index: 999; border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a {
  color: var(--cream); text-decoration: none;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); padding: 16px 36px; border-radius: 2px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; text-decoration: none; transition: all 0.3s;
  font-family: 'Raleway', sans-serif; cursor: pointer; border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }

.btn-outline {
  display: inline-block; border: 1px solid var(--gold);
  color: var(--gold); padding: 15px 36px; border-radius: 2px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; text-decoration: none; transition: all 0.3s;
  font-family: 'Raleway', sans-serif; cursor: pointer; background: none;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

/* ─── LAYOUT ─── */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.ornament-line {
  display: flex; align-items: center; gap: 12px; margin: 1.5rem 0;
}
.ornament-line::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ornament-line span { color: var(--gold); font-size: 14px; flex-shrink: 0; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 55vh; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 4rem;
  overflow: hidden; margin-top: 75px;
}
.page-hero-content { position: relative; z-index: 1; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 50px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 0 2rem; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(14,10,4,0.2); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--deep); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(14,10,4,0.65); margin-top: 6px; font-weight: 600;
}

/* ─── RESERVATION BANNER ─── */
.reservation-banner {
  padding: 100px 0;
  background:
    linear-gradient(rgba(14,10,4,0.82), rgba(14,10,4,0.82)),
    url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?w=1600&auto=format&fit=crop') center/cover fixed;
  text-align: center;
}
.reservation-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; margin-bottom: 1rem;
}
.reservation-banner p {
  color: rgba(250,246,238,0.7); font-size: 0.95rem; margin-bottom: 2.5rem;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.res-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.res-contact {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.res-contact-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.res-contact-item .label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); }
.res-contact-item .value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); }
.res-contact-item a.value { text-decoration: none; }
.res-divider { width: 1px; height: 50px; background: var(--border); }

/* ─── AREA BANNER ─── */
.area-banner { background: var(--warm-brown); padding: 60px 0; text-align: center; }
.area-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
.area-banner p { font-size: 0.88rem; color: rgba(250,246,238,0.6); margin-bottom: 1.5rem; }
.area-tags { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.area-tag {
  border: 1px solid var(--border); padding: 6px 16px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); border-radius: 1px;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--charcoal); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  padding: 2.5rem; border: 1px solid var(--border);
  background: rgba(201,168,76,0.02); position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; color: var(--gold); opacity: 0.15;
  position: absolute; top: -10px; left: 20px; line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 12px; margin-bottom: 1.2rem; letter-spacing: 3px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.7; font-style: italic;
  color: rgba(250,246,238,0.85); margin-bottom: 1.5rem;
}
.testimonial-author { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.testimonial-location { font-size: 10px; color: var(--text-light); margin-top: 2px; }

/* ─── GALLERY STRIP ─── */
.gallery-strip { padding: 0; }
.gallery-row { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1fr 0.8fr; height: 380px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,10,4,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--gold); color: var(--deep);
  padding: 1rem 1.5rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 600;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(250,246,238,0.5); line-height: 1.8; margin: 1.2rem 0; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); text-decoration: none; font-size: 13px;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.footer-col h4 {
  font-size: 10px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  color: rgba(250,246,238,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; color: rgba(250,246,238,0.5); line-height: 1.8; }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(250,246,238,0.3); }
.footer-bottom a { color: rgba(201,168,76,0.6); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-row { grid-template-columns: repeat(3, 1fr); height: 280px; }
  .gallery-row .gallery-item:nth-child(4),
  .gallery-row .gallery-item:nth-child(5) { display: none; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; height: 220px; }
  .gallery-row .gallery-item:nth-child(3) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .res-contact { gap: 1.5rem; }
  .res-divider { display: none; }
}
