/* style.css - Eddy Barber Shop Design System (Dominican Vibe & Multi-Language) */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Eddys Barbershop Brand Colors — extracted from actual shop imagery */
  --bg-dark: hsl(20, 5%, 7%);         /* Near-black charcoal — dark textured backdrop */
  --bg-mid: hsl(20, 5%, 11%);         /* Dark stone mid-tone */
  --bg-dark-card: hsla(20, 8%, 13%, 0.82);
  --bg-dark-card-hover: hsla(20, 8%, 18%, 0.90);
  
  /* Accent Colors — from logo and flyer typography */
  --accent-gold: hsl(41, 58%, 53%);        /* Antique metallic gold — "UNSERE LEISTUNGEN" text */
  --accent-gold-light: hsl(41, 72%, 68%);  /* Lighter warm gold for highlights */
  --accent-gold-glow: hsla(41, 58%, 53%, 0.30);
  --accent-gold-dark: hsl(38, 55%, 35%);   /* Deeper gold for depth */
  
  /* Classic Barber Pole Colors */
  --accent-red: hsl(0, 72%, 44%);          /* Classic barber pole red */
  --accent-red-glow: hsla(0, 72%, 44%, 0.28);
  
  --accent-blue: hsl(222, 72%, 38%);       /* Classic barber pole blue */
  --accent-blue-glow: hsla(222, 72%, 38%, 0.25);

  /* Logo badge tan/cream border */
  --accent-cream: hsl(35, 35%, 72%);       /* Cream/tan badge border */
  
  --text-light: hsl(35, 15%, 95%);         /* Near-white, warm tinted */
  --text-muted: hsl(30, 8%, 65%);
  --text-dark: hsl(20, 5%, 7%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 40%, var(--accent-gold-dark) 100%);
  --gradient-pole: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-red) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(20, 5%, 5%) 0%, var(--bg-dark) 100%);
  --gradient-card: linear-gradient(160deg, hsla(20, 8%, 15%, 0.9) 0%, hsla(20, 5%, 9%, 0.95) 100%);
  
  /* Legacy aliases (so older CSS still works) */
  --gradient-sun: var(--gradient-gold);
  --gradient-latino: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
  --gradient-flag: var(--gradient-pole);

  /* Layout and UI Tokens */
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-gold: 0 8px 32px 0 var(--accent-gold-glow);
  --shadow-blue: 0 8px 32px 0 var(--accent-blue-glow);
  --glass-border: 1px solid hsla(41, 58%, 53%, 0.15);
  --glass-border-hover: 1px solid hsla(41, 58%, 53%, 0.40);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Warm Gold ambient glow — top right */
body::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -8%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, hsla(41, 58%, 53%, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Barber pole red ambient glow — bottom left */
body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, hsla(0, 72%, 44%, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-blue {
  color: var(--accent-blue);
  background: var(--gradient-latino);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 600;
  display: inline-block;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-sun);
  border-radius: 2px;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

/* Gold glow on card hover */
.glass-panel:hover {
  border: 1px solid hsla(41, 58%, 53%, 0.35);
  box-shadow: 0 12px 36px -8px hsla(41, 58%, 53%, 0.18),
              0 4px 16px -4px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* Sleek Latino Barbershop Line divider details */
.barber-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent-blue) 0px,
    var(--accent-blue) 8px,
    var(--text-light) 8px,
    var(--text-light) 16px,
    var(--accent-red) 16px,
    var(--accent-red) 24px,
    var(--text-light) 24px,
    var(--text-light) 32px
  );
  opacity: 0.12;
  pointer-events: none;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: hsl(20, 5%, 7%);
  box-shadow: 0 4px 20px hsla(41, 58%, 53%, 0.25);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px hsla(41, 58%, 53%, 0.4);
}



.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid hsla(41, 58%, 53%, 0.45);
}

