/* ========================================
   Korona Centrum Lounge - MOBILE-FIRST CSS
   ======================================== */

/* === BASE RESET & TYPOGRAPHY === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-gold-light);
  outline: none;
}

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

address {
  font-style: normal;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary,
.btn-outlined,
.btn-cta,
.btn-submit {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--color-burgundy);
  color: white;
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background-color: var(--color-burgundy-dark);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 179, 237, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outlined {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outlined:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-dark-primary);
}

.btn-cta {
  width: max-content;
  background-color: var(--color-burgundy);
  color: white;
  border-color: var(--color-gold);
  padding: 0.875rem 1.75rem;
  min-height: 48px;
}

.btn-cta:hover {
  background-color: var(--color-burgundy-dark);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.4);
}

.btn-submit {
  width: 100%;
  background-color: var(--color-gold);
  color: var(--color-bg-dark-primary);
  border-color: var(--color-gold);
  font-weight: 700;
}

.btn-submit:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gold);
  height: 64px;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}

.logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-gold);
  width: max-content;
}

.logo-icon {
  flex-shrink: 0;
}

/* Navigation - Mobile First */
.header-nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.header-nav.active {
  transform: translateX(0);
}

.nav-menu {
  list-style: none;
  padding: 2rem 1rem;
}

.nav-menu li {
  margin-bottom: 1rem;
}

.nav-link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  color: white;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-icon {
  width: 24px;
  height: 24px;
}

[data-theme="light"] .theme-icon-dark {
  display: none;
}

[data-theme="light"] .theme-icon-light {
  display: block;
}

.theme-icon-light {
  display: none;
}

.theme-icon-dark {
  display: block;
}

.btn-cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* === SECTION COMMON STYLES === */
section {
  padding: 3rem 1rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Policy / Legal pages */
.policy-page {
  padding: 3rem 1rem;
  min-height: 60vh;
}

.policy-content h1 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.policy-content .policy-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.policy-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === ENTERTAINMENT SECTION === */
.entertainment-section {
  background-color: #0f0f0f;
  background-image:
    linear-gradient(45deg, rgba(26, 54, 93, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(26, 54, 93, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(26, 54, 93, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(26, 54, 93, 0.05) 75%);
  background-size: 20px 20px;
  background-position:
    0 0,
    0 10px,
    10px -10px,
    -10px 0px;
}

.entertainment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.entertainment-card {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(42, 42, 42, 0.95) 100%
  );
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.entertainment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(99, 179, 237, 0.2);
  border-color: var(--color-gold-light);
}

.card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.entertainment-card h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-align: center;
}

.entertainment-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
}

.card-features li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.card-features li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem 1rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 8px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(42, 42, 42, 0.5);
  border-radius: 4px;
  border: 1px solid rgba(99, 179, 237, 0.3);
}

.trust-content {
  display: flex;
  flex-direction: column;
}

