@import url('https://unpkg.com/@cds/city@1.1.0/css/bundles/default.min.css');

/* Custom Cursor - Default Hidden */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  pointer-events: none;
  z-index: 100000;
  display: none;
  will-change: transform;
}

/* Only hide default cursor when custom cursor is active and on desktop */
@media (min-width: 1025px) {
  html.has-custom-cursor, 
  html.has-custom-cursor * {
    cursor: none !important;
  }
}

.custom-cursor.hovering svg {
  transform: scale(1.4) rotate(10deg);
  filter: drop-shadow(0 0 10px var(--primary-color));
}

.custom-cursor.clicking svg {
  transform: scale(0.9) rotate(-10deg);
}

.custom-cursor svg {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s ease;
}

@media (max-width: 1024px) {
  .custom-cursor {
    display: none !important;
  }
  html, * {
    cursor: auto !important;
  }
}

/* SEO Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --primary-color: #e50914;
  --bg-color: #050505;
  --text-color: #ffffff;
  --gray-color: #888888;
  --dark-gray: #151515;
  --font-main: 'Clarity City', sans-serif;
  --font-body: 'Clarity City', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}


body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading {
  overflow: hidden;
}

/* Noise Texture Overlay */
.noise {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.section-title {
  font-family: var(--font-main);
  text-transform: uppercase;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: 0.1em;
}

h2.section-title {
  font-size: 4rem;
  margin-bottom: 3rem;
  color: var(--text-color);
  text-align: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.primary-btn {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.primary-btn:hover {
  background: transparent;
  color: var(--primary-color);
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: var(--bg-color);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 10001; /* Higher than noise (9999) */
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), border 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  will-change: background, padding, backdrop-filter;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.7rem 2rem;
  border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.brand-logo {
  max-height: 50px;
  display: block;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.1);
}

.page-content {
  padding-top: 100px; /* Offset for fixed navbar */
  min-height: 80vh;
}

.preloader-logo {
  max-width: 200px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.brand-text {
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 1rem;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.social-links-nav {
  display: flex;
  gap: 1.5rem;
}

.social-links-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-main);
  transition: color 0.3s ease;
}

.social-links-nav a:hover {
  color: var(--primary-color);
}

.social-links-nav a svg {
  transition: transform 0.3s ease;
}

.social-links-nav a:hover svg {
  transform: translateY(-3px) scale(1.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hero Section */
.album-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #111;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streaming-icon {
  color: var(--text-color);
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.streaming-icon:hover {
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 0 10px currentColor);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8; /* High default opacity for immediate visibility */
  transform: scale(1.1);
}

/* Red tint overlay for the video to match the band aesthetic */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, rgba(5, 5, 5, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.massive-logo-container {
  margin-bottom: 0rem;
}

.massive-logo {
  max-width: 350px;
  width: 80vw;
  filter: drop-shadow(0 0 30px rgba(229, 9, 20, 0.4));
}

.massive-text {
  font-size: 15vw;
  line-height: 1;
  margin: 0;
}

.tagline {
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  margin-top: 1rem;
  margin-bottom: 3rem;
  color: var(--gray-color);
  text-transform: uppercase;
}

/* Clean Simple Separator */
.separator-3d {
  position: relative;
  width: 100%;
  height: 2px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  overflow: visible;
  margin-top: -1px; /* Overlap slightly for a seamless break */
}

.slant-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.8), #fff, rgba(229, 9, 20, 0.8), transparent);
  box-shadow: 0 0 15px var(--primary-color);
  position: absolute;
}

/* About Section */
.about-section {
  position: relative;
  background: #050505;
  overflow: hidden;
}

/* Background image with low opacity */
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('assets/about-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* Low opacity as requested */
  z-index: 0;
}

/* Red-tint overlay to keep it consistent with brand */
.about-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 0%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--gray-color);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-highlight {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


/* =====================================================
   3D Carousel Ã¢â‚¬â€ Lineup Section
   ===================================================== */

.lineup-subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2.5rem;
}

.carousel-scene {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* background: rgba(229, 9, 20, 0.02); */
}

.carousel-spinner {
  position: relative;
  width: 250px;
  height: 350px;
  transform-style: preserve-3d;
  cursor: grab;
}

.carousel-spinner:active {
  cursor: grabbing;
}

.carousel-panel {
  position: absolute;
  width: 250px;
  height: 350px;
  left: 0;
  top: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: border-color 0.3s ease, opacity 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
  transform: translateZ(0); /* Force hardware acceleration */
}

.carousel-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.carousel-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  pointer-events: none;
}

.carousel-panel-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  text-align: center;
  pointer-events: none;
}