.btn-secondary:hover {
  background: hsla(41, 58%, 53%, 0.12);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  height: 62px;
  background: rgba(10, 9, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 hsla(41, 58%, 53%, 0.12), 0 4px 24px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid hsla(41, 58%, 53%, 0.10);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.05) drop-shadow(0 0 8px hsla(41, 58%, 53%, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

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

.logo:hover .logo-img {
  transform: scale(1.05);
  filter: brightness(1.15) drop-shadow(0 0 14px hsla(41, 58%, 53%, 0.45));
}

/* Fallback text if logo image fails to load */
.logo-text-fallback {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  display: none; /* hidden when logo image loads */
}

.logo-img.errored + .logo-text-fallback {
  display: block;
}

.logo-sub {
  color: var(--accent-gold);
}

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

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: hsl(30, 8%, 55%);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language selector */
.lang-selector-wrapper {
  position: relative;
  cursor: pointer;
}

.lang-selected-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid hsla(41, 58%, 53%, 0.2);
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.lang-selected-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(247, 185, 40, 0.15);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: hsl(220, 20%, 12%);
  border: 1px solid rgba(247, 185, 40, 0.2);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  list-style: none;
  min-width: 150px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  overflow: hidden;
}

/* CSS hover fallback */
.lang-selector-wrapper:hover .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* JS-managed class for hover-with-delay */
.lang-dropdown.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Invisible bridge — fills gap between button and dropdown so cursor can cross */
.lang-selector-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 12px;
}

.lang-option {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.lang-option:hover {
  background: rgba(247, 185, 40, 0.15);
  color: var(--accent-gold);
}

.lang-option.active {
  color: var(--accent-gold);
  font-weight: 800;
  background: rgba(247, 185, 40, 0.08);
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-code-text {
  display: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, hsl(20, 8%, 10%) 0%, var(--bg-dark) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: hsla(41, 58%, 53%, 0.06);
  border: 1px solid hsla(41, 58%, 53%, 0.18);
  color: var(--accent-gold);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.hero-tag i {
  animation: pulse-sun 2s infinite;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: hsl(30, 8%, 58%);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-badge-sun {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, hsla(42, 95%, 55%, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  animation: spin-slow 25s linear infinite;
}

.hero-image-card {
  width: 100%;
  max-width: 380px;
  height: 480px;
  border-radius: var(--border-radius-lg);
  border: var(--glass-border);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  position: relative;
}

.hero-img-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, hsl(20, 8%, 13%) 0%, hsl(20, 5%, 8%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  transition: var(--transition-smooth);
}

.hero-image-card:hover .hero-img-fallback {
  transform: scale(1.05);
}

.hero-img-label {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
  text-shadow: 0 0 10px var(--accent-gold-glow);
}

.hero-img-sub {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 2px;
  opacity: 0.8;
}

/* --- STATS BAR --- */
.stats-bar {
  background: hsla(20, 6%, 9%, 0.92);
  border-top: 1px solid hsla(41, 58%, 53%, 0.10);
  border-bottom: 1px solid hsla(41, 58%, 53%, 0.10);
  padding: 24px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(247, 185, 40, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- ABOUT SECTION (DOMINICAN VIBE) --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo-card {
  aspect-ratio: 4/5;
  border-radius: var(--border-radius-lg);
  border: var(--glass-border);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-card:hover .about-photo-img {
  transform: scale(1.04);
}

.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: var(--text-primary);
}

.about-photo-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--accent-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-photo-caption p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
}

.about-feature-icon {
  font-size: 24px;
  color: var(--accent-gold);
  margin-top: 4px;
}

.about-feature-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-light);
}

.about-feature-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- SERVICES & MENU --- */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  list-style: none;
}

.tab-btn {
  background: rgba(14, 18, 26, 0.6);
  border: var(--glass-border);
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gradient-sun);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(247, 185, 40, 0.25);
}

.menu-container {
  display: none;
}

.menu-container.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  animation: fadeIn 0.6s ease forwards;
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--border-radius);
  background: var(--bg-dark-card);
  border: var(--glass-border);
  transition: var(--transition-smooth);
}

.menu-item:hover {
  transform: translateY(-3px);
  border-color: hsla(42, 95%, 55%, 0.35);
  box-shadow: -4px 4px 15px -2px hsla(220, 90%, 50%, 0.15), 
               4px -4px 15px -2px hsla(355, 85%, 50%, 0.15);
}

.menu-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.menu-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.menu-dots {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(247, 185, 40, 0.2);
  margin: 0 15px;
}

.menu-price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--accent-gold);
}

