/* =============================================
   BIGFETT — LANDING PAGE STYLES
   Colors: #000000 | #FFFFFF | #00605E
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#hero > div.hero-content > a > img{
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}
:root {
  --black: #000000;
  --white: #ffffff;
  --accent: #00605E;
  --accent-light: #00857f;
  --gray-dark: #111111;
  --gray-mid: #1a1a1a;
  --gray-card: #161616;
  --gray-border: #2a2a2a;
  --gray-text: #888888;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  display: flex;
  align-items: center;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid var(--gray-border);
  padding: 24px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  padding-top: 72px;
}

.hero-sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.hero-socials {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =============================================
   SECTION COMMONS
   ============================================= */

section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}

/* =============================================
   RELEASES
   ============================================= */

.releases {
  background: var(--black);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.release-card {
  background: var(--gray-card);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s;
}

.release-card:hover {
  transform: translateY(-4px);
}

.release-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.release-card:hover .release-cover img {
  transform: scale(1.06);
}

.release-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 96, 94, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.release-card:hover .release-play-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 2.5rem;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.release-info {
  padding: 20px 22px;
}

.release-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.release-meta {
  font-size: 0.78rem;
  color: var(--gray-text);
  letter-spacing: 0.04em;
}

/* =============================================
   STREAMING MODAL
   ============================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.modal-release-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.streaming-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stream-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: filter 0.2s, transform 0.15s;
  border: 1px solid transparent;
}

.stream-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.stream-btn:hover {
  filter: brightness(1.15);
  transform: translateX(4px);
}

.stream-btn.spotify  { background: #1DB954; color: #000; }
.stream-btn.apple    { background: #fc3c44; color: #fff; }
.stream-btn.youtube  { background: #FF0000; color: #fff; }
.stream-btn.deezer   { background: #A238FF; color: #fff; }
.stream-btn.amazon   { background: #00A8E0; color: #fff; }

/* =============================================
   VIDEOS
   ============================================= */

.videos {
  background: var(--gray-dark);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  display: block;
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.07);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s;
}

.video-card:hover .video-play-btn {
  background: rgba(0, 96, 94, 0.55);
}

.video-play-btn svg {
  width: 52px;
  height: 52px;
  color: var(--white);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  transition: transform 0.3s;
}

.video-card:hover .video-play-btn svg {
  transform: scale(1.15);
}

.video-info {
  padding: 20px 22px 24px;
}

.video-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--white);
}

.video-sub {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* =============================================
   TOUR DATES
   ============================================= */

.tour {
  background: var(--black);
}

.tour .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tour-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tour-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

.tour-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  padding: 22px 24px;
  transition: border-color 0.25s, background 0.25s;
}

.tour-card:hover {
  border-color: var(--accent);
  background: #0f1f1f;
}

.tour-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  padding: 12px 18px;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.tour-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.tour-day {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin: 2px 0;
}

.tour-year {
  font-size: 0.65rem;
  color: var(--gray-text);
  letter-spacing: 0.05em;
}

.tour-details {
  flex: 1;
}

.tour-venue {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.tour-location {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.btn-ticket {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: background 0.25s, border-color 0.25s;
}

.btn-ticket:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.tour-arrow {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  color: var(--white);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  align-self: center;
}

.tour-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.tour-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =============================================
   GALLERY
   ============================================= */

.gallery {
  background: var(--gray-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 96, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  font-weight: 300;
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.4rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 2px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray-text);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.fsocial {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.fsocial svg {
  width: 16px;
  height: 16px;
}

.fsocial:hover {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.footer-links-group h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-text);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray-text);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .releases-grid,
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 72px 0;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .releases-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .tour-slider {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  .tour-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .releases-grid,
  .videos-grid {
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-box {
    padding: 36px 24px;
    margin: 0 16px;
  }
}

/* =============================================
   SPOTIFY MODAL
   ============================================= */

.modal-box--spotify {
  max-width: 520px;
}

.spotify-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4px;
}

.spotify-embed-wrap iframe {
  display: block;
}
