/* ===== CSS VARIABLES ===== */
:root {
  --bg: #111111;
  --bg-card: #1e1e1e;
  --bg-elevated: #252525;
  --bg-input: #2a2a2a;
  --border: #333333;
  --border-light: #444444;
  --orange: #ff9500;
  --orange-dim: #cc7800;
  --orange-glow: rgba(255, 149, 0, 0.15);
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-dim: #aaaaaa;
  --white: #ffffff;
  --danger: #e03e3e;
  --success: #27ae60;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
  --transition: 0.2s ease;
  --nav-height: 64px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: #ffb74d; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo {
  height: 38px;
  width: auto;
}

.navbar-brand-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  display: block;
  padding: 8px 14px;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--orange);
  background: var(--orange-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MAIN CONTENT ===== */
main { padding-top: var(--nav-height); }

.page-section {
  min-height: 100vh;
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px 0;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-dim);
  margin-top: 20px;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: #000;
}
.btn-primary:hover {
  background: #ffb74d;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 149, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange-glow);
  color: var(--orange);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-light);
  color: var(--text);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}
.btn-danger:hover { background: #c0392b; }

.btn-success {
  background: var(--success);
  color: var(--white);
}
.btn-success:hover { background: #219150; }

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-icon { padding: 8px; border-radius: 6px; }

/* ===== HOME FEATURES ===== */
.features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(255, 149, 0, 0.05);
  cursor: default;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.feature-chip:hover {
  background: rgba(255, 149, 0, 0.12);
  box-shadow: 0 0 16px rgba(255, 149, 0, 0.2);
  transform: translateY(-2px);
}

/* Alternate chips get a slightly different shade so the row feels alive */
.feature-chip:nth-child(even) {
  border-color: rgba(255, 149, 0, 0.6);
  color: rgba(255, 183, 77, 0.9);
  background: rgba(255, 149, 0, 0.03);
}

/* ===== BAND MEMBERS ===== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.member-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.member-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.member-card:hover .member-photo {
  filter: grayscale(0%);
}

.member-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  font-size: 3rem;
  color: var(--text-muted);
}

.member-info {
  padding: 20px;
  border-top: 2px solid var(--orange);
}

.member-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-role {
  font-size: 0.85rem;
  color: var(--orange);
  margin-top: 4px;
  font-weight: 500;
}

.member-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.member-bio {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== VIDEO TABS ===== */
.tab-group {
  display: flex;
  gap: 4px;
  background: var(--bg-elevated);
  padding: 4px;
  border-radius: var(--radius-lg);
  width: fit-content;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.tab-btn.active {
  background: var(--orange);
  color: #000;
}

.tab-btn:hover:not(.active) {
  color: var(--text);
  background: var(--bg-card);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.video-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.04);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.video-play-btn::after {
  content: '';
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 149, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover .video-play-btn::after {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 149, 0, 0.6);
}

.video-embed {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 2;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-info {
  padding: 16px;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 4 200px;
  gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(255, 149, 0, 0.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  z-index: 10000;
}
.lightbox-close:hover { color: var(--orange); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px;
  height: 60px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  color: var(--orange);
}

/* ===== MUSIC PLAYER ===== */
.player-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.player-now-playing {
  background: var(--bg-elevated);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-vinyl {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #111 0deg 40deg,
    #1e1e1e 40deg 80deg,
    #111 80deg 120deg,
    #1e1e1e 120deg 160deg,
    #111 160deg 200deg,
    #1e1e1e 200deg 240deg,
    #111 240deg 280deg,
    #1e1e1e 280deg 320deg,
    #111 320deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.1s linear;
  border: 2px solid var(--border);
}

.player-vinyl.spinning {
  animation: spin 3s linear infinite;
}

.player-vinyl::after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--orange);
}

.player-track-info {
  flex: 1;
  min-width: 0;
}

.player-track-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track-artist {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctrl-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
}

.ctrl-btn:hover { color: var(--orange); background: var(--orange-glow); }

.ctrl-btn-play {
  background: var(--orange) !important;
  color: #000 !important;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.ctrl-btn-play:hover {
  background: #ffb74d !important;
  transform: scale(1.05);
}

.player-progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
}

.time-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}

.progress-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.progress-track:hover .progress-thumb { opacity: 1; }

.volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px 16px;
  border-bottom: 1px solid var(--border);
}

.volume-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
}

