/* ==========================================================================
   ANIJACK THE FINAL — Main Stylesheet
   Dark theme with yellow lightning motif
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg:           #0d0d0d;
  --color-bg-card:      #1a1a1a;
  --color-bg-card-alt:  #151515;
  --color-bg-input:     #222222;
  --color-bg-elevated:  #242424;
  --color-surface:      #1e1e1e;

  --color-text:         #e8e8e8;
  --color-text-muted:   #888888;
  --color-text-dim:     #666666;

  --color-primary:      #ffd500;
  --color-primary-dark:  #ccaa00;
  --color-primary-light: #ffe44d;
  --color-primary-glow:  rgba(255, 213, 0, 0.35);
  --color-primary-faint: rgba(255, 213, 0, 0.08);

  --color-success:      #2ecc71;
  --color-error:        #e74c3c;
  --color-danger:       #e74c3c;
  --color-warning:      #f39c12;
  --color-info:         #3498db;

  --color-border:       #2a2a2a;
  --color-border-light: #333333;

  /* Badge colors */
  --color-twitter:      #1da1f2;
  --color-youtube:      #ff0000;
  --color-instagram:    #e1306c;
  --color-tiktok:       #00f2ea;
  --color-website:      #ffd500;

  /* Typography */
  --font-body:    'Noto Sans JP', sans-serif;
  --font-display: 'Dela Gothic One', cursive;
  --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-smooth: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md:   0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px var(--color-primary-glow);

  /* Header */
  --header-height: 64px;

  /* Lightning bolt inline SVG for decorative use */
  --lightning-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 40' fill='%23ffd500'%3E%3Cpolygon points='14,0 4,18 12,18 8,40 20,16 12,16 18,0'/%3E%3C/svg%3E");
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}


/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}


/* --------------------------------------------------------------------------
   Site Header — Fixed dark header with backdrop blur
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.nav-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #e01020;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo:hover {
  color: #ff2040;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile navigation dropdown */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  right: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-sm) 0;
  min-width: 180px;
  animation: navSlideIn 200ms ease forwards;
  box-shadow: var(--shadow-lg);
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.open a {
  font-size: 1rem;
  display: block;
  padding: var(--space-md) var(--space-xl);
  white-space: nowrap;
}


/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark overlay with lightning-style animated gradient */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(13, 13, 13, 0.5) 0%,
      rgba(13, 13, 13, 0.3) 40%,
      rgba(13, 13, 13, 0.6) 70%,
      rgba(13, 13, 13, 0.95) 100%
    );
  z-index: 2;
}

/* Animated lightning flicker overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 213, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255, 213, 0, 0.04) 0%, transparent 40%);
  animation: lightningFlicker 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lightningFlicker {
  0%, 100% { opacity: 0.4; }
  10%      { opacity: 1; }
  12%      { opacity: 0.3; }
  14%      { opacity: 0.9; }
  16%      { opacity: 0.4; }
  50%      { opacity: 0.6; }
  70%      { opacity: 0.3; }
  72%      { opacity: 0.8; }
  74%      { opacity: 0.4; }
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  max-width: 800px;
}

.hero-presents {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  animation: fadeIn 800ms ease 200ms both;
}

.hero-title {
  margin-bottom: var(--space-xl);
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  color: #e01020;
  line-height: 1.1;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-shadow:
    0 0 30px rgba(224, 16, 32, 0.4),
    0 0 60px rgba(224, 16, 32, 0.15);
  animation: titleSlideUp 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 400ms both;
}

.hero-title-main .lightning-logo {
  display: inline-block;
  width: clamp(1.8rem, 6.5vw, 3.8rem);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 213, 0, 0.6));
  margin: 0 -0.05em;
}

.hero-title-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: var(--space-sm);
  animation: titleSlideUp 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 600ms both;
}

.hero-info {
  animation: fadeIn 700ms ease 800ms both;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.hero-time {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.hero .btn {
  animation: fadeIn 700ms ease 1000ms both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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


/* --------------------------------------------------------------------------
   Sections — Base & Diagonal Cuts
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

/* Background image overlay — dark tint to keep text readable */
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

