:root {
  --bg-dark: #1A0E0A;
  --bg-surface: #27150F;
  --bg-card: #341D15;
  --bg-card-hover: #43261C;

  --amber: #E29E38;
  --amber-light: #F4BA65;
  --amber-dark: #A66E1D;
  --amber-glow: rgba(226, 158, 56, 0.25);

  --bordeaux: #7A2424;
  --bordeaux-light: #963030;
  --bordeaux-dark: #581818;

  --text-cream: #FAF4E8;
  --text-muted: #C8B8A2;
  --border-amber: rgba(226, 158, 56, 0.3);
  --border-subtle: rgba(250, 244, 232, 0.1);

  --font-title: 'Merriweather', 'Playfair Display', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-body: 'Outfit', 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 0 20px rgba(226, 158, 56, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-cream);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--amber-light);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

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

.section {
  padding: 4rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  text-align: center;
  color: var(--amber);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  border: 2px solid var(--amber);
  background: var(--bordeaux);
  color: var(--text-cream);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--bordeaux-light);
  border-color: var(--amber-light);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--amber);
  color: var(--amber-light);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--amber-light);
}

.btn-whatsapp {
  background: #1E6B37;
  border-color: #2F9E52;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #278846;
  border-color: #40D46C;
  box-shadow: 0 0 20px rgba(47, 158, 82, 0.4);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 14, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-amber);
  transition: var(--transition);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.nav-links {
  display: none;
  list-style: none;
}

.nav-links a {
  color: var(--text-cream);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.nav-links a:hover {
  color: var(--amber-light);
  background: rgba(226, 158, 56, 0.1);
}

.menu-toggle {
  display: block;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-surface);
  border-bottom: 2px solid var(--amber);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  gap: 0.75rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 6rem 1.25rem 4rem;
  background: linear-gradient(180deg, rgba(26, 14, 10, 0.6) 0%, rgba(26, 14, 10, 0.95) 100%),
    url('../img/0001.jpg') center/cover no-repeat;
  border-bottom: 2px solid var(--border-amber);
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--bordeaux);
  color: var(--amber-light);
  border: 1px solid var(--border-amber);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: 2.75rem;
  color: #FFFFFF;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-cream);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.history-text {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--amber);
  box-shadow: var(--shadow-sm);
}

.history-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.history-gallery,
.genuss-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .history-gallery,
  .genuss-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.genuss-gallery {
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-subtle);
  transition: var(--transition);
  background: var(--bg-card);
}

.gallery-item:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.gallery-item img,
.lightbox-trigger {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover img,
.lightbox-trigger:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.photo-caption {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(26, 14, 10, 0.88);
  color: var(--amber-light);
  border: 1px solid var(--border-amber);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  transition: var(--transition);
}

.gallery-item:hover .photo-caption {
  background: var(--bordeaux);
  color: #FFFFFF;
  border-color: var(--amber-light);
  transform: scale(1.04);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.amenity-card {
  background: var(--bg-card);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bordeaux), var(--amber));
}

.amenity-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.amenity-card h3 {
  font-size: 1.35rem;
  color: var(--text-cream);
  margin-bottom: 0.5rem;
}

.dhl-banner-card {
  background: linear-gradient(135deg, var(--bg-surface) 0%, #3a220f 100%);
  border: 2px solid #E4A025;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(228, 160, 37, 0.18);
}

@media (min-width: 768px) {
  .dhl-banner-card {
    flex-direction: row;
    align-items: center;
  }
}

.dhl-icon {
  font-size: 3.5rem;
  line-height: 1;
  padding: 1rem;
  background: rgba(228, 160, 37, 0.15);
  border-radius: var(--radius-md);
  border: 1px solid rgba(228, 160, 37, 0.4);
}

.dhl-info h3 {
  color: #F8C353;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.dhl-info p {
  color: var(--text-cream);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.dhl-badge {
  display: inline-block;
  background: var(--bordeaux-dark);
  color: var(--text-cream);
  border: 1px solid var(--amber);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.notice-card {
  background: var(--bordeaux-dark);
  border: 1px dashed var(--amber);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notice-card p {
  margin: 0;
  color: var(--text-cream);
  font-size: 0.95rem;
}

.games-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.game-zone {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-amber);
}

.game-zone h3 {
  color: var(--amber);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--bordeaux);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.game-image-box {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-subtle);
}

.game-image-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.legal-warning {
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--amber);
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-box {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  font-size: 1.15rem;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-size: 1.05rem;
  color: var(--text-cream);
  display: block;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gdpr-map-container {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-amber);
  text-align: center;
}

.map-preview {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.map-overlay {
  padding: 1.5rem;
  background: var(--bg-card);
}

.map-overlay h4 {
  color: var(--text-cream);
  margin-bottom: 0.5rem;
}

.map-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.footer {
  background: #110805;
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 2px solid var(--border-amber);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
}

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

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-surface);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bordeaux);
  border: 1px solid var(--amber);
  color: var(--text-cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: var(--bordeaux-light);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.legal-content-area {
  margin-top: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content-area h1,
.legal-content-area h2,
.legal-content-area h3 {
  color: var(--amber-light);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.legal-content-area p {
  margin-bottom: 1rem;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 6, 4, 0.94);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: var(--transition);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

#lightboxImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 3px solid var(--amber);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.85), var(--shadow-gold);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--amber-light);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.35rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .history-grid {
    grid-template-columns: 1.2fr 1fr;
  }

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

  .games-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .navbar {
    padding: 1rem 0;
  }

  .brand {
    font-size: 1.8rem;
  }
}