/* 
  Damien Official Artist Website Stylesheet
  Premium, Modern, Glassmorphic, and Dark-Themed
*/

/* --- Design Tokens & Variables --- */
:root {
  --bg-primary: #060609;
  --bg-secondary: #0d0d14;
  --bg-tertiary: #14141e;
  --bg-glass: rgba(13, 13, 20, 0.65);
  --bg-glass-hover: rgba(20, 20, 30, 0.8);
  
  --accent-violet: #9146FA;
  --accent-cyan: #0AB4FA;
  --accent-gradient: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-cyan) 100%);
  --accent-glow: 0 0 20px rgba(145, 70, 250, 0.35);
  --accent-glow-strong: 0 0 35px rgba(10, 180, 250, 0.5);
  
  --text-white: #ffffff;
  --text-gray-light: #e2e2e8;
  --text-gray-muted: #8c8c9e;
  --text-dark: #060609;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  
  --font-headings: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-violet) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-gray-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
body::-webkit-scrollbar-thumb {
  background: var(--accent-violet);
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* --- Layout Utilities --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.text-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 2px;
}

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

.section-header.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.max-width-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-gray-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Premium Cards (Glassmorphism) --- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--accent-glow);
  transform: translateY(-5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-white);
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: var(--accent-glow-strong);
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.03);
}

.btn-block {
  width: 100%;
}

/* --- Forms --- */
.premium-form .form-group {
  margin-bottom: 24px;
}

.premium-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(10, 180, 250, 0.2);
}

.premium-form select option {
  background: var(--bg-secondary);
  color: var(--text-white);
}

.form-row {
  margin-bottom: 0;
}

/* --- Header / Navigation --- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

#main-header.scrolled {
  background: rgba(6, 6, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 45px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

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

.nav-link {
  color: var(--text-gray-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

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

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: #060609 url('assets/images/image2.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 6, 9, 0.95) 20%, rgba(6, 6, 9, 0.7) 50%, rgba(6, 6, 9, 0.3) 100%),
              linear-gradient(to top, rgba(6, 6, 9, 1) 0%, rgba(6, 6, 9, 0) 40%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  opacity: 0;
  animation: pulse-glow 2.5s infinite, fade-in-element 1.2s cubic-bezier(0.19, 1, 0.22, 1) 2.5s forwards;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 25px;
  letter-spacing: 15px;
  opacity: 0;
  animation: hero-title-compress 1.6s cubic-bezier(0.19, 1, 0.22, 1) 2.7s forwards;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-gray-light);
  margin-bottom: 35px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-in-element 1.4s cubic-bezier(0.19, 1, 0.22, 1) 3.0s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fade-in-element 1.4s cubic-bezier(0.19, 1, 0.22, 1) 3.3s forwards;
}

@keyframes hero-title-compress {
  0% {
    letter-spacing: 18px;
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    letter-spacing: -2px;
    opacity: 1;
    filter: blur(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  opacity: 0.8;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-gray-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

/* --- Intro Section --- */
.lead-text {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-gray-light);
}

.card-icon {
  font-size: 2.2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.intro-card h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.intro-card p {
  color: var(--text-gray-muted);
  font-size: 0.95rem;
}

/* --- About Section --- */
.about-section {
  background-color: var(--bg-secondary);
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(145, 70, 250, 0.2), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.bio-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-gray-light);
}

.bio-text strong {
  color: var(--text-white);
}

.quote-text {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
  letter-spacing: -0.5px;
}

/* --- Music Section --- */
.track-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.track-artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.artwork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.track-card:hover .artwork-img {
  transform: scale(1.05);
}

.artwork-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.genre-tag {
  background: rgba(145, 70, 250, 0.2);
  border: 1px solid rgba(145, 70, 250, 0.4);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.track-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.track-title {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 4px;
  font-family: var(--font-headings);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.85rem;
  color: var(--text-gray-muted);
  margin-bottom: 18px;
}

.track-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-shop {
  flex-grow: 1;
  background: var(--accent-gradient);
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(145, 70, 250, 0.2);
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10, 180, 250, 0.4);
}

.btn-play-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 14px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.btn-play-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.listen-callout {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(145, 70, 250, 0.15) 0%, rgba(10, 180, 250, 0.05) 100%);
  border: 1px solid rgba(145, 70, 250, 0.2);
}

