/* style.css - Haaratelier by Eddy Design System */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-light: #FAF7F2;
  --bg-mid: #F5F0E8;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFBF8;

  --accent-gold: #B9986A;
  --accent-gold-light: #C9AD82;
  --accent-gold-glow: hsla(35, 38%, 57%, 0.25);
  --accent-gold-dark: #8A7340;

  --accent-warm: #C4A882;
  --accent-warm-glow: hsla(35, 38%, 57%, 0.15);

  --text-dark: #2B2723;
  --text-light: #2B2723;
  --text-muted: #6B6560;
  --text-subtle: #9A948C;

  --gradient-gold: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  --gradient-light: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
  --gradient-card: linear-gradient(160deg, #FFFFFF 0%, var(--bg-mid) 100%);

  --gradient-sun: var(--gradient-gold);
  --gradient-latino: var(--gradient-gold);
  --gradient-flag: var(--gradient-gold);
  --gradient-dark: var(--gradient-light);
  --gradient-pole: var(--gradient-gold);

  --accent-blue: #5B8DB8;
  --accent-blue-glow: hsla(210, 35%, 54%, 0.15);
  --accent-red: #C45C4A;
  --accent-red-glow: hsla(10, 48%, 53%, 0.12);
  --accent-cream: #E8E0D4;

  --bg-dark: var(--bg-light);
  --bg-dark-card: var(--bg-card);
  --bg-dark-card-hover: var(--bg-card-hover);

  --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-soft: 0 4px 24px rgba(43, 39, 35, 0.08);
  --glass-border: 1px solid hsla(35, 38%, 57%, 0.2);
  --glass-border-hover: 1px solid hsla(35, 38%, 57%, 0.45);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -8%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, hsla(35, 38%, 57%, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  display: none;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --- 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: 'Jost', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 500;
  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-card);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.glass-panel:hover {
  border: 1px solid hsla(35, 38%, 57%, 0.35);
  box-shadow: 0 12px 36px -8px hsla(35, 38%, 57%, 0.15),
              0 4px 16px -4px rgba(43, 39, 35, 0.06);
  transform: translateY(-4px);
}

.barber-divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.4;
  pointer-events: none;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Jost', 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(--accent-gold);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--accent-gold-glow);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-gold-dark);
  box-shadow: 0 8px 28px var(--accent-gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid hsla(35, 38%, 57%, 0.45);
}

.btn-secondary:hover {
  background: hsla(35, 38%, 57%, 0.08);
  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(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 hsla(35, 38%, 57%, 0.12), 0 4px 24px rgba(43, 39, 35, 0.06);
  border-bottom: 1px solid hsla(35, 38%, 57%, 0.15);
}

.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;
  transition: transform 0.3s ease;
}

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

.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-text-fallback {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: none;
}

.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: 'Jost', 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;
}

.lang-selected-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid hsla(35, 38%, 57%, 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);
  pointer-events: none;
}

.lang-selector-wrapper:hover .lang-selected-btn {
  border-color: var(--accent-gold);
  background: hsla(35, 38%, 57%, 0.08);
}

/* Invisible bridge so hover stays active while moving to the menu */
.lang-selector-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid hsla(35, 38%, 57%, 0.25);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  list-style: none;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 100;
  overflow: hidden;
  padding: 4px 0;
}

.lang-selector-wrapper:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.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: hsla(35, 38%, 57%, 0.1);
  color: var(--accent-gold);
}

.lang-option.active {
  color: var(--accent-gold);
  font-weight: 700;
  background: hsla(35, 38%, 57%, 0.06);
}

.lang-flag {
  font-size: 15px;
}

.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%, var(--bg-mid) 0%, var(--bg-light) 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(35, 38%, 57%, 0.06);
  border: 1px solid hsla(35, 38%, 57%, 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: var(--text-muted);
  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, var(--bg-mid) 0%, var(--bg-light) 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: 'Cormorant Garamond', 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-muted);
  letter-spacing: 0.2em;
  opacity: 0.9;
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid hsla(35, 38%, 57%, 0.15);
  border-bottom: 1px solid hsla(35, 38%, 57%, 0.15);
  padding: 24px 0;
  z-index: 10;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.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: 'Cormorant Garamond', 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);
  background: linear-gradient(135deg, #101622 0%, #080a10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.about-photo-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px dashed rgba(247, 185, 40, 0.3);
  border-radius: var(--border-radius);
  color: var(--accent-gold);
  text-align: center;
  padding: 20px;
}

.about-photo-illustration i {
  font-size: 60px;
  margin-bottom: 20px;
  background: var(--gradient-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-photo-illustration h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.about-photo-illustration p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 250px;
}

.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: var(--bg-card);
  border: var(--glass-border);
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--accent-gold);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.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(35, 38%, 57%, 0.35);
  box-shadow: 0 8px 24px rgba(43, 39, 35, 0.08);
}

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

.menu-name {
  font-family: 'Jost', 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: 'Cormorant Garamond', 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: var(--bg-card);
}

.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(--accent-gold);
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.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, var(--bg-mid) 0%, var(--bg-light) 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: 'Jost', 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(--accent-gold);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.footer-title {
  font-family: 'Jost', 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(43, 39, 35, 0.45);
  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(43, 39, 35, 0.15);
  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: var(--bg-card);
  border: 1px solid hsla(35, 38%, 57%, 0.25);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-warm-glow);
}

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: 'Cormorant Garamond', 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;
  }
}

/* --- 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;
  }
}