input[type="range"].volume-slider {
  -webkit-appearance: none;
  flex: 1;
  max-width: 140px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input[type="range"].volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

.playlist {
  max-height: 400px;
  overflow-y: auto;
}

.playlist::-webkit-scrollbar { width: 4px; }
.playlist::-webkit-scrollbar-track { background: var(--bg-card); }
.playlist::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }

.playlist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.playlist-item:last-child { border-bottom: none; }

.playlist-item:hover { background: var(--bg-elevated); }

.playlist-item.active {
  background: var(--orange-glow);
  border-left: 3px solid var(--orange);
}

.playlist-num {
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 24px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.playlist-item.active .playlist-num {
  color: var(--orange);
}

.playlist-title {
  flex: 1;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item.active .playlist-title { color: var(--orange); font-weight: 600; }

.playing-indicator {
  display: none;
  align-items: center;
  gap: 2px;
  height: 16px;
}

.playlist-item.active .playing-indicator { display: flex; }

.bar {
  width: 3px;
  border-radius: 2px;
  background: var(--orange);
}

.bar:nth-child(1) { animation: bars 0.8s ease infinite; height: 10px; }
.bar:nth-child(2) { animation: bars 0.8s ease infinite 0.2s; height: 14px; }
.bar:nth-child(3) { animation: bars 0.8s ease infinite 0.4s; height: 8px; }

@keyframes bars {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.2); }
}

/* ===== EVENTS CALENDAR ===== */
.events-layout {
  display: grid;
  grid-template-columns: 308px 1fr;
  gap: 36px;
  align-items: start;
}

.calendar-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.calendar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  width: 160px;         /* fixed — widest name "September" fits comfortably */
  white-space: nowrap;
  overflow: hidden;
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 1rem;
}

.cal-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.calendar-grid {
  padding: 12px 16px 16px;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.cal-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 4px;
  letter-spacing: 0.5px;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr); /* always 6 rows — no layout shift */
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: default;
  color: var(--text-dim);
  transition: all var(--transition);
  position: relative;
}

.cal-day.empty { color: transparent; }

.cal-day.today {
  color: var(--white);
  font-weight: 700;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
}

.cal-day.has-event {
  background: var(--orange);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50%;
}

.cal-day.has-event:hover {
  background: #ffb74d;
  transform: scale(1.1);
}

.events-list {
  margin-top: 32px;
}

.events-list-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.event-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
}

.event-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 8px;
  color: #000;
  line-height: 1;
}

