/* ========================================
   NightDoor.org - Norwegian Casino Events
   Unique Aurora-Inspired Design
   ======================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nightdoor-midnight: #0D1B2A;
  --nightdoor-aurora: #5CDB95;
  --nightdoor-slate: #415A77;
  --nightdoor-pearl: #E0E1DD;
  --nightdoor-copper: #CD8C52;
  --nightdoor-radius: 18px;
  --nightdoor-shadow: 0 8px 24px rgba(13, 27, 42, 0.15);
  --nightdoor-shadow-hover: 0 12px 32px rgba(13, 27, 42, 0.25);
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--nightdoor-pearl) 0%, #f5f5f7 100%);
  color: var(--nightdoor-midnight);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

/* Header with Ribbon Navigation */
.nightdoor-header {
  background: linear-gradient(to right, var(--nightdoor-midnight), var(--nightdoor-slate));
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.2);
}

.nightdoor-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nightdoor-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--nightdoor-pearl);
  transition: transform 0.3s ease;
}

.nightdoor-logo:hover {
  transform: translateY(-2px);
}

.nightdoor-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--nightdoor-aurora);
}

.nightdoor-logo-text {
  display: flex;
  flex-direction: column;
}

.nightdoor-brand-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--nightdoor-aurora);
}

.nightdoor-tagline {
  font-size: 0.75rem;
  color: var(--nightdoor-pearl);
  opacity: 0.85;
  letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.nightdoor-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nightdoor-hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--nightdoor-aurora);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nightdoor-main-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nightdoor-nav-item {
  color: var(--nightdoor-pearl);
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: var(--nightdoor-radius);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nightdoor-nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--nightdoor-aurora);
  transition: width 0.3s ease;
}

.nightdoor-nav-item:hover::before {
  width: 80%;
}

.nightdoor-nav-item:hover {
  background: rgba(92, 219, 149, 0.1);
}

.nightdoor-nav-active {
  background: rgba(92, 219, 149, 0.2);
  border-bottom: 3px solid var(--nightdoor-aurora);
}

.nightdoor-nav-special {
  background: var(--nightdoor-aurora);
  color: var(--nightdoor-midnight);
  font-weight: 700;
}

.nightdoor-nav-special:hover {
  background: var(--nightdoor-copper);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205, 140, 82, 0.4);
}

/* Main Content Area */
.nightdoor-main {
  min-height: calc(100vh - 100px);
}

/* Hero Section - Diagonal Split */
.nightdoor-hero-diagonal {
  background: linear-gradient(145deg, var(--nightdoor-midnight) 0%, var(--nightdoor-slate) 100%);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 20px !important;
}

.nightdoor-hero-diagonal::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 219, 149, 0.15), transparent);
  border-radius: 50%;
  animation: nightdoor-glow 8s ease-in-out infinite;
}

@keyframes nightdoor-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.nightdoor-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nightdoor-hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--nightdoor-pearl);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.nightdoor-hero-highlight {
  color: var(--nightdoor-aurora);
  display: block;
  font-size: 4rem;
  text-shadow: 0 0 30px rgba(92, 219, 149, 0.5);
}

.nightdoor-hero-subtitle {
  font-size: 1.25rem;
  color: var(--nightdoor-pearl);
  margin-bottom: 3rem;
  max-width: 800px;
  line-height: 1.8;
  opacity: 0.95;
}

.nightdoor-hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nightdoor-button-primary {
  background: var(--nightdoor-aurora);
  color: var(--nightdoor-midnight);
  padding: 1.1rem 2.5rem;
  border-radius: var(--nightdoor-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(92, 219, 149, 0.3);
  border: none;
  cursor: pointer;
}

.nightdoor-button-primary:hover {
  background: var(--nightdoor-copper);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(205, 140, 82, 0.4);
}

.nightdoor-button-secondary {
  background: transparent;
  color: var(--nightdoor-pearl);
  padding: 1.1rem 2.5rem;
  border-radius: var(--nightdoor-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--nightdoor-aurora);
}

.nightdoor-button-secondary:hover {
  background: rgba(92, 219, 149, 0.15);
  border-color: var(--nightdoor-copper);
  color: var(--nightdoor-copper);
}

/* Events Section - Zigzag Layout */
.nightdoor-events-wrapper {
  max-width: 1400px;
  margin: -80px auto 5rem;
  padding: 0 2.5rem;
  position: relative;
  z-index: 10;
}

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

.nightdoor-section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--nightdoor-midnight);
  margin-bottom: 1rem;
}