.listen-info h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.listen-info p {
  color: var(--text-gray-muted);
}

/* --- Videos Section --- */
.videos-section {
  background-color: var(--bg-secondary);
}

.video-grid {
  gap: 30px;
}

.span-col-2 {
  grid-column: span 2;
}

.video-card {
  padding: 0;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card .video-info {
  padding: 24px;
}

.video-card h3 {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.video-card p {
  color: var(--text-gray-muted);
  font-size: 0.95rem;
}

.section-footer {
  margin-top: 50px;
}

/* --- Bookings Section --- */
.bookings-section {
  position: relative;
}

.booking-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(145, 70, 250, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.bookings-section .container {
  position: relative;
  z-index: 2;
}

.bookings-lead {
  font-size: 1.25rem;
  color: var(--text-white);
  font-weight: 500;
  margin-bottom: 20px;
}

.services-offered {
  margin-top: 40px;
}

.services-offered h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
}

.services-list li {
  font-size: 0.95rem;
  color: var(--text-gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-list li i {
  color: var(--accent-cyan);
}

.booking-form-wrapper {
  padding: 40px;
}

.booking-form-wrapper h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.form-instruction {
  font-size: 0.9rem;
  color: var(--text-gray-muted);
  margin-bottom: 30px;
}

/* --- Events Section --- */
.events-section {
  background-color: var(--bg-secondary);
}

.events-list {
  padding: 0;
  margin-bottom: 40px;
}

.event-row {
  display: flex;
  align-items: center;
  padding: 25px 40px;
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}

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

.event-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: var(--text-white);
  border-radius: 10px;
  width: 70px;
  height: 70px;
  margin-right: 40px;
  flex-shrink: 0;
}

.event-date .day {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

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

.event-details {
  flex-grow: 1;
}

.event-details h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.event-details p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray-muted);
  margin-right: 30px;
}

.event-details p i {
  color: var(--accent-cyan);
}

.event-status.private {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray-muted);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Press & Media Section --- */
.epk-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.epk-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(145, 70, 250, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.epk-header {
  margin-bottom: 30px;
}

.epk-badge {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.epk-header h3 {
  font-family: var(--font-headings);
  font-size: 1.7rem;
  color: var(--text-white);
}

.epk-header p {
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.epk-list {
  list-style: none;
  margin-bottom: 40px;
}

.epk-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-gray-light);
  margin-bottom: 15px;
}

.epk-list li i {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  width: 20px;
}

.epk-footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.designer-credit {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  font-style: italic;
}

.press-inquiries {
  margin-top: 30px;
  margin-bottom: 30px;
}

.press-inquiries h3 {
  font-family: var(--font-headings);
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* --- Merchandise Section --- */
.merch-section {
  background-color: var(--bg-secondary);
}

.merch-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 20px;
}

.merch-placeholder-img {
  font-size: 3.5rem;
  color: var(--text-gray-muted);
  opacity: 0.3;
}

.merch-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--bg-primary);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.merch-info h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.merch-info .price {
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.merch-desc {
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.newsletter-box {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-color: rgba(10, 180, 250, 0.2);
}

.newsletter-info h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.newsletter-info p {
  color: var(--text-gray-muted);
}

.newsletter-form {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 450px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  color: var(--text-white);
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-violet);
}

.newsletter-form .btn {
  white-space: nowrap;
}

/* --- Contact Section --- */
.contact-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(145, 70, 250, 0.1);
  border: 1px solid rgba(145, 70, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-cyan);
  margin-right: 20px;
}

.contact-detail-item .details span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-link:hover {
  color: var(--accent-cyan);
}

.contact-note {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.contact-note i {
  color: var(--accent-cyan);
  margin-right: 8px;
}

.contact-note a {
  color: var(--text-white);
  font-weight: 500;
}

.contact-form-wrapper {
  padding: 45px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 30px;
}

/* --- Footer --- */
#main-footer {
  background-color: #030305;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr) 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-gray-muted);
  margin-bottom: 25px;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

.designer-name {
  color: var(--text-gray-light);
  font-weight: 500;
}

.footer-nav h4,
.footer-socials h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: var(--text-gray-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-nav ul li a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-gray-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icons a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--accent-glow);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

/* --- Modal Overlay --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 450px;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-gray-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-white);
}

.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.modal-icon.success {
  color: var(--accent-cyan);
}

.modal-icon.error {
  color: #ff3366;
}

.modal-content h3 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-gray-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* --- Reveal on Scroll Animations --- */
.animate-on-scroll {
  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);
}

.animate-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  animation: fade-in-up-anim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Keyframes & Animations --- */
@keyframes fade-in-up-anim {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(10, 180, 250, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(10, 180, 250, 0.5);
    color: var(--text-white);
  }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .span-col-2 {
    grid-column: span 1;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  
  /* Mobile Nav Menu */
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .listen-callout, .newsletter-box {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .event-row {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .event-details p {
    margin-right: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }
  
  .event-action {
    width: 100%;
    margin-top: 15px;
  }
  
  .event-action .btn {
    width: 100%;
  }
}

/* --- Premium Cinematic Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  visibility: visible;
}

#preloader.fade-out {
  visibility: hidden;
  transition: visibility 1.2s;
}

.preloader-curtain {
  width: 50vw;
  height: 100vh;
  background-color: #030305;
  transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1);
  pointer-events: auto;
}

.curtain-left {
  border-right: 1px solid rgba(145, 70, 250, 0.15);
}

.curtain-right {
  border-left: 1px solid rgba(10, 180, 250, 0.15);
}

/* Slide curtains left and right when loaded */
#preloader.fade-out .curtain-left {
  transform: translateX(-100%);
}

#preloader.fade-out .curtain-right {
  transform: translateX(100%);
}

.preloader-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 1;
}

#preloader.fade-out .preloader-content-wrapper {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  filter: blur(15px);
}

/* Horizontal Laser / Lens Flare */
.lens-flare-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  width: 100vw;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 30%, #fff 50%, var(--accent-violet) 70%, transparent 100%);
  opacity: 0;
  animation: flare-expand 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes flare-expand {
  0% {
    transform: translate(-50%, -50%) scaleX(0);
    opacity: 0;
  }
  30% {
    transform: translate(-50%, -50%) scaleX(0.7);
    opacity: 1;
    height: 3px;
  }
  80% {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 0.8;
    height: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 0;
  }
}

/* Logo container & shimmering reflection */
.preloader-logo-container {
  position: relative;
}

.logo-reflection-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cinematic-logo {
  height: 75px;
  width: auto;
  display: block;
  opacity: 0;
  transform: scale(1.15);
  filter: blur(10px) brightness(0.2);
  animation: logo-cinematic-reveal 2.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

@keyframes logo-cinematic-reveal {
  0% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(10px) brightness(0.2);
  }
  60% {
    opacity: 0.8;
    filter: blur(4px) brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1);
  }
}

