/* ============================================
   SOHO LIFESTYLE - Main Stylesheet
   Christchurch Bar, Restaurant & Nightclub
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #0e1117;
  --bg-secondary: #141920;
  --bg-card: #1a2030;
  --bg-footer: #0b0e14;
  --text-primary: #ffffff;
  --text-secondary: #c4cad4;
  --text-muted: #8892a0;
  --accent: #4aaec5;
  --accent-light: #6ec3d6;
  --accent-dark: #3891a5;
  --accent-glow: rgba(74, 174, 197, 0.25);
  --gold: #4aaec5;
  --gold-light: #6ec3d6;
  --rose: #4aaec5;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --border-radius: 4px;
  --container-width: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 200;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

a:hover {
  color: var(--accent-light);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

::selection {
  background: var(--accent);
  color: var(--text-primary);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}

.section-header .accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 0 auto 20px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: left 0.4s var(--transition-smooth);
  z-index: -1;
}

.btn:hover {
  color: #fff;
  border-color: var(--accent-light);
}

.btn:hover::before {
  left: 0;
}

.btn-filled {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: transparent;
}

.btn-filled::before {
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.preloader-logo img {
  height: 60px;
  width: auto;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--bg-card);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-outline {
  width: 35px;
  height: 35px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease;
  opacity: 0.5;
}

.cursor-outline.hover {
  transform: scale(1.5);
  opacity: 1;
  border-color: var(--accent-light);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition-smooth);
}

.header.scrolled {
  background: rgba(14, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  height: 65px;
}

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

.logo img {
  height: 40px;
  width: auto;
}

.header.scrolled .logo img {
  height: 32px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text span {
  color: var(--accent);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--transition-smooth);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(14, 17, 23, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: right 0.5s var(--transition-smooth);
  z-index: 999;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(30px);
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* Stagger mobile nav items */
.mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.35s; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.9) saturate(1);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease;
  filter: brightness(0.9) saturate(1);
}

.hero-slide.active {
  opacity: 0.7;
  transform: scale(1);
}

.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.hero-dot:hover {
  border-color: var(--accent);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 17, 23, 0.35);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

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

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 200;
  color: var(--accent-light);
}

.hero-title strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  font-weight: 200;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--bg-card);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- Marquee Banner ---------- */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid rgba(74, 174, 197, 0.15);
  border-bottom: 1px solid rgba(74, 174, 197, 0.15);
  overflow: hidden;
  background: var(--bg-secondary);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-track span i {
  color: var(--accent);
  margin-right: 8px;
  font-size: 0.8rem;
}

.marquee-track span.dot {
  color: var(--accent);
  font-size: 0.5rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- About / Intro Section ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 2px;
  filter: brightness(0.9) saturate(0.9);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  border-radius: 2px;
  z-index: -1;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border-radius: 2px;
  z-index: -1;
}

.about-text h3 {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 200;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ---------- Features / What We Offer ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  padding: 50px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--transition-smooth);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition-smooth);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 174, 197, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 200;
}

/* ---------- Menu Preview ---------- */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-category {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-category h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.menu-category .category-desc {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 200;
  margin-top: 3px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 20px;
}

.menu-dots {
  flex: 1;
  margin: 0 10px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  min-width: 20px;
  align-self: center;
  margin-bottom: 5px;
}

/* ---------- Events Section ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  group: true;
}

.event-card-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth), filter 0.6s ease;
  filter: brightness(0.7) saturate(0.8);
}

.event-card:hover .event-card-image {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(1);
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(14, 17, 23, 0.95));
  transition: padding 0.4s ease;
}

.event-card:hover .event-card-overlay {
  padding-bottom: 40px;
}

.event-date {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.event-card h3 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.event-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(166, 121, 111, 0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover::after {
  background: rgba(74, 174, 197, 0.2);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* ---------- Testimonials ---------- */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots button {
  width: 30px;
  height: 3px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  background: var(--accent);
  width: 50px;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: var(--bg-secondary);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto 0;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-footer);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 200;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--text-primary);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 200;
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 200;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ---------- Page Headers (inner pages) ---------- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.4);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,10,0.5) 0%, rgba(10,11,10,0.8) 80%, var(--bg-primary) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.page-hero-content .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-hero-content .breadcrumb a {
  color: var(--accent);
}

/* ---------- About Page ---------- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 2px;
}

.story-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  padding: 25px;
  text-align: center;
  z-index: 2;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

.experience-badge .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
}

.value-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 200;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-member-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 3/4;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.5s ease;
}

.team-member:hover .team-member-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.team-member span {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Menu Page ---------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.menu-section {
  display: none;
}

.menu-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.menu-full-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: start;
}

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

.menu-full-item h4 {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.menu-full-item .desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 200;
}

.menu-full-item .tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.menu-full-item .tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(74, 174, 197, 0.3);
  color: var(--accent);
  border-radius: 2px;
}

.menu-full-item .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent);
}

/* ---------- Events Page ---------- */
.event-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.event-full:nth-child(even) {
  direction: rtl;
}

.event-full:nth-child(even) > * {
  direction: ltr;
}

.event-full:last-child {
  border-bottom: none;
}

.event-full-image {
  overflow: hidden;
  border-radius: 2px;
}

.event-full-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-full:hover .event-full-image img {
  transform: scale(1.05);
}

.event-full-content h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.event-full-content .event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.event-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-full-content p {
  color: var(--text-secondary);
  font-weight: 200;
  margin-bottom: 20px;
}

/* ---------- Gallery Page ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter button {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
  border-color: var(--accent);
  color: var(--text-primary);
}

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

.gallery-page-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-page-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(14, 17, 23, 0.8));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-page-item .overlay span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info-list {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 3px;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 200;
}

.contact-form {
  background: var(--bg-card);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 200;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

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

.opening-hours {
  margin-top: 40px;
}

.opening-hours h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hours-list li span {
  color: var(--accent);
}

/* ---------- Map Section ---------- */
.map-section {
  position: relative;
  height: 400px;
  background: var(--bg-card);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(92%) contrast(85%);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Magnetic Hover Effect ---------- */
.magnetic {
  transition: transform 0.3s var(--transition-smooth);
}

/* ---------- Text Gradient Animation ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--gold), var(--accent-light), var(--accent));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- Parallax ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* ---------- Glowing Border Effect ---------- */
.glow-border {
  position: relative;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--accent), transparent, var(--accent-light), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(8px);
}

.glow-border:hover::after {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-intro,
  .story-section,
  .event-full {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-full:nth-child(even) {
    direction: ltr;
  }

  .features-grid,
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .features-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .menu-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section {
    padding: 60px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 10px;
  }

  .gallery-filter {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

/* ---------- Smooth Scroll Snap (optional) ---------- */
@media (hover: hover) {
  .cursor-dot, .cursor-outline {
    display: block;
  }
}

@media (hover: none) {
  .cursor-dot, .cursor-outline {
    display: none;
  }
}

/* ─── Event Detail Page ─── */
.event-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.event-detail-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.event-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.event-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-detail-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.event-detail-meta-item > i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 4px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.event-detail-meta-item .meta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.event-detail-meta-item .meta-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 300;
}

.event-detail-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .event-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .event-detail-image {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .event-detail-meta {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
