/* =====================
   RESET & VARIABLES
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #E8A82C;
  --yellow-dark: #C9901A;
  --yellow-light: #FDF3DC;
  --dark: #1A1A1A;
  --dark-2: #2D2D2D;
  --gray: #6B6B6B;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --font: 'Nunito', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 { font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
p { color: var(--gray); }

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--yellow { background: var(--yellow-light); }
.section--dark { background: var(--dark-2); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section__desc {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}
.btn--primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: #333; }

.btn--full { width: 100%; }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav__logo img { height: 44px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--yellow); }

.nav__cta {
  background: var(--yellow) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
}
.nav__cta:hover { background: var(--yellow-dark) !important; color: var(--white) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__logo {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(232,168,44,0.35));
  animation: float 4s ease-in-out infinite;
}

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

.hero__tagline {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  max-width: 480px;
  margin: 0;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Decorative bubbles */
.hero__bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.06;
}
.bubble--1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.bubble--2 { width: 250px; height: 250px; bottom: 60px; left: -60px; }
.bubble--3 { width: 180px; height: 180px; top: 40%; right: 15%; }

/* =====================
   ABOUT
   ===================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================
   ABOUT IMAGE
   ===================== */
.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* =====================
   PLACEHOLDER IMAGE
   ===================== */
.placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 2px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  font-weight: 700;
}

/* =====================
   SHOWS
   ===================== */
.shows__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.show-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.show-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.show-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--white);
  border-radius: var(--radius-sm);
  width: 60px;
  height: 64px;
  flex-shrink: 0;
}

.show-card__day {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.show-card__month {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.show-card__info { flex: 1; }

.show-card__title {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.show-card__venue, .show-card__time {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

/* =====================
   WORKSHOPS
   ===================== */
.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workshop-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.workshop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.workshop-card--featured {
  background: var(--yellow);
  color: var(--white);
}
.workshop-card--featured h3 { color: var(--white); }
.workshop-card--featured p { color: rgba(255,255,255,0.85); }
.workshop-card--featured .workshop-card__details li { color: rgba(255,255,255,0.9); }
.workshop-card--featured .btn--primary {
  background: var(--white);
  color: var(--yellow);
  border-color: var(--white);
}
.workshop-card--featured .btn--primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
}

.workshop-card__icon { font-size: 2rem; }

.workshop-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}

.workshop-card p { margin: 0; font-size: 0.95rem; }

.workshop-card__details {
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.workshop-card__details li {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.workshop-card__details li::before {
  content: '→';
  color: var(--yellow);
}
.workshop-card--featured .workshop-card__details li::before {
  color: rgba(255,255,255,0.6);
}

.workshop-card .btn { margin-top: auto; }

/* =====================
   GALLERY
   ===================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: opacity var(--transition);
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__item:hover { opacity: 0.85; }

/* =====================
   CONTACT
   ===================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact__info h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__list svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.contact__list a {
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact__list a:hover { color: var(--yellow); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--dark);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--yellow);
}

.form__group textarea { resize: vertical; }

.form__note {
  text-align: center;
  font-weight: 700;
}
.form__note--success { color: var(--yellow-dark); }
.form__note--error   { color: #c0392b; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--yellow); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshops__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .nav { padding: 14px 20px; }

  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 24px 32px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow-md);
  }

  .nav__links.open { display: flex; }

  .nav__links a { font-size: 1.1rem; }

  .nav__burger { display: flex; }

  .nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.active span:nth-child(2) { opacity: 0; }
  .nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__actions { flex-direction: column; }

  .show-card {
    flex-wrap: wrap;
    gap: 16px;
  }

  .show-card .btn { width: 100%; }

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

  .about__stats { gap: 20px; }

  .footer__inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
