/* ============================================
   NICOLE BELAFONTE JAZZ & SWING LOUNGE
   Art Deco Elegance | Vintage Broadcasting
   PINK & CREAM EDITION
   ============================================ */

:root {
  --rose-gold: #E8B4B8;
  --deep-rose: #C97C8B;
  --dusty-pink: #D4A5A5;
  --mauve: #9B6B7E;
  --dark-mauve: #6B4654;
  --cream: #FFF8F0;
  --warm-cream: #F5EDE0;
  --blush: #F4D9D0;
  --charcoal-pink: #3D2E32;
  --deep-plum: #4A3340;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--charcoal-pink) 0%, var(--deep-plum) 100%);
  color: var(--charcoal-pink);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--warm-cream);
  box-shadow: 0 0 60px rgba(201, 124, 139, 0.3);
}

/* ============================================
   HEADER - Art Deco Glory
   ============================================ */


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--deep-rose);
  color: var(--cream);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.schedule-note {
  font-size: 0.9rem;
  color: var(--mauve);
  margin-top: 0.25rem;
}

.header {
  background: linear-gradient(to bottom, var(--cream), var(--warm-cream));
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--deep-rose);
}

.deco-border-top,
.deco-border-bottom {
  height: 3px;
  background: linear-gradient(to right, 
    transparent 0%, 
    var(--dusty-pink) 20%, 
    var(--deep-rose) 80%, 
    transparent 100%);
  position: relative;
}

.deco-border-top::before,
.deco-border-top::after,
.deco-border-bottom::before,
.deco-border-bottom::after {
  content: '◆';
  position: absolute;
  color: var(--deep-rose);
  font-size: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.deco-border-top::before { left: 15%; }
.deco-border-top::after { right: 15%; }
.deco-border-bottom::before { left: 15%; }
.deco-border-bottom::after { right: 15%; }

.main-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--deep-rose);
  margin: 1.5rem 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(201, 124, 139, 0.3),
               0 0 20px rgba(232, 180, 184, 0.4);
}

.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--mauve);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

/* ============================================
   NAVIGATION - Classic Elegance
   ============================================ */

.navigation {
  background: var(--blush);
  border-bottom: 1px solid var(--deep-rose);
  border-top: 1px solid var(--deep-rose);
}

.navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.navigation li {
  margin: 0;
}

.navigation a {
  display: block;
  padding: 1.2rem 2.5rem;
  color: var(--charcoal-pink);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.navigation a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--deep-rose);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navigation a:hover {
  color: var(--deep-rose);
  background: rgba(201, 124, 139, 0.1);
}

.navigation a:hover::before {
  width: 80%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, 
    rgba(232, 180, 184, 0.15) 0%, 
    rgba(244, 217, 208, 0.2) 100%);
  border-bottom: 2px solid rgba(201, 124, 139, 0.3);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--deep-rose);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--dusty-pink), transparent);
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--charcoal-pink);
  margin-bottom: 2rem;
  text-align: center;
}

.cta-button {
  margin: 2rem 0;
}

.watch-button,
.watch-button-large {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--mauve), var(--deep-rose));
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--deep-rose);
  box-shadow: 0 4px 15px rgba(201, 124, 139, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.watch-button::before,
.watch-button-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.watch-button:hover::before,
.watch-button-large:hover::before {
  width: 300px;
  height: 300px;
}

.watch-button:hover,
.watch-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 124, 139, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: var(--rose-gold);
}

.watch-button-large {
  padding: 1.5rem 4rem;
  font-size: 1.3rem;
}

.follower-count {
  color: var(--mauve);
  font-style: italic;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.deco-divider {
  width: 200px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--dusty-pink), transparent);
  margin: 3rem auto;
  position: relative;
}

