/* TheCenti - Party Band Design System */

/* Google Fonts - Syne + Quicksand combo (Sans Friendly) */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Quicksand:wght@300;400;500;600&display=swap');

/* CSS Custom Properties - Live Stage Theme */
:root {
  /* Colors */
  --bg-dark: #0a0a0a;           /* Stage black */
  --bg-stage: #1a1a2e;         /* Deep stage blue */
  --text-light: #ffffff;       /* Spotlight white */
  --text-gray: #b0b0b0;        /* Dimmed lights */
  --accent-gold: #ffd700;      /* Stage lights */
  --accent-red: #ff4444;       /* Energy/live */
  --accent-purple: #8b5cf6;    /* AI/tech vibes */
  
  /* Typography */
  --font-display: 'Syne', sans-serif;      /* Headlines, brand */
  --font-body: 'Quicksand', sans-serif;    /* Body, readable */
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-gray);
}

/* Links */
a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-red);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.btn-ai {
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-red));
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.btn-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-smooth);
}

.btn-ai:hover::before {
  left: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  height: var(--header-height);
}

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

.logo {
  height: 40px;
  transition: var(--transition-smooth);
}

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

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition-fast);
}

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

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* Main Content */
main {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

/* Hero Section */
.hero {
  padding: var(--space-xxl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-stage) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 40% 60%;
    text-align: left;
  }
}

.hero-text h1 {
  margin-bottom: var(--space-md);
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.hero-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

/* Live Hub Section */
.live-hub {
  padding: var(--space-xxl) 0;
  background: var(--bg-stage);
}

.live-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.live-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-xl);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.live-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.live-card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.live-card h3 {
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

/* Section Styles */
.section {
  padding: var(--space-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-lg);
  border-radius: 15px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  font-size: 1.5rem;
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-purple { color: var(--accent-purple); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }