/* Spaindailynewplaces - Dark theme like nyxalvo.com */
/* Deep navy, golden accents */

:root {
  --bg: #1a2538;
  --bg-card: #1e2d42;
  --bg-card-alt: #243447;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #d4af37;
  --accent-gold: #eab308;
  --accent-light: #f5d76e;
  --border: #334155;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.5);
  --font-sans: 'Lato', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Top Bar - golden like nyxalvo */
.top-bar {
  background: var(--accent-gold);
  color: #1a2538;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar a {
  color: #1a2538;
}

.top-bar-left,
.top-bar-right {
  white-space: nowrap;
}

/* Main Nav - dark */
.main-nav {
  background: var(--bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.logo-link:hover {
  color: var(--accent);
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,37,56,0.5) 0%, rgba(26,37,56,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 2rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 em {
  font-style: italic;
}

.hero-tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent-gold);
  color: #1a2538;
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--bg);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Section labels */
.section-label {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Intro Section - dark */
.intro-section {
  padding: 4rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.intro-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.3;
}

.intro-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.intro-photo {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 100%;
  height: auto;
}

.intro-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-card h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: var(--text);
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.stat-icon i {
  display: block;
}

.stat-num {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

.stat-age {
  font-weight: 700;
  color: var(--accent);
}

/* Establishments */
.establishments-section {
  padding: 4rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.establishments-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.venue-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
  border: 1px solid var(--border);
}

.venue-card:hover {
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--border);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-gold);
  color: #1a2538;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
}

.card-body {
  padding: 1.5rem;
}

.card-meta,
.card-location {
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-block;
}

.card-location::before {
  content: ' · ';
}

.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--text);
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-tags span {
  background: var(--bg);
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 6px;
  color: var(--accent);
  border: 1px solid var(--border);
}

/* Beyond Section */
.beyond-section {
  padding: 4rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.beyond-section .section-label {
  display: block;
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.beyond-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.beyond-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.beyond-photo {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 100%;
  height: auto;
}

.beyond-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.feature-icon {
  color: var(--accent);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.feature-icon i {
  display: block;
}

.feature-item h4 {
  font-size: 0.95rem;
  color: var(--text);
}

/* Safe Gambling */
.safe-gambling {
  padding: 3rem 0;
  background: var(--bg);
}

.safe-gambling h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--text);
}

.safe-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.gambling-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.gambling-logos .logo-wrap,
.gambling-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gambling-logos img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.1);
}

.logo-placeholder {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0f1729 0%, #1a2538 100%);
  color: var(--text-muted);
  padding: 0 0 2rem;
  margin-top: 4rem;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent) 50%, var(--accent-gold) 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
  padding: 3rem 0;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-serif);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact i {
  color: var(--accent);
  font-size: 0.85rem;
  width: 1rem;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: var(--radius);
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.footer-age i {
  font-size: 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.footer-copy {
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal-links a {
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-dot {
  color: var(--border);
  font-weight: bold;
}

/* Popups */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup[aria-hidden="false"] {
  display: flex;
}

.popup-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 400px;
  text-align: center;
  border: 1px solid var(--border);
}

.popup-content h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.popup-content p {
  color: var(--text-muted);
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  color: var(--text);
  padding: 1rem 1.5rem;
  z-index: 9998;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-banner[aria-hidden="false"] {
  display: flex;
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-buttons .btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-buttons .btn-secondary:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Page content */
.page-hero {
  padding: 3rem 0;
  background: var(--bg-card);
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
}

.page-hero p {
  color: var(--text-muted);
}

.page-content {
  padding: 3rem 0;
  background: var(--bg);
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.page-content ul {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    transition: right 0.3s;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .intro-grid,
  .beyond-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .beyond-features {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-age {
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .gambling-logos {
    flex-direction: column;
  }

  .top-bar .header-container {
    flex-direction: column;
    gap: 0.25rem;
  }

  .top-bar {
    font-size: 0.75rem;
  }
}