.nightdoor-section-accent {
  color: var(--nightdoor-aurora);
}

.nightdoor-section-description {
  font-size: 1.15rem;
  color: var(--nightdoor-slate);
  max-width: 700px;
  margin: 0 auto;
}

/* Zigzag Event Cards */
.nightdoor-zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.nightdoor-event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.nightdoor-event-row:nth-child(even) {
  direction: rtl;
}

.nightdoor-event-row:nth-child(even) > * {
  direction: ltr;
}

.nightdoor-event-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--nightdoor-radius);
  box-shadow: var(--nightdoor-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nightdoor-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--nightdoor-aurora), var(--nightdoor-copper));
}

.nightdoor-event-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--nightdoor-shadow-hover);
}

.nightdoor-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--nightdoor-midnight);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nightdoor-card-emoji {
  font-size: 2rem;
  filter: grayscale(0);
}

.nightdoor-event-list {
  list-style: none;
  margin-bottom: 1.8rem;
}

.nightdoor-event-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
  color: var(--nightdoor-slate);
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.nightdoor-event-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--nightdoor-aurora);
  font-weight: bold;
}

.nightdoor-event-list li:last-child {
  border-bottom: none;
}

.nightdoor-casino-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nightdoor-casino-link {
  background: var(--nightdoor-midnight);
  color: var(--nightdoor-pearl);
  padding: 0.8rem 1.8rem;
  border-radius: var(--nightdoor-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.2);
}

.nightdoor-casino-link:hover {
  background: var(--nightdoor-aurora);
  color: var(--nightdoor-midnight);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 219, 149, 0.3);
}

/* Benefits Section - Floating Cards */
.nightdoor-benefits-section {
  background: var(--nightdoor-midnight);
  padding: 5rem 2.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.nightdoor-benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="30" y="30" fill="rgba(92,219,149,0.1)"/></svg>');
  opacity: 0.3;
}

.nightdoor-benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nightdoor-benefits-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--nightdoor-pearl);
  text-align: center;
  margin-bottom: 3.5rem;
}

.nightdoor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.nightdoor-benefit-item {
  background: rgba(224, 225, 221, 0.08);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--nightdoor-radius);
  border: 2px solid rgba(92, 219, 149, 0.2);
  transition: all 0.4s ease;
}

.nightdoor-benefit-item:hover {
  background: rgba(92, 219, 149, 0.15);
  border-color: var(--nightdoor-aurora);
  transform: translateY(-5px);
}

.nightdoor-benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: block;
}

.nightdoor-benefit-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nightdoor-aurora);
  margin-bottom: 1rem;
}

.nightdoor-benefit-text {
  color: var(--nightdoor-pearl);
  line-height: 1.8;
  font-size: 1rem;
  opacity: 0.95;
}

/* Footer */
.nightdoor-footer {
  background: linear-gradient(to bottom, var(--nightdoor-slate), var(--nightdoor-midnight));
  color: var(--nightdoor-pearl);
  padding: 4rem 2.5rem 2rem;
}

.nightdoor-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.nightdoor-footer-column h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nightdoor-aurora);
  margin-bottom: 1.2rem;
}

