/* Custom properties for the Little Crew design system */
:root {
  --bg-color: #07030e;
  --bg-color-alt: #0c061a;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary-color: #a855f7;       /* Neon Purple */
  --primary-glow: rgba(168, 85, 247, 0.5);
  --secondary-color: #ec4899;     /* Neon Pink */
  --secondary-glow: rgba(236, 72, 153, 0.5);
  --accent-color: #3b82f6;        /* Bright Blue */
  
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(13, 8, 28, 0.7) 0%, rgba(7, 3, 14, 0.95) 100%);
  
  --glass-bg: rgba(18, 10, 36, 0.45);
  --glass-border: rgba(168, 85, 247, 0.15);
  --glass-border-hover: rgba(236, 72, 153, 0.35);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* CSS Reset & General Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #251242;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Dynamic Background Glow Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  animation: orb-float 25s infinite alternate ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -150px;
  left: -150px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--secondary-color);
  bottom: -200px;
  right: -150px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: 40%;
  right: 10%;
  opacity: 0.25;
  animation-duration: 20s;
  animation-delay: -10s;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(80px, 60px) scale(1.1) rotate(180deg);
  }
  100% {
    transform: translate(-40px, -80px) scale(0.9) rotate(360deg);
  }
}

/* Glassmorphism Card Style base class */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-normal), 
              border-color var(--transition-normal), 
              box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 40px 0 rgba(168, 85, 247, 0.15);
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: white;
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: var(--primary-color);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Floating Navigation Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.main-header.scrolled {
  height: 70px;
  background: rgba(7, 3, 14, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.header-logo {
  height: 48px;
  transition: transform var(--transition-normal);
}

.logo-link:hover .header-logo {
  transform: scale(1.05);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.nav-item:hover {
  color: white;
}

.nav-item:hover::after {
  width: 100%;
}

/* Hamburger menu button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-menu .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(7, 3, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.mobile-nav-item {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.mobile-nav-item:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.mobile-cta {
  background: var(--gradient-primary);
  padding: 0.75rem 2.5rem;
  border-radius: 30px;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Hamburger menu open states */
.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section CSS */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 5px rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
  }
  100% {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.5);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-container-hero {
  position: relative;
  width: 100%;
  max-width: 320px;
  animation: float-logo 6s infinite ease-in-out;
}

.hero-logo-large {
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.2));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.5;
}

@keyframes float-logo {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouse-scroll 1.6s infinite;
}

@keyframes mouse-scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

/* Section Header Styles */
.id-anchor {
  scroll-margin-top: var(--header-height);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.section-accent-bar {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* About Section CSS */
.about-section {
  padding: 8rem 0;
  position: relative;
  background-color: var(--bg-color-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.about-visual-box {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
}

.about-visual-box::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px dashed rgba(168, 85, 247, 0.2);
  border-radius: 24px;
  transform: rotate(-3deg);
  z-index: 1;
}

.visual-card {
  width: 90%;
  padding: 3rem 2.5rem;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.08);
}

.visual-card-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.visual-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.visual-card-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--primary-color);
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-secondary);
}

.lead-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.highlight-icon {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Services Section CSS */
.services-section {
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.service-icon-box {
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all var(--transition-fast);
}

.service-icon {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon-box {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--primary-glow);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

/* Service Quote Styling */
.services-quote-container {
  padding: 3rem 0 0;
}

.services-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.glow-text {
  color: white;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  font-weight: 700;
}

/* Events Section CSS */
.events-section {
  padding: 8rem 0;
  background-color: var(--bg-color-alt);
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.flex-header .section-subtitle {
  margin-bottom: 0;
  text-align: left;
}

.events-filter {
  display: flex;
  gap: 0.75rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.06);
}

.event-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px; /* Tall poster layout */
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

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

.event-date-badge .month {
  font-size: 0.75rem;
  font-weight: 700;
}

.event-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.event-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.event-artist-row {
  margin-bottom: 1.5rem;
}

.artist-badge {
  display: inline-block;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--primary-color);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  letter-spacing: 0.05rem;
}

.event-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.event-promo-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.05rem;
}

/* Showcase Banner Card */
.showcase-card {
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.15) 0%, rgba(18, 10, 36, 0.5) 70%);
  border: 1px dashed rgba(168, 85, 247, 0.3);
}

.showcase-content {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.julix-logo-badge {
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.julix-svg {
  width: 140px;
  height: 56px;
}

.showcase-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.showcase-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 320px;
}

/* Contact & Footer Section CSS */
.contact-section {
  padding: 8rem 0 2rem;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

.contact-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.contact-cta-highlight {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.detail-value:hover {
  color: var(--primary-color);
}

/* Contact Form CSS */
.contact-form {
  padding: 3rem 2.5rem;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #120924;
  color: white;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* Footer CSS */
.main-footer {
  position: relative;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 3.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.phrase-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Interactive Event Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 3, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 90%;
  max-width: 600px;
  padding: 3rem 2.5rem;
  position: relative;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-banner {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

.modal-title {
  font-size: 1.8rem;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.modal-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animations for scroll fade-in */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-visual-box {
    height: 320px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 70px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .logo-container-hero {
    max-width: 240px;
  }
  
  .flex-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .events-filter {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .modal-card {
    padding: 2rem 1.5rem;
  }
  
  .modal-meta-grid {
    grid-template-columns: 1fr;
  }
}

/* Modal and filter keyframe animations */
body.no-scroll {
  overflow: hidden;
}

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