/* --- Info section: black sand texture --- */
.section-info {
  background: var(--color-bg);
}
.section-info::after {
  background-image: url('../images/bg-info.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

/* --- Bands section: concert crowd --- */
.section-bands {
  background: var(--color-bg);
}
.section-bands::after {
  background-image: url('../images/bg-bands.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
}

/* --- Reserve section: dark rocks texture --- */
.section-reserve {
  background: var(--color-bg);
}
.section-reserve::after {
  background-image: url('../images/bg-reserve.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

/* Section title with yellow underline accent and lightning bolt */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  padding-bottom: var(--space-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--color-primary-glow);
}

/* (lightning bolt before section title: removed) */


/* --------------------------------------------------------------------------
   Event Info
   -------------------------------------------------------------------------- */
.event-description {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.info-row {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  flex-shrink: 0;
  width: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.info-value {
  flex: 1;
  color: var(--color-text);
  font-size: 0.95rem;
}

.venue-map {
  max-width: 640px;
  margin: 0 auto;
}

.venue-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius-lg);
  filter: grayscale(0.6) brightness(0.8);
  transition: filter var(--transition-base);
}

.venue-map iframe:hover {
  filter: grayscale(0.3) brightness(0.9);
}

.venue-map a {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
}


/* --------------------------------------------------------------------------
   Band Cards — Grid Layout (all bands equal)
   -------------------------------------------------------------------------- */
.bands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.band-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.band-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 20px var(--color-primary-glow);
}

.band-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface);
}

.band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.band-card:hover .band-photo img {
  transform: scale(1.05);
}

.band-info {
  padding: var(--space-lg);
}

.band-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.band-genre {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.band-bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pop-in animation for cards */
.pop-in {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition:
    opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pop-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* --------------------------------------------------------------------------
   Modal — Band Detail
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

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

.modal-content {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  max-height: 70vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-smooth);
  position: relative;
}

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

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.modal-body {
  padding: 0;
}

.modal-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface);
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.modal-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.modal-genre {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
}

.modal-bio {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  white-space: pre-line;
}

.modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


/* --------------------------------------------------------------------------
   Link Badges — Pill-shaped social links
   -------------------------------------------------------------------------- */
.performer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.link-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.35em 0.85em;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
  border: 1px solid transparent;
}

.link-badge:hover {
  background: rgba(255, 255, 255, 0.1);
}

.badge-twitter {
  color: var(--color-twitter);
  border-color: rgba(29, 161, 242, 0.2);
}

.badge-twitter:hover {
  background: rgba(29, 161, 242, 0.12);
  color: var(--color-twitter);
}

.badge-youtube {
  color: var(--color-youtube);
  border-color: rgba(255, 0, 0, 0.2);
}

.badge-youtube:hover {
  background: rgba(255, 0, 0, 0.12);
  color: var(--color-youtube);
}

.badge-instagram {
  color: var(--color-instagram);
  border-color: rgba(225, 48, 108, 0.2);
}

.badge-instagram:hover {
  background: rgba(225, 48, 108, 0.12);
  color: var(--color-instagram);
}

.badge-tiktok {
  color: var(--color-tiktok);
  border-color: rgba(0, 242, 234, 0.2);
}

.badge-tiktok:hover {
  background: rgba(0, 242, 234, 0.12);
  color: var(--color-tiktok);
}

.badge-website {
  color: var(--color-website);
  border-color: rgba(255, 213, 0, 0.2);
}

.badge-website:hover {
  background: rgba(255, 213, 0, 0.12);
  color: var(--color-website);
}

.badge-other {
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

.badge-other:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
}


/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7em 1.8em;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary: yellow gradient, white text */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  box-shadow: var(--shadow-glow);
  color: var(--color-bg);
}

/* Hero button override: white text on yellow */
.hero .btn-primary {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-faint);
  box-shadow: var(--shadow-glow);
  color: var(--color-primary);
}

/* Secondary */
.btn-secondary {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border-color: var(--color-border-light);
}