.nightdoor-footer-text {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.nightdoor-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.nightdoor-footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nightdoor-footer-contact a {
  color: var(--nightdoor-aurora);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nightdoor-footer-contact a:hover {
  color: var(--nightdoor-copper);
}

.nightdoor-footer-menu {
  list-style: none;
}

.nightdoor-footer-menu li {
  margin-bottom: 0.7rem;
}

.nightdoor-footer-menu a {
  color: var(--nightdoor-pearl);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.nightdoor-footer-menu a:hover {
  color: var(--nightdoor-aurora);
  transform: translateX(5px);
}

.nightdoor-footer-helpline {
  background: rgba(92, 219, 149, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: var(--nightdoor-radius);
  margin-top: 1rem;
  border-left: 4px solid var(--nightdoor-aurora);
}

.nightdoor-footer-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--nightdoor-aurora), transparent);
  margin: 2rem 0;
}

.nightdoor-footer-legal {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.nightdoor-disclaimer {
  background: rgba(92, 219, 149, 0.05);
  padding: 2rem;
  border-radius: var(--nightdoor-radius);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 0.95rem;
  opacity: 0.9;
  border: 1px solid rgba(92, 219, 149, 0.2);
}

.nightdoor-disclaimer p {
  margin-bottom: 1rem;
}

.nightdoor-disclaimer p:last-child {
  margin-bottom: 0;
}

.nightdoor-disclaimer a {
  color: var(--nightdoor-aurora);
  text-decoration: underline;
}

.nightdoor-disclaimer a:hover {
  color: var(--nightdoor-copper);
}

.nightdoor-copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(224, 225, 221, 0.2);
  font-size: 0.95rem;
  opacity: 0.85;
}

.nightdoor-copyright a {
  color: var(--nightdoor-aurora);
  text-decoration: none;
  margin: 0 0.5rem;
}

.nightdoor-copyright a:hover {
  color: var(--nightdoor-copper);
}

/* Cookie Banner */
.nightdoor-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, var(--nightdoor-midnight), var(--nightdoor-slate));
  padding: 1.8rem 2.5rem;
  box-shadow: 0 -4px 20px rgba(13, 27, 42, 0.3);
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.nightdoor-cookie-banner.nightdoor-hidden {
  transform: translateY(100%);
}

.nightdoor-cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nightdoor-cookie-text {
  flex: 1;
  color: var(--nightdoor-pearl);
}

.nightdoor-cookie-text h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nightdoor-aurora);
  margin-bottom: 0.5rem;
}

.nightdoor-cookie-text p {
  line-height: 1.6;
  opacity: 0.95;
}

.nightdoor-cookie-text a {
  color: var(--nightdoor-aurora);
  text-decoration: underline;
}

.nightdoor-cookie-text a:hover {
  color: var(--nightdoor-copper);
}

.nightdoor-cookie-button {
  background: var(--nightdoor-aurora);
  color: var(--nightdoor-midnight);
  padding: 0.9rem 2rem;
  border-radius: var(--nightdoor-radius);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nightdoor-cookie-button:hover {
  background: var(--nightdoor-copper);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(205, 140, 82, 0.4);
}

/* Legal Pages */
.nightdoor-legal-page {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2.5rem 4rem;
}

.nightdoor-legal-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--nightdoor-midnight);
  margin-bottom: 0.8rem;
  text-align: center;
}

.nightdoor-legal-date {
  text-align: center;
  color: var(--nightdoor-slate);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.nightdoor-legal-body {
  background: white;
  padding: 3rem;
  border-radius: var(--nightdoor-radius);
  box-shadow: var(--nightdoor-shadow);
}

.nightdoor-legal-body h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--nightdoor-midnight);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--nightdoor-aurora);
}

.nightdoor-legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.nightdoor-legal-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--nightdoor-slate);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.nightdoor-legal-body p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--nightdoor-slate);
}

.nightdoor-legal-body ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.nightdoor-legal-body ul li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
  color: var(--nightdoor-slate);
}

.nightdoor-legal-body a {
  color: var(--nightdoor-aurora);
  text-decoration: underline;
}

.nightdoor-legal-body a:hover {
  color: var(--nightdoor-copper);
}

/* Contact Page */
.nightdoor-contact-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2.5rem 4rem;
}

.nightdoor-contact-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--nightdoor-midnight);
  text-align: center;
  margin-bottom: 1rem;
}

.nightdoor-contact-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--nightdoor-slate);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nightdoor-alert {
  padding: 1.2rem 1.8rem;
  border-radius: var(--nightdoor-radius);
  margin-bottom: 2rem;
  font-weight: 500;
  display: none;
}

.nightdoor-alert.nightdoor-alert-success {
  background: rgba(92, 219, 149, 0.15);
  color: #1a5f3a;
  border: 2px solid var(--nightdoor-aurora);
  display: block;
}

.nightdoor-alert.nightdoor-alert-error {
  background: rgba(220, 53, 69, 0.15);
  color: #7a1f2a;
  border: 2px solid #dc3545;
  display: block;
}

.nightdoor-contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--nightdoor-radius);
  box-shadow: var(--nightdoor-shadow);
}