.carousel-panel-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.carousel-panel-info h4 {
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.carousel-panel:hover {
  filter: brightness(1.2);
  border-color: var(--primary-color);
}

/* =====================================================
   Member Modal (Frosted Glass)
   ===================================================== */

.member-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.member-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.member-modal-card {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.member-modal-overlay.active .member-modal-card {
  transform: translateY(0) scale(1);
}

.member-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-modal-close:hover {
  background: var(--primary-color);
  color: #fff;
}

.member-modal-image-container {
  width: 100%;
  height: 350px;
  position: relative;
}

.member-modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-modal-image-container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(20,20,20,0.6), transparent);
}

.member-modal-info {
  padding: 2rem;
  text-align: center;
}

.member-modal-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.modal-role {
  color: var(--primary-color);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.member-modal-info p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-scene { height: 480px; }
  .carousel-spinner, .carousel-panel {
    width: 200px;
    height: 280px;
  }
}
@media (max-width: 768px) {
  .carousel-scene { height: 400px; perspective: 800px; }
  .carousel-spinner, .carousel-panel {
    width: 160px;
    height: 220px;
  }
  .lineup-subtitle { font-size: 0.7rem; letter-spacing: 0.2em; }
  .member-modal-image-container { height: 250px; }
  .member-modal-info { padding: 1.5rem; }
  .member-modal-info h3 { font-size: 1.5rem; }
  .modal-role { font-size: 0.85rem; }
}


.album-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #111;
  background-image: linear-gradient(45deg, #050505 25%, #111 25%, #111 50%, #050505 50%, #050505 75%, #111 75%, #111 100%);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  border: 1px solid #333;
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.1);
  font-family: var(--font-main);
  font-size: 2rem;
  letter-spacing: 5px;
}

.album-info h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.album-info p {
  color: var(--gray-color);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.streaming-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Tour Section */
.tour-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #333;
}

.tour-item {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr auto;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid #333;
  transition: background 0.3s ease;
}

.tour-item:hover {
  background: var(--dark-gray);
  box-shadow: inset 5px 0 0 var(--primary-color);
}

.tour-date {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--primary-color);
}

.tour-venue {
  font-weight: 700;
  font-size: 1.2rem;
}

.tour-location {
  color: var(--gray-color);
}

.ticket-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: 1px solid #444;
  color: #fff;
  background: transparent;
}

.ticket-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background: #000;
  padding: 4rem 1rem 2rem;
  border-top: 1px solid #111;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.footer-socials a {
  color: var(--gray-color);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 1.2rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--primary-color);
}

.copyright {
  color: #444;
  font-size: 0.9rem;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.news-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.news-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.overlay-gradient::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.8));
}

