/* COLOR SCHEME OPTION 1: Warm Gold & Charcoal (Elegant) */
/* Inspired by dashiki gold and professional sophistication */

:root {
  /* Primary Colors */
  --primary: #C9A227;       /* Rich Gold */
  --primary-dark: #A68520;
  --secondary: #1F2937;     /* Deep Charcoal */
  --accent: #D97706;        /* Warm Orange */

  /* Backgrounds */
  --bg-light: #FFFBF0;      /* Warm White */
  --bg-cream: #FFF8E7;      /* Soft Cream */
  --bg-dark: #1F2937;       /* Charcoal */

  /* Text */
  --text-dark: #1F2937;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;

  /* Utility */
  --white: #FFFFFF;
  --success: #059669;
  --border: #E5E7EB;
  --gold: #C9A227;
  --teal: #0D9488;
}

/* =========================================
   BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #374151;
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
}

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

/* New Logo Styles - Horizontal Layout */
.logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 15px;
  text-decoration: none;
}

.logo-icon {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.logo-name {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-name .highlight {
  color: var(--gold);
}

.logo-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.6rem;
  color: #9CA3AF;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .logo-name {
    font-size: 1.1rem;
  }
  .logo-icon {
    width: 55px;
  }
}

@media (max-width: 768px) {
  .logo-text {
    display: flex;
  }
  .logo-name {
    font-size: 0.95rem;
  }
  .logo-tagline {
    display: none;
  }
  .logo-icon {
    width: 45px;
  }
  .logo {
    gap: 10px;
  }
}

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

.nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px; /* Account for fixed header */
  background: #1a1a1a url('../images/hero-poster.jpg') center/cover no-repeat;
}

.hero.hero-workshops {
  background-image: url('../images/workshops-poster.jpg');
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hide browser's native play button on video */
.hero-video::-webkit-media-controls {
  display: none !important;
}
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.hero-video::-webkit-media-controls-play-button {
  display: none !important;
}
.hero-video::-moz-media-controls {
  display: none !important;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.55) 0%, rgba(31, 41, 55, 0.45) 100%);
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.hero-content p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.hero-content,
.hero-overlay,
.hero-click-overlay {
  transition: opacity 0.5s ease;
}

/* Hero Click Overlay */
.hero-click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-character {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.character-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-click-overlay:hover .character-image {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(201, 162, 39, 0.5);
}

.click-bubble {
  position: absolute;
  top: -20px;
  right: -60px;
  background: #FF3B3B;
  color: white;
  padding: 15px 25px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
  animation: bubble-bounce 1s ease-in-out infinite;
}

.click-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #FF3B3B;
}

@keyframes bubble-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-cream {
  background: var(--bg-cream);
}

.section-white {
  background: var(--white);
}

.section-gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
}

.section-teal {
  background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
  color: var(--white);
}

.section-teal .section-header h2 {
  color: #FFFFFF !important;
}

.section-teal .card {
  background: rgba(255, 255, 255, 0.95);
}

.section-charcoal {
  background: var(--secondary);
  color: var(--white);
}

.section-charcoal .section-header h2 {
  color: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header h2 {
  color: var(--primary);
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.8);
}

/* =========================================
   CARDS
   ========================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card h3,
.card h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.card p {
  color: var(--text-muted);
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.pricing-card li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  margin-right: 10px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  font-family: 'Lora', serif;
  line-height: 0;
  display: block;
  margin-bottom: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--secondary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-cream);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer p {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}

.footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   VIDEO MODAL
   ========================================= */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: color 0.3s ease;
}

.video-modal-close:hover {
  color: var(--primary);
}

/* Hero Play Button */
.hero-play-wrapper {
  position: relative;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}

.hero-thumbnail {
  width: 100%;
  max-width: 380px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-play-wrapper:hover .hero-thumbnail {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(201, 162, 39, 0.5);
  transition: all 0.3s ease;
}

.play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--white);
  margin-left: 5px;
}

.hero-play-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 35px rgba(201, 162, 39, 0.6);
}

.play-label {
  display: block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    display: none;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero-content h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section {
    padding: 60px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
