/* ============================================
   SANZY BAR — Luxury Dark Gold Theme
   ============================================ */

:root {
  --gold: #d4af37;
  --gold-light: #f5d77e;
  --gold-dark: #9a7b1f;
  --bg-dark: #0a0a0a;
  --bg-dark-2: #121212;
  --bg-dark-3: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #b0b0b0;
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);
  --transition: cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dark), var(--gold));
  border-radius: 5px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.divider-gold {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 2rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar .logo {
  position: relative;
  z-index: 2;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .gold-text { font-size: 1.8rem; }

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--transition);
}

.logo:hover .logo-img { transform: scale(1.05); }

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  transition: all 0.3s var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(26,20,8,0.7) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1), transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
  box-shadow: 0 0 10px var(--gold);
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.3s forwards;
}

.hero-logo {
  max-width: 420px;
  width: 70%;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0;
  animation: fadeUp 1.2s var(--transition) 0.4s forwards;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(15px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  border-radius: 2px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ============================================
   ABOUT / FEATURES
   ============================================ */
.about {
  background: var(--bg-dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  aspect-ratio: 4/5;
  min-height: 500px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #1a1408;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.7));
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.15), transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: 1;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.about-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 1.3rem;
}

/* ============================================
   FEATURES CARDS
   ============================================ */
.features {
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(160deg, var(--bg-dark-3), var(--bg-dark-2));
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  transition: transform 0.5s var(--transition);
  display: block;
}

.feature-card:hover .feature-icon { transform: scale(1.2) rotate(10deg); }

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   SLIDE VIEW (Signature Cocktails)
   ============================================ */
.slider-section {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 0.7s var(--transition);
}

.slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.slide-card {
  background: linear-gradient(160deg, var(--bg-dark-3), var(--bg-dark-2));
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.slide-visual {
  background-size: cover;
  background-position: center;
  background-color: #1a1408;
  position: relative;
  overflow: hidden;
}

.slide-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.4), rgba(26,20,8,0.6));
}

.slide-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.15), transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
}

.slide-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content .slide-tag {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.slide-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.slide-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 36px;
  border-radius: 6px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--bg-dark-2);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: #1a1408;
  transition: all 0.5s var(--transition);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.3), rgba(26,20,8,0.5));
  transition: opacity 0.5s var(--transition);
}

.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.gallery-item .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.gallery-item:hover .gallery-img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.lightbox.open { display: flex; animation: fadeIn 0.3s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-content {
  max-width: 700px;
  width: 100%;
  background: linear-gradient(160deg, var(--bg-dark-3), var(--bg-dark-2));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold);
}

.lightbox-content .lb-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.lightbox-content h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lightbox-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.lightbox-close:hover { transform: rotate(90deg); }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats {
  background: linear-gradient(135deg, #0a0a0a, #1a1408);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  background: var(--bg-dark-2);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s var(--transition);
}

.contact-detail:hover {
  transform: translateX(10px);
  background: var(--bg-dark-3);
}

.contact-detail .icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.contact-detail .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.contact-detail .value {
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-form {
  background: var(--bg-dark-2);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
  color: #5fd97a;
}

.form-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #ff6b7a;
}

/* ============================================
   CAPTCHA (Spam-Schutz)
   ============================================ */
.captcha-group {
  position: relative;
}

.captcha-question {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.6rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.captcha-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   LOADING-COUNTDOWN (Submit-Button)
   ============================================ */
.btn-gold.is-loading {
  pointer-events: none;
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}

.btn-gold.is-loading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  animation: btn-loading-bar 20s linear forwards;
}

@keyframes btn-loading-bar {
  from { width: 100%; }
  to   { width: 0%; }
}

.btn-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-countdown strong {
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  min-width: 2.4rem;
  text-align: center;
}

/* ============================================
   COUNTDOWN-OVERLAY (während des Sendens)
   ============================================ */
.form-countdown-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  min-height: 320px;
  gap: 0.6rem;
}

.countdown-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: countdown-spin 0.9s linear infinite;
  margin-bottom: 0.8rem;
}

@keyframes countdown-spin {
  to { transform: rotate(360deg); }
}

.countdown-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.countdown-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.countdown-icon.ok {
  background: rgba(40, 167, 69, 0.2);
  border: 2px solid #28a745;
  color: #5fd97a;
}
.countdown-icon.err {
  background: rgba(220, 53, 69, 0.2);
  border: 2px solid #dc3545;
  color: #ff6b7a;
}

.countdown-message {
  max-width: 360px;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.countdown-message.success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
  color: #5fd97a;
}
.countdown-message.error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #ff6b7a;
}

.countdown-number {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-unit {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.countdown-bar {
  width: 100%;
  max-width: 280px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.countdown-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transition: width 1s linear;
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  padding: 0;
  position: relative;
}

.map-wrap {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: calc(100% + 60px);
  margin-bottom: -60px;
  border: 0;
  filter: none;
  display: block;
}

.map-route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: var(--gold, #d4af37);
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.map-route-btn:hover {
  background: #c9a227;
  color: #000;
}

@media (max-width: 768px) {
  .map-wrap {
    height: 380px;
  }
  .map-wrap iframe {
    height: calc(100% + 80px);
    margin-bottom: -80px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark-2);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  display: block;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom .gold-text { font-weight: 600; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 450px; margin: 0 auto 2rem; min-height: 400px; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slide-card { grid-template-columns: 1fr; }
  .slide-visual { min-height: 250px; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    transform: none;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s var(--transition);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .slide-content { padding: 2rem 1.5rem; }
}