.news-content-card {
  padding: 2rem;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.news-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-excerpt {
  color: var(--gray-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.read-more {
  font-family: var(--font-main);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}


/* Contact Form */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-subtitle {
  color: var(--gray-color);
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  margin-top: -2rem;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #0a0a0a;
  padding: 4rem;
  border: 1px solid #1a1a1a;
  position: relative;
}

.contact-wrapper::after {
  content: '';
  position: absolute;
  top: -1px; right: -1px; width: 40px; height: 40px;
  border-right: 2px solid var(--primary-color);
  border-top: 2px solid var(--primary-color);
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  bottom: -1px; left: -1px; width: 40px; height: 40px;
  border-left: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #555;
}

.form-group input, 
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 1rem 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  width: 100%;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    padding: 2rem;
  }
}


.contact-socials {
  margin-top: 6rem;
  text-align: center;
}

.social-label {
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: #444;
  margin-bottom: 3rem;
}

.social-icons-large {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.social-icon-item {
  text-decoration: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}

.social-icon-item::before {
  content: '';
  position: absolute;
  bottom: -10px; left: 0; width: 0; height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.social-icon-item:hover {
  color: var(--primary-color);
}

.social-icon-item:hover::before {
  width: 100%;
}

@media (max-width: 768px) {
  .social-icons-large {
    gap: 2rem;
  }
  .social-icon-item {
    font-size: 1.1rem;
  }
}

/* Animations classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px) translateZ(0);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.fade-in-up.revealed {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Responsive */
@media (max-width: 1024px) {
  h2.section-title { font-size: 3rem; }
  .split-layout { gap: 2rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-links, .social-links-nav {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #050505;
    padding: 2rem;
    align-items: center;
    border-bottom: 1px solid #333;
    gap: 1.5rem;
  }
  
  .split-layout { grid-template-columns: 1fr; }
  
  .tour-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .massive-logo { width: 75vw; max-width: 280px; }
  .massive-text { font-size: 18vw; }
  .tagline { font-size: 1rem; letter-spacing: 0.3em; margin-bottom: 2rem; }
  
  .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  
  .lineup-nav {
    padding-bottom: 1rem;
    gap: 0.8rem;
  }
  
  .icon-item {
    flex: 0 0 65px;
    height: 65px;
  }

  .icon-item span { font-size: 0.5rem; }

  .member-name-large { font-size: 2.2rem; }
  .member-role-large { font-size: 1rem; }
  .member-info-text { font-size: 1rem; padding: 0 1rem; }
  
  .footer-socials { gap: 1rem; margin-bottom: 2rem; }
  .footer-socials a { font-size: 1rem; }
  
  .section-title { font-size: 2.5rem !important; margin-bottom: 2rem; }
  
  .tour-item { padding: 1.5rem 1rem; }
  .tour-date { font-size: 1.2rem; }
  .tour-venue { font-size: 1.1rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* PHOTO GALLERY GRID (SMALL MIXED) */
.photo-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 12px;
  padding: 4rem 0;
}

.photo-item {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  filter: grayscale(100%) brightness(0.6);
}

.photo-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(229, 9, 20, 0.3);
}

.photo-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Mixed Sizes for Jumbled Look */
.photo-item.tall { grid-row: span 2; }
.photo-item.wide { grid-column: span 2; }
.photo-item.large { grid-row: span 2; grid-column: span 2; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox-overlay.active { opacity: 1; visibility: visible; }

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox-overlay.active .lightbox-content { transform: scale(1); }

.lightbox-content img { width: 100%; height: 100%; object-fit: contain; }

.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  color: #fff; font-size: 2.5rem; cursor: pointer;
  background: none; border: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .photo-grid-container {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      grid-auto-rows: 120px;
      gap: 8px;
    }
}


 / *   W h a t s A p p   F l o a t i n g   B u t t o n   * / 
 . w h a t s a p p - f l o a t   { 
     p o s i t i o n :   f i x e d ; 
     b o t t o m :   4 0 p x ; 
     r i g h t :   4 0 p x ; 
     b a c k g r o u n d - c o l o r :   # 2 5 d 3 6 6 ; 
     c o l o r :   # F F F ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
     f o n t - s i z e :   3 0 p x ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
     z - i n d e x :   1 0 0 0 0 ; 
     w i d t h :   6 0 p x ; 
     h e i g h t :   6 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . w h a t s a p p - f l o a t : h o v e r   { 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
     b a c k g r o u n d - c o l o r :   # 2 0 b a 5 a ; 
     b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 4 ) ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . w h a t s a p p - f l o a t   { 
         b o t t o m :   2 0 p x ; 
         r i g h t :   2 0 p x ; 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         f o n t - s i z e :   2 5 p x ; 
     } 
 } 
 
 
 

/* =====================================================
   Original Photo Gallery & Grid Styles
   ===================================================== */

.photo-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 15px;
  padding: 40px 0;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #111;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-item:hover img {
  transform: scale(1.08);
}

.photo-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-item.tall {
  grid-row: span 2;
}

.photo-item.wide {
  grid-column: span 2;
}

/* Lightbox / Modal Reversion */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

/* Video Grid Original */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-item {
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.clickable-video {
  cursor: pointer;
}

.clickable-video:hover .play-overlay {
  background: rgba(0, 0, 0, 0);
}

.play-button-bg {
  fill: #212121;
  fill-opacity: 0.8;
  transition: fill 0.3s ease, fill-opacity 0.3s ease;
}

.clickable-video:hover .play-button-bg {
  fill: #f00;
  fill-opacity: 1;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
  }
}

/* =====================================================
   3D LUXURY SPATIAL HALLWAY — PHOTO SECTION
   ===================================================== */

.hallway-section {
  position: relative;
  width: 100%;
  height: 5000px;
  background: #000;
  overflow: visible;
}

.hallway-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  pointer-events: none;
  text-align: center;
}

.hallway-title {
  font-size: clamp(3rem, 10vw, 8rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  opacity: 0.9;
}

.hallway-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  perspective: 1000px;
  perspective-origin: 50% 45%;
  background: radial-gradient(circle at 50% 50%, #0d0d0d 0%, #000 100%);
  overflow: hidden;
  z-index: 5;
}

.hallway-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.floor-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.05), transparent);
  pointer-events: none;
  z-index: 10;
}

.art-frame {
  position: absolute;
  width: 320px;
  height: 450px;
  top: 22%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #050505;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
}

.art-frame.left {
  left: 8%;
}

.art-frame.right {
  right: 8%;
}

.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.art-frame:hover {
  filter: brightness(1.35);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
  z-index: 500;
}

.art-frame:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.hallway-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hallway-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(40px);
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hallway-modal.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-card {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  overflow: hidden;
  padding: 4rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #444;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.modal-close:hover { 
  color: #D4AF37; 
  transform: rotate(90deg);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.modal-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}

.modal-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.1;
}

.modal-desc {
  color: #888;
  line-height: 1.8;
  font-size: 1rem;
}

.ambient-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