.trust-content strong {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-content span {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

/* Entertainment Content */
.entertainment-content {
  background-color: rgba(26, 26, 26, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.entertainment-content h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.entertainment-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* === ATMOSPHERE SECTION === */
.atmosphere-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
}

.atmosphere-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.atmosphere-text {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.atmosphere-text h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.atmosphere-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.atmosphere-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.atmosphere-image img {
  width: 100%;
  height: auto;
  filter: brightness(0.9) contrast(1.1);
}

/* Testimonial Box */
.testimonial-box {
  background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.2) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  border-left: 4px solid var(--color-gold);
  padding: 2rem 1.5rem;
  margin: 3rem 0;
  border-radius: 8px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

cite {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

.atmosphere-content {
  background-color: rgba(26, 26, 26, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.atmosphere-content h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.atmosphere-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* === LOCATION SECTION === */
.location-section {
  background-color: #1a1a1a;
}

.location-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.address-block h3,
.hours-block h3,
.transport-accordion h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.address-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.address-main {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(99, 179, 237, 0.2);
}

.hours-table td {
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.hours-time {
  text-align: right;
  color: var(--color-gold);
  font-weight: 600;
}

.hours-table tr.weekend td {
  color: var(--text-primary);
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(99, 179, 237, 0.3);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.8);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-trigger:hover {
  background-color: rgba(42, 42, 42, 0.8);
}

.accordion-trigger span {
  flex: 1;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] + .accordion-content {
  max-height: 500px;
}

.accordion-content > div {
  padding: 1rem;
  background-color: rgba(15, 15, 15, 0.8);
}

.accordion-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.accordion-content ul {
  list-style: none;
  padding-left: 0;
}

.accordion-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  position: relative;
}

.accordion-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* Facilities Info */
.facilities-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 4px;
  color: var(--text-secondary);
}

/* Location Content */
.location-content {
  background-color: rgba(26, 26, 26, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.location-content h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.location-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Location CTA Banner */
.location-cta-banner {
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-burgundy-dark) 100%
  );
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--color-gold);
}

.location-cta-banner h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.location-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* === CONTACT SECTION === */
.contact-section {
  background-color: #0a0a0a;
  border-top: 2px solid var(--color-gold);
}

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

/* Contact Form */
.contact-form {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(99, 179, 237, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid rgba(99, 179, 237, 0.3);
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
  text-align: center;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block h3,
.social-block h3,
.hours-contact-block h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 4px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--text-secondary);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.social-icons svg {
  transition: all 0.3s ease;
}

.social-icons a:hover svg rect,
.social-icons a:hover svg path {
  stroke: var(--color-gold-light);
  fill: var(--color-gold-light);
}

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

.hours-table-compact tr {
  border-bottom: 1px solid rgba(99, 179, 237, 0.2);
}

.hours-table-compact td {
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.hours-table-compact td:last-child {
  text-align: right;
  color: var(--color-gold);
  font-weight: 600;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  margin: 3rem 0;
}

.faq-section h3 {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(99, 179, 237, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-trigger:hover {
  background-color: rgba(42, 42, 42, 0.5);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-trigger[aria-expanded="true"] + .faq-content {
  max-height: 800px;
}

.faq-content p {
  padding: 0 1rem 1.25rem 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Contact Content */
.contact-content {
  background-color: rgba(26, 26, 26, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-content h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.contact-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Trust Logos */
.trust-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem 1rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 8px;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(42, 42, 42, 0.5);
  border-radius: 4px;
  border: 1px solid rgba(99, 179, 237, 0.2);
}

.trust-logo-item span {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Mobile CTA Sticky */
.mobile-cta-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(26, 54, 93, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--color-gold);
  z-index: 999;
  display: block;
}

.btn-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background-color: var(--color-gold);
  color: var(--color-bg-dark-primary);
  font-weight: 700;
  border-radius: 4px;
  font-size: 1.125rem;
}

/* === FOOTER === */
footer {
  background-color: #000000;
  border-top: 2px solid var(--color-gold);
  padding: 3rem 1rem 1rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(99, 179, 237, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: var(--color-gold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.footer-hours tr {
  border-bottom: 1px solid rgba(99, 179, 237, 0.1);
}

.footer-hours td {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-hours td:last-child {
  text-align: right;
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

/* Footer Trust */
.footer-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(99, 179, 237, 0.2);
  border-bottom: 1px solid rgba(99, 179, 237, 0.2);
}

.trust-badge-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 4px;
}

.trust-badge-footer span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-legal-links a {
  color: var(--text-secondary);
}

.footer-legal-links .separator {
  color: var(--text-tertiary);
}

.footer-warning {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.helpline-link {
  color: var(--color-gold);
  font-weight: 600;
}

/* === TABLET BREAKPOINT (768px) === */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.875rem;
  }

  header {
    height: 80px;
  }

  .header-nav {
    position: static;
    transform: none;
    height: auto;
    background: none;
    backdrop-filter: none;
  }

  .nav-menu {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 2rem;
  }

  .nav-menu li {
    margin-bottom: 0;
  }

  .nav-link {
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .btn-cta {
    display: inline-block;
  }

  .hero-text h1 {
    font-size: 3.25rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  section {
    padding: 5rem 2rem;
  }

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

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

  .atmosphere-block {
    flex-direction: row;
    align-items: center;
  }

  .atmosphere-left {
    flex-direction: row;
  }

  .atmosphere-right {
    flex-direction: row-reverse;
  }

  .atmosphere-text,
  .atmosphere-image {
    flex: 1;
  }

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

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

  .mobile-cta-sticky {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

/* === DESKTOP BREAKPOINT (1024px) === */
@media (min-width: 1024px) {
  h1 {
    font-size: 3.25rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .entertainment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-logos {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-brand {
    grid-column: auto;
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === LARGE DESKTOP (1280px+) === */
@media (min-width: 1280px) {
  .header-container {
    padding: 0 2rem;
  }

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

  .hero-subtitle {
    font-size: 2.5rem;
  }
}

/* === ACCESSIBILITY === */
*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
