@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg:        #0a0f0a;
  --bg-light:  #131a13;
  --surface:   #1a241a;
  --accent:    #c8913a;
  --accent-light: #daa54e;
  --text:      #e8e4df;
  --text-muted:#9a9590;
  --green:     #1b3a1b;
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ─── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 145, 58, 0.1);
  transition: background 0.3s;
}

.nav-logo {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-logo img {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/mainbg.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Hero video: hidden on desktop, shown on mobile */
.hero-bg video {
  display: none;
}

@media (max-width: 768px) {
  .hero-bg video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 10, 0.45) 0%,
    rgba(10, 15, 10, 0.55) 50%,
    rgba(10, 15, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1s ease-out;
}

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

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 36px;
}

.hero-cta {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-cta a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.hero-cta a:hover {
  color: var(--accent-light);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn {
  min-width: 200px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.btn-sm:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Hero socials */
.hero-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s, transform 0.3s;
}

.hero-socials a:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.hero-socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.hero-socials a:hover svg {
  fill: var(--bg);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── Sections ─── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ─── About ─── */
.about-text {
  max-width: 700px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-text p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.2em;
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--accent);
}

/* ─── Video Showcase ─── */
.video-showcase {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 145, 58, 0.15);
}

.video-showcase video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* ─── Music ─── */
.music-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 16px;
  background: var(--surface);
  border: 1px solid rgba(200,145,58,0.1);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s;
}

.platform-card:hover {
  border-color: var(--accent);
  background: rgba(200,145,58,0.06);
  color: var(--accent);
  transform: translateY(-4px);
}

.platform-card svg {
  width: 36px;
  height: 36px;
  fill: var(--text-muted);
  transition: fill 0.3s;
}

.platform-card:hover svg {
  fill: var(--accent);
}

.platform-card span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Live Dates ─── */
.live-dates {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.live-date {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  transition: background 0.3s;
}

.live-date:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.live-date:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.live-date:hover {
  background: rgba(200,145,58,0.06);
}

.date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.date-month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.date-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.date-info {
  flex: 1;
}

.date-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.date-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.date-action {
  flex-shrink: 0;
}

.past-heading {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 48px auto 16px;
  max-width: 700px;
}

.live-dates.past .live-date {
  border-left-color: var(--text-muted);
  opacity: 0.5;
}

.live-dates.past .date-month {
  color: var(--text-muted);
}

/* ─── Media Tabs ─── */
.media-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.media-tab {
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid rgba(200, 145, 58, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}

.media-tab:hover {
  color: var(--text);
  border-color: rgba(200, 145, 58, 0.3);
}

.media-tab.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

/* ─── Photo Grid ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 2px;
}

.photo-grid img.grid-hidden {
  display: none;
}

.photo-grid img:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* ─── Photo Pagination ─── */
.photo-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 145, 58, 0.3);
  background: var(--surface);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
}

.page-btn:hover:not([disabled]) {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.page-btn[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.page-info {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  min-width: 60px;
  text-align: center;
}

/* ─── Lightbox ─── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

#lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}

#lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent);
}

/* ─── Footer ─── */
footer {
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(200,145,58,0.1);
}

.footer-logo {
  width: 200px;
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--accent);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
  opacity: 0.5;
}

/* ─── Scroll Animations ─── */
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  #main-nav {
    padding: 12px 20px;
  }

  .nav-logo {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw;
    height: 100vh;
    background: #000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1050;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    font-size: 18px;
    letter-spacing: 3px;
    color: #fff;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .section {
    padding: 72px 0;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

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

  .live-date {
    gap: 14px;
    padding: 16px;
  }

  .date-info h3 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .music-platforms {
    grid-template-columns: 1fr 1fr;
  }

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