/* ═══════════════════════════════════════════
   The Velvet Lounge — Styles
   ═══════════════════════════════════════════ */

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

:root {
  --bg-dark: #0d0a0b;
  --bg-card: #1a1315;
  --bg-elevated: #241c1e;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-dark: #a8892e;
  --text: #f5f0eb;
  --text-muted: #a09088;
  --accent-red: #8b3a3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5em; }
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo span { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.section { padding: 6rem 0; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,10,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(13,10,11,0.95); box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13,10,11,0.6) 0%, rgba(26,19,21,0.7) 100%),
    url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(13,10,11,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 6px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold-light);
  margin: 1rem 0 2.5rem;
  font-style: italic;
  font-family: var(--font-display);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 3px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg-dark); }

/* ─── About ─── */
.about { background: var(--bg-card); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p { margin-bottom: 1.2rem; color: var(--text-muted); line-height: 1.8; }
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.about-img-bg {
  width: 100%;
  height: 400px;
  background:
    linear-gradient(135deg, var(--gold-dark), var(--gold-light)),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=800&q=80') center/cover;
  background-blend-mode: overlay;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ─── Menu ─── */
.menu { background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 30px;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  font-weight: 600;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: default;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: rgba(201,168,76,0.2); }
.menu-card-img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}
.menu-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.menu-card .menu-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.menu-card .menu-price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
}

/* ─── Gallery ─── */
.gallery { background: var(--bg-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
  padding: 0 8px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); z-index: 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ─── Reviews ─── */
.reviews {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(201,168,76,0.15); transform: translateY(-3px); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.review-text {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold-dark);
}
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-source { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Contact ─── */
.contact { background: var(--bg-card); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.5rem; line-height: 1.4; }
.contact-item h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form .btn { align-self: flex-start; }

/* ─── Footer ─── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }
.footer-links h4, .footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 0.8rem; }
.social-icons a {
  font-size: 1.5rem;
  transition: transform var(--transition);
  display: inline-block;
}
.social-icons a:hover { transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13,10,11,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 24px; }

  .about-grid,
  .contact-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .about-stats { justify-content: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