.btn-secondary:hover {
  background: var(--color-border-light);
  border-color: var(--color-text-dim);
}

/* Danger */
.btn-danger {
  background: transparent;
  color: var(--color-danger);
  border-color: var(--color-danger);
}

.btn-danger:hover {
  background: rgba(231, 76, 60, 0.1);
}

/* Sizes */
.btn-large {
  font-size: 1rem;
  padding: 0.85em 2.4em;
}

.btn-small {
  font-size: 0.8rem;
  padding: 0.45em 1em;
}

.btn-block {
  display: flex;
  width: 100%;
}


/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.reserve-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.15);
}

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

.required {
  color: var(--color-primary);
  font-weight: 700;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: var(--space-xs);
  line-height: 1.5;
}


/* --------------------------------------------------------------------------
   Link Row (form — for adding links with drag, select, input, remove)
   -------------------------------------------------------------------------- */
.link-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.link-row:focus-within {
  border-color: var(--color-primary);
}

.link-row select {
  flex-shrink: 0;
  width: 130px;
  padding: 0.5em 0.75em;
  font-size: 0.85rem;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23888'%3E%3Cpath d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6em center;
  padding-right: 2em;
}

.link-row input {
  flex: 1;
  min-width: 0;
  padding: 0.5em 0.75em;
  font-size: 0.85rem;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
}

.link-row input:focus,
.link-row select:focus {
  border-color: var(--color-primary);
}

.btn-link-action {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.btn-link-drag {
  background: transparent;
  color: var(--color-text-dim);
  cursor: grab;
}

.btn-link-drag:hover {
  color: var(--color-text-muted);
}

.btn-link-drag:active {
  cursor: grabbing;
}

.btn-link-remove {
  background: transparent;
  color: var(--color-danger);
}

.btn-link-remove:hover {
  background: rgba(231, 76, 60, 0.12);
}


/* --------------------------------------------------------------------------
   Flash Messages — Modal style
   -------------------------------------------------------------------------- */
.flash-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 200ms ease forwards;
}

.flash-modal {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  text-align: center;
  max-width: 420px;
  width: 100%;
  animation: modalPopIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.flash-modal-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.flash-modal-message {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* Success variant */
.flash-modal.success .flash-modal-icon {
  color: var(--color-success);
}

.flash-modal.success {
  border-color: rgba(46, 204, 113, 0.3);
}

/* Error variant */
.flash-modal.error .flash-modal-icon {
  color: var(--color-error);
}

.flash-modal.error {
  border-color: rgba(231, 76, 60, 0.3);
}

/* Inline flash messages */
.flash-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  border: 1px solid;
}

.flash-success {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.3);
  color: var(--color-success);
}

.flash-error {
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: var(--color-error);
}


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: var(--color-text-dim);
  font-size: 0.8rem;
}

.site-footer a {
  color: var(--color-text-muted);
}

.site-footer a:hover {
  color: var(--color-primary);
}


/* --------------------------------------------------------------------------
   Utility Animations
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   Utility: Photo Placeholder & No Data
   -------------------------------------------------------------------------- */
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  color: var(--color-text-dim);
  font-size: 2rem;
}

/* Lightning bolt decoration in photo placeholder */
.photo-placeholder::before {
  content: '';
  display: block;
  width: 32px;
  height: 50px;
  background: var(--lightning-svg) no-repeat center / contain;
  opacity: 0.2;
}

.no-data {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--color-text-dim);
  font-size: 0.95rem;
}


/* --------------------------------------------------------------------------
   Performer Form Pages
   -------------------------------------------------------------------------- */
.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
}

.page-main {
  flex: 1;
  padding: var(--space-3xl) var(--space-lg);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  padding-bottom: var(--space-md);
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Performer selection list */
.performer-select-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.performer-select-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  text-decoration: none;
  color: var(--color-text);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.performer-select-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
  transform: translateY(-2px);
  color: var(--color-text);
}

.performer-select-item img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Image preview in performer forms */
.current-photo {
  margin-bottom: var(--space-md);
}

.current-photo img {
  max-width: 200px;
  border-radius: var(--radius-md);
}

.image-preview {
  margin-top: var(--space-sm);
}

.image-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.form-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   Admin Dashboard
   -------------------------------------------------------------------------- */
.admin-layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--color-bg-card);
  border-right: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.admin-sidebar nav a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
}

.admin-sidebar nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-faint);
  border-left-color: var(--color-primary);
}

.admin-main {
  flex: 1;
  min-width: 0;
  padding: var(--space-2xl);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.admin-header h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
}

.admin-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.admin-card h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

/* Site setting rows */
.site-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.site-setting-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-setting-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

.site-setting-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.site-setting-control {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.site-setting-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2em 0.7em;
  border-radius: var(--radius-pill);
  text-align: center;
  min-width: 3em;
}

.site-setting-status.status-on {
  background: rgba(46, 204, 113, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.site-setting-status.status-off {
  background: rgba(231, 76, 60, 0.15);
  color: var(--color-error);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.site-setting-select {
  padding: 0.4em 0.8em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-input);
  color: var(--color-text);
  font-size: 0.85rem;
  cursor: pointer;
}

/* Admin stats grid */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: border-color var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--color-primary);
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: left;
  padding: var(--space-md) var(--space-md);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.admin-table tbody td {
  padding: var(--space-md) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background var(--transition-fast);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* Table wrapper for horizontal scroll */
.admin-card .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


/* --------------------------------------------------------------------------
   Lightning Decorative Accents
   -------------------------------------------------------------------------- */

/* (section divider lightning bolt: removed) */

/* Lightning glow line — decorative horizontal rule */
.lightning-divider {
  border: none;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-primary) 20%,
    var(--color-primary-light) 50%,
    var(--color-primary) 80%,
    transparent 100%
  );
  box-shadow: 0 0 10px var(--color-primary-glow);
  margin: var(--space-2xl) auto;
  max-width: 200px;
}

/* Lightning bolt background pattern for hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 5%;
  width: 120px;
  height: 300px;
  background: var(--lightning-svg) no-repeat center / contain;
  opacity: 0.03;
  z-index: 2;
  pointer-events: none;
  animation: lightningDrift 12s ease-in-out infinite alternate;
}

@keyframes lightningDrift {
  from {
    transform: translateY(-20px) rotate(-3deg);
    opacity: 0.02;
  }
  to {
    transform: translateY(20px) rotate(3deg);
    opacity: 0.05;
  }
}


/* --------------------------------------------------------------------------
   Responsive — Mobile first, then 600px, then 900px
   -------------------------------------------------------------------------- */

/* >= 600px — Tablet */
@media (min-width: 600px) {
  .bands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-row {
    flex-direction: row;
  }

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

  .form-actions {
    flex-wrap: nowrap;
  }

  .link-row {
    gap: var(--space-md);
  }

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

/* >= 900px — Desktop */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

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

  .section {
    padding: var(--space-4xl) 0;
  }

  /* sections: no diagonal cuts for ANIJACK */

  .venue-map iframe {
    height: 400px;
  }

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

  .hero::after {
    width: 180px;
    height: 450px;
  }
}

/* Small screens adjustments */
@media (max-width: 599px) {
  .info-row {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .info-label {
    width: auto;
  }

  .info-card {
    padding: var(--space-lg);
  }

  .form {
    padding: var(--space-lg);
  }

  .modal-info {
    padding: var(--space-lg);
  }

  .link-row {
    flex-wrap: wrap;
  }

  .link-row select {
    width: 100%;
  }

  .link-row input {
    width: 100%;
  }

  /* Admin: collapse sidebar on mobile */
  .admin-layout {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
  }

  .admin-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .admin-sidebar nav a {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
  }

  .admin-sidebar nav a.active {
    border-left-color: transparent;
    border-bottom-color: var(--color-primary);
  }

  .admin-main {
    padding: var(--space-lg);
  }

  .admin-header h1 {
    font-size: 1.2rem;
  }
}


/* --------------------------------------------------------------------------
   Scrollbar (Webkit)
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-dim);
}


/* --------------------------------------------------------------------------
   Admin Sidebar Extras
   -------------------------------------------------------------------------- */
.admin-sidebar-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 0 var(--space-xl) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.admin-sidebar-logo small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-dim);
  display: block;
}

.admin-nav { display: flex; flex-direction: column; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.admin-nav-item:hover { color: var(--color-text); background: rgba(255,255,255,0.03); }
.admin-nav-item.active { color: var(--color-primary); background: var(--color-primary-faint); border-left-color: var(--color-primary); }

.admin-sidebar-footer {
  margin-top: auto;
  padding: var(--space-xl);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.admin-sidebar-footer a {
  color: var(--color-text-dim);
  font-size: 0.8rem;
  text-decoration: none;
}
.admin-sidebar-footer a:hover { color: var(--color-primary); }

.admin-content { /* wrapper */ }

/* Admin band list (bands.php) */
.admin-band-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.admin-band-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-elevated, #222);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.admin-band-item:hover { border-color: var(--color-primary); }
.admin-band-item.dragging { opacity: 0.5; }

.admin-band-drag {
  cursor: grab;
  color: var(--color-text-dim);
  font-size: 1rem;
  flex-shrink: 0;
  user-select: none;
}
.admin-band-drag:active { cursor: grabbing; }

.admin-band-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface, #333);
}
.admin-band-thumb img { width: 100%; height: 100%; object-fit: cover; }

.admin-band-info { flex: 1; min-width: 0; }
.admin-band-info strong { display: block; font-size: 0.95rem; color: var(--color-text); }
.admin-band-info small { font-size: 0.8rem; color: var(--color-text-muted); }

.admin-band-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }

/* Performer select item active state */
.performer-select-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow, rgba(255,213,0,0.15));
}

.performer-select-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface, #333);
}
.performer-select-thumb img { width: 100%; height: 100%; object-fit: cover; }
.performer-select-name { font-weight: 700; font-size: 0.9rem; }

/* Image preview visibility */
.image-preview { display: none; }
.image-preview.active { display: block; }

/* Admin table links */
.admin-table a { color: var(--color-primary); text-decoration: none; }
.admin-table a:hover { text-decoration: underline; }
.admin-table th { text-align: left; padding: var(--space-md); font-size: 0.8rem; color: var(--color-text-muted); border-bottom: 1px solid var(--color-border); }
.admin-table td { padding: var(--space-md); border-bottom: 1px solid var(--color-border); }

/* Reservation readonly list (performer page) */
.reservation-readonly-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.reservation-readonly-section h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.reservation-readonly-section .no-data {
  color: var(--color-text-dim);
  font-size: 0.9rem;
}
.reservation-readonly-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.reservation-readonly-table thead th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 2px solid var(--color-border);
}
.reservation-readonly-table tbody td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.reservation-readonly-table tbody tr:last-child td {
  border-bottom: none;
}

/* Flash modal close button */
.flash-modal-close { margin-top: var(--space-lg); }

/* Flash modal variants (PHP class names) */
.flash-modal-success .flash-modal-icon { color: var(--color-success, #2ecc71); }
.flash-modal-error .flash-modal-icon { color: var(--color-danger, #e74c3c); }

/* Admin checkbox styling */
.form-group label input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: var(--color-primary);
}

/* Stat number for date display */
.stat-card .stat-number {
  font-size: clamp(1.2rem, 3vw, 2rem);
  word-break: break-all;
}

@media (max-width: 599px) {
  .admin-sidebar-logo { padding: var(--space-sm) var(--space-md); text-align: center; }
  .admin-sidebar-footer { flex-direction: row; justify-content: center; padding: var(--space-sm) var(--space-md); border-top: none; }
  .admin-band-item { flex-wrap: wrap; }
  .admin-band-actions { width: 100%; justify-content: flex-end; }
}


/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .nav-toggle,
  .hero-bg,
  .hero::before,
  .hero::after {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    clip-path: none !important;
    padding: 1em 0;
  }
}