.nightdoor-form-group {
  margin-bottom: 1.8rem;
}

.nightdoor-form-label {
  display: block;
  font-weight: 600;
  color: var(--nightdoor-midnight);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.nightdoor-form-input {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 2px solid rgba(13, 27, 42, 0.2);
  border-radius: var(--nightdoor-radius);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  background: var(--nightdoor-pearl);
}

.nightdoor-form-input:focus {
  outline: none;
  border-color: var(--nightdoor-aurora);
  box-shadow: 0 0 0 4px rgba(92, 219, 149, 0.1);
  background: white;
}

.nightdoor-form-textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 2px solid rgba(13, 27, 42, 0.2);
  border-radius: var(--nightdoor-radius);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  min-height: 180px;
  resize: vertical;
  transition: all 0.3s ease;
  background: var(--nightdoor-pearl);
}

.nightdoor-form-textarea:focus {
  outline: none;
  border-color: var(--nightdoor-aurora);
  box-shadow: 0 0 0 4px rgba(92, 219, 149, 0.1);
  background: white;
}

.nightdoor-submit-button {
  background: var(--nightdoor-aurora);
  color: var(--nightdoor-midnight);
  padding: 1.1rem 2.5rem;
  border-radius: var(--nightdoor-radius);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 20px rgba(92, 219, 149, 0.3);
}

.nightdoor-submit-button:hover {
  background: var(--nightdoor-copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 140, 82, 0.4);
}

.nightdoor-submit-button:disabled {
  background: var(--nightdoor-slate);
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.nightdoor-contact-info {
  background: var(--nightdoor-midnight);
  color: var(--nightdoor-pearl);
  padding: 2.5rem;
  border-radius: var(--nightdoor-radius);
  margin-top: 3rem;
}

.nightdoor-contact-info h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nightdoor-aurora);
  margin-bottom: 1.5rem;
}

.nightdoor-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.nightdoor-contact-info-item i {
  color: var(--nightdoor-aurora);
  width: 24px;
  text-align: center;
}

.nightdoor-contact-info-item a {
  color: var(--nightdoor-aurora);
  text-decoration: none;
}

.nightdoor-contact-info-item a:hover {
  color: var(--nightdoor-copper);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nightdoor-hero-title {
    font-size: 2.8rem;
  }

  .nightdoor-hero-highlight {
    font-size: 3.2rem;
  }

  .nightdoor-event-row {
    grid-template-columns: 1fr;
  }

  .nightdoor-event-row:nth-child(even) {
    direction: ltr;
  }

  .nightdoor-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nightdoor-hamburger {
    display: flex;
  }

  .nightdoor-main-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--nightdoor-midnight);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
  }

  .nightdoor-main-nav.nightdoor-nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nightdoor-nav-item {
    width: 100%;
    text-align: center;
  }

  .nightdoor-hero-diagonal {
    padding: 4rem 1.5rem;
  }

  .nightdoor-hero-title {
    font-size: 2.2rem;
  }

  .nightdoor-hero-highlight {
    font-size: 2.5rem;
  }

  .nightdoor-hero-subtitle {
    font-size: 1.1rem;
  }

  .nightdoor-hero-actions {
    flex-direction: column;
  }

  .nightdoor-section-title {
    font-size: 2rem;
  }

  .nightdoor-events-wrapper,
  .nightdoor-benefits-section,
  .nightdoor-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nightdoor-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nightdoor-cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .nightdoor-cookie-button {
    width: 100%;
  }

  .nightdoor-legal-body {
    padding: 2rem 1.5rem;
  }

  .nightdoor-contact-form {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nightdoor-brand-name {
    font-size: 1.4rem;
  }

  .nightdoor-logo-img {
    width: 44px;
    height: 44px;
  }

  .nightdoor-hero-title {
    font-size: 1.8rem;
  }

  .nightdoor-hero-highlight {
    font-size: 2rem;
  }

  .nightdoor-button-primary,
  .nightdoor-button-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  .nightdoor-event-card {
    padding: 1.8rem;
  }

  .nightdoor-card-title {
    font-size: 1.5rem;
    word-break: break-word;
  }

  .nightdoor-benefit-item {
    padding: 2rem 1.5rem;
  }
}