/* Metallic diagonal shimmer shine sweep */
.glass-reflection {
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent 100%
  );
  transform: skewX(-30deg);
  animation: reflection-sweep 2.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s infinite;
}

@keyframes reflection-sweep {
  0% { left: -150%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

/* Pulsing background ambient aura */
.logo-glow-behind {
  position: absolute;
  width: 380px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(145, 70, 250, 0.4) 0%, rgba(10, 180, 250, 0.12) 50%, transparent 80%);
  filter: blur(35px);
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  animation: glow-fade-in 2.5s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards, glow-pulse 4s infinite alternate ease-in-out 3.3s;
}

@keyframes glow-fade-in {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes glow-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    filter: blur(30px);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    filter: blur(40px);
    opacity: 1;
  }
}

/* Equalizer Visualizer ripples */
.audio-ripple-loader {
  display: flex;
  gap: 6px;
  height: 18px;
  margin-top: 30px;
  opacity: 0;
  animation: fade-in-element 1s ease-out 1.4s forwards;
}

.audio-ripple-loader span {
  width: 3px;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 3px;
  transform-origin: bottom;
  animation: bar-dance 0.9s ease-in-out infinite alternate;
}

@keyframes bar-dance {
  0% { transform: scaleY(0.25); }
  100% { transform: scaleY(1.2); }
}

/* Brand line at the bottom */
.preloader-brand-line {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-gray-muted);
  margin-top: 25px;
  opacity: 0;
  text-transform: uppercase;
  animation: fade-in-element 1s ease-out 1.7s forwards;
}

@keyframes fade-in-element {
  to { opacity: 1; }
}