.menu-description {
  font-size: 14px;
  color: var(--text-muted);
}

.menu-footer-cta {
  text-align: center;
  margin-top: 50px;
}

/* --- LATINO LOUNGE EXPERIENCE (PERKS) --- */
.lounge-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(180deg, var(--bg-dark-card) 0%, rgba(14, 18, 26, 0.4) 100%);
}

.experience-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(247, 185, 40, 0.08);
  border: 1px solid rgba(247, 185, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 32px;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.experience-card:hover .experience-icon {
  background: var(--gradient-sun);
  color: var(--text-light);
  border-color: transparent;
  transform: rotateY(180deg);
  box-shadow: 0 0 20px rgba(247, 185, 40, 0.3);
}

.experience-title {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.experience-desc {
  font-size: 14px;
  color: var(--text-muted);
}

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  border: var(--glass-border);
  cursor: pointer;
  background: linear-gradient(135deg, #0e1422 0%, #05070c 100%);
}

.gallery-visual {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
  transition: var(--transition-smooth);
}

.gallery-visual i {
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  opacity: 0.6;
}

.gallery-visual span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 90, 50, 0.12);
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-visual {
  transform: scale(1.05);
  color: var(--text-light);
}

.gallery-item:hover .gallery-visual i {
  opacity: 1;
  transform: translateY(-5px);
  color: var(--accent-gold);
  text-shadow: 0 0 10px var(--accent-gold-glow);
}

/* --- CONTACT & HOURS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--border-radius);
}

.contact-icon {
  font-size: 24px;
  color: var(--accent-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(247, 185, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-details p {
  font-size: 15px;
  color: var(--text-muted);
}

.contact-details a:hover {
  color: var(--accent-gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 185, 40, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text-light);
}

.hours-time {
  color: var(--text-muted);
}

.hours-time.closed {
  color: var(--accent-red);
  font-weight: 600;
}

.map-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  border: var(--glass-border);
  box-shadow: var(--shadow-blue);
}

/* --- FOOTER --- */
.footer {
  background: hsl(220, 25%, 4%);
  border-top: var(--glass-border);
  padding: 80px 0 30px;
  position: relative;
  z-index: 10;
}

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

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

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 360px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-card);
  border: 1px solid rgba(247, 185, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--gradient-sun);
  color: var(--text-light);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(247, 185, 40, 0.3);
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 185, 40, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

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

/* --- INTERACTIVE BOOKING MODAL --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: var(--glass-border);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  background: var(--bg-dark-card);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-light);
  text-align: center;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.form-control {
  background: rgba(14, 18, 26, 0.7);
  border: 1px solid rgba(247, 185, 40, 0.2);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(247, 185, 40, 0.15);
}

select.form-control option {
  background: var(--bg-dark);
  color: var(--text-light);
}

.booking-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 60px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  animation: pulse-sun 2s infinite;
}

.success-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.success-text {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 30px;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-sun {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* --- GALLERY PHOTO STYLES --- */
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: var(--text-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.08);
}

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

/* --- TEAM SECTION --- */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  width: 300px;
  text-align: center;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  padding: 0;
}

.team-photo-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.04);
}

.team-info {
  padding: 28px;
}

.team-name {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.team-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- HERO LOGO BLEND --- */
.hero-logo-large {
  mix-blend-mode: screen;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .about-grid, .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-tag {
    margin-bottom: 20px;
  }
  .hero-description {
    margin: 0 auto 35px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin-top: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(247, 185, 40, 0.15);
    padding-bottom: 20px;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: 2;
  }
  .about-content {
    order: 1;
    text-align: center;
  }
  .about-features {
    text-align: left;
  }
  .menu-container.active {
    grid-template-columns: 1fr;
  }
  .lounge-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-card {
    min-height: 300px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 75px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: hsl(220, 25%, 7%);
    flex-direction: column;
    padding: 60px 40px;
    align-items: flex-start;
    gap: 30px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(247, 185, 40, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .nav-cta {
    display: none;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .modal-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-bottom: 1px solid rgba(247, 185, 40, 0.15);
    padding-bottom: 20px;
    border-right: none !important;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