.deco-divider::before,
.deco-divider::after {
  content: '◆';
  position: absolute;
  color: var(--deep-rose);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.deco-divider::before { left: -15px; }
.deco-divider::after { right: -15px; }

/* ============================================
   FEATURES - Triple Card Layout
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background: var(--cream);
}

.feature-card {
  background: linear-gradient(135deg, var(--warm-cream), var(--blush));
  border: 2px solid rgba(201, 124, 139, 0.3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--mauve), var(--deep-rose));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--deep-rose);
  box-shadow: 0 10px 30px rgba(201, 124, 139, 0.3);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: grayscale(0) sepia(0.3) hue-rotate(320deg);
}

.feature-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--deep-rose);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.feature-card p {
  color: var(--charcoal-pink);
  line-height: 1.7;
}

/* ============================================
   EVENTS / SCHEDULE
   ============================================ */

.events {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, var(--warm-cream), var(--blush));
}

.events .section-title {
  text-align: center;
  display: block;
  margin-bottom: 3rem;
}

.event-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: rgba(232, 180, 184, 0.15);
  border-left: 4px solid var(--deep-rose);
  border-right: 1px solid rgba(201, 124, 139, 0.2);
  transition: all 0.3s ease;
}

.event-item:hover {
  background: rgba(232, 180, 184, 0.25);
  border-left-width: 6px;
  transform: translateX(5px);
}

.event-date {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--deep-rose);
  min-width: 120px;
  text-align: center;
  font-weight: 600;
}

.event-details h3 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal-pink);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.event-details p {
  color: var(--mauve);
  font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: 4rem 2rem;
  background: var(--cream);
  border-top: 2px solid rgba(201, 124, 139, 0.3);
  border-bottom: 2px solid rgba(201, 124, 139, 0.3);
}

.about-section .section-title {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--charcoal-pink);
  text-align: justify;
}

.about-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  margin: 0.1rem 0.2rem 0 0;
  color: var(--deep-rose);
}

/* Add to your existing CSS */

.about-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--deep-rose);
  margin-bottom: 2rem;
  text-align: center;
}

.about-subsection {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--deep-rose);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(201, 124, 139, 0.3);
  padding-bottom: 0.5rem;
}

.about-content a {
  color: var(--deep-rose);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.about-content a:hover {
  color: var(--mauve);
  text-shadow: 0 0 5px rgba(201, 124, 139, 0.3);
}

.signature {
  margin-top: 2.5rem;
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

.signature em {
  font-size: 1.3rem;
  color: var(--deep-rose);
}

.signature-title {
  font-size: 0.9rem;
  color: var(--mauve);
  font-style: italic;
}

.schedule-note {
  font-size: 0.9rem;
  color: var(--mauve);
  margin-top: 0.25rem;
  font-style: italic;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--deep-rose);
  color: var(--cream);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, 
    rgba(232, 180, 184, 0.2) 0%, 
    rgba(212, 165, 165, 0.15) 100%);
  position: relative;
}

.quote-section::before,
.quote-section::after {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  color: rgba(201, 124, 139, 0.2);
  line-height: 1;
}

.quote-section::before {
  top: 1rem;
  left: 2rem;
}

.quote-section::after {
  bottom: 1rem;
  right: 2rem;
  transform: rotate(180deg);
}

.quote-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--charcoal-pink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-family: 'Cinzel', serif;
  color: var(--deep-rose);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

/* ============================================
   WATCH SECTION
   ============================================ */

.watch-section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--warm-cream);
}

.watch-content p {
  font-size: 1.3rem;
  color: var(--mauve);
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--charcoal-pink);
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
  border-top: 3px solid var(--deep-rose);
}

.footer p {
  color: var(--blush);
  margin-bottom: 1rem;
}

.footer-links {
  margin-top: 1.5rem;
}

.footer-links a {
  color: var(--rose-gold);
  text-decoration: none;
  margin: 0 1rem;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}

.footer-links a:hover {
  color: var(--cream);
  text-shadow: 0 0 10px rgba(232, 180, 184, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .navigation a {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .event-item {
    flex-direction: column;
    text-align: center;
  }
  
  .quote-text {
    font-size: 1.3rem;
  }
  
  .quote-section::before,
  .quote-section::after {
    font-size: 6rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 2rem 1rem;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 2rem 1rem;
  }
  
  .watch-button,
  .watch-button-large {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}