.event-date-day {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.event-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details { flex: 1; }

.event-type {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.event-place {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.event-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.event-item--compact {
  padding: 10px 14px;
  align-items: center;
  gap: 14px;
}

.event-item--compact .event-type { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.event-item--compact .event-place { font-size: 0.85rem; color: var(--text-muted); margin-left: 4px; }
.event-item--compact .event-desc { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

.event-date-badge--sm {
  min-width: 46px;
  padding: 5px 6px;
  line-height: 1;
}

.event-date-badge--sm .event-date-day  { font-size: 1.25rem; }
.event-date-badge--sm .event-date-month { font-size: 0.6rem; letter-spacing: 0.5px; }

.no-events {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--white);
  margin-top: 3px;
  font-weight: 500;
}

.contact-value a {
  color: var(--white);
}
.contact-value a:hover { color: var(--orange); }

.contact-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: grayscale(20%);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

/* ===== FOOTER ===== */
footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== HIDDEN ADMIN DOT ===== */
.admin-dot {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 149, 0, 0.2);
  cursor: pointer;
  z-index: 9990;
  transition: all 0.3s ease;
  border: none;
}

.admin-dot:hover {
  background: rgba(255, 149, 0, 0.8);
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(255, 149, 0, 0.4);
}

/* ===== ADMIN TOOLBAR (shown when logged in) ===== */
.admin-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid var(--orange);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 9000;
}

.admin-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 3px 8px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  border-radius: 4px;
}

.admin-bar-links {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
}

.admin-bar-link {
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: all var(--transition);
}

.admin-bar-link:hover {
  color: var(--orange);
  background: var(--orange-glow);
}

.edit-mode-toggle {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  transition: all var(--transition);
  margin-left: auto;
}

.edit-mode-toggle.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

/* Inline editable content */
.edit-mode .editable-content {
  outline: 1px dashed rgba(255, 149, 0, 0.4);
  cursor: pointer;
  border-radius: 3px;
  padding: 1px 3px;
  transition: outline-color var(--transition);
}

.edit-mode .editable-content:hover {
  outline-color: var(--orange);
  background: rgba(255, 149, 0, 0.05);
}

/* ===== EDIT MODAL ===== */
.edit-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.edit-modal-backdrop.open { display: flex; }

.edit-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  animation: zoomIn 0.2s ease;
}

.edit-modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.edit-modal textarea {
  width: 100%;
  min-height: 120px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  padding: 12px 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition);
}

.edit-modal textarea:focus {
  border-color: var(--orange);
}

.edit-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* ===== LOGIN MODAL ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.login-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  padding: 11px 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-control:focus { border-color: var(--orange); }

.form-error {
  background: rgba(224, 62, 62, 0.1);
  border: 1px solid rgba(224, 62, 62, 0.3);
  border-radius: var(--radius);
  color: #e57373;
  font-size: 0.85rem;
  padding: 10px 14px;
  margin-bottom: 16px;
}

/* ===== ADMIN PANEL ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #0d0d0d;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.admin-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.admin-logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-nav {
  flex: 1;
  padding: 16px 12px;
}

.admin-nav-section {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 8px;
  margin: 20px 0 8px;
}

.admin-nav-section:first-child { margin-top: 4px; }

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 2px;
}

.admin-nav-link:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

.admin-nav-link.active {
  color: var(--orange);
  background: var(--orange-glow);
  border-left: 2px solid var(--orange);
}

.admin-nav-icon { font-size: 1rem; width: 20px; text-align: center; }

.admin-sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.admin-main {
  flex: 1;
  padding: 32px 36px;
  max-width: calc(100vw - 240px);
}

.admin-page-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.admin-card-header {
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

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

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

.admin-table tr:hover td { background: var(--bg-elevated); }

.admin-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

/* ===== FORMS IN ADMIN ===== */
.admin-form {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.admin-form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

select.form-control {
  cursor: pointer;
}

.drag-handle {
  cursor: grab;
  color: var(--text-muted);
  padding: 4px;
  font-size: 1rem;
  line-height: 1;
}

.drag-handle:active { cursor: grabbing; }

.dragging { opacity: 0.4; }

/* ===== CHART CONTAINERS ===== */
.chart-container {
  position: relative;
  height: 250px;
  padding: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --nav-height: 56px; }

  .navbar-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
  }

  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 12px 16px; font-size: 0.95rem; }
  .hamburger { display: flex; }

  .page-section { padding: 60px 16px; }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  .members-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

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

  .gallery-grid { columns: 2 150px; }

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

  .events-layout { grid-template-columns: 1fr; gap: 24px; }
  .calendar-wrap { max-width: 100%; }

  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .admin-main { padding: 20px 16px; max-width: 100%; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  footer { padding: 28px 16px; }

  .tab-group { width: 100%; }
  .tab-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 2 120px; }
  .members-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ===== UTILITIES ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.fw-bold { font-weight: 700; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.badge-orange { background: var(--orange-glow); color: var(--orange); border-color: var(--orange); }
