/* ============================================
   SUNFLOW AERIALS & FLOW ARTS — Styles
   Sunset color palette
   ============================================ */

:root {
  --bg: #FFF8F0;
  --text: #2D1810;
  --text-light: #5C3D2E;
  --primary: #D4860B;
  --primary-light: #E8A317;
  --accent: #E07028;
  --highlight: #F5C16C;
  --white: #ffffff;
  --card-bg: #FFFAF5;
  --border: #F0DCC8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
.section {
  padding: 96px 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.section__intro {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: -8px auto 48px;
  font-size: 1.1rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: var(--font-body);
}

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

.btn--primary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 134, 11, 0.3);
}

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

.btn--secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

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

/* Nav Book Now button */
.nav__book {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.nav__book::after {
  display: none !important;
}

.nav__book:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Pill badges */
.pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--highlight), #fde8c8);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 4px 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: rgba(255, 248, 240, 0.97);
  box-shadow: 0 2px 20px rgba(45, 24, 16, 0.08);
  backdrop-filter: blur(10px);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  transition: color 0.3s;
}

.nav--scrolled .nav__logo {
  color: var(--primary);
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav__links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav--scrolled .nav__links a {
  color: var(--text);
}

.nav--scrolled .nav__links a:hover {
  color: var(--primary);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav--scrolled .nav__toggle span {
  background: var(--text);
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 24, 16, 0.4) 0%,
    rgba(224, 112, 40, 0.35) 40%,
    rgba(212, 134, 11, 0.45) 70%,
    rgba(45, 24, 16, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.hero__content .btn + .btn {
  margin-left: 12px;
}

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

.about__text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about__mission-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.about__values {
  margin-top: 24px;
}

.about__image img {
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(45, 24, 16, 0.12);
}

/* ============================================
   CLASSES
   ============================================ */
.classes {
  background: var(--white);
}

.classes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.class-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 134, 11, 0.1);
}

.class-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.class-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.class-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.alyssa__image img {
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(45, 24, 16, 0.12);
}

.alyssa__text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.alyssa__philosophy {
  margin-top: 8px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #FFF3E0, #FFECD2);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.alyssa__philosophy strong {
  color: var(--text);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--wide {
  grid-column: span 2;
}

/* ============================================
   PRICING
   ============================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212, 134, 11, 0.12);
}

.pricing-card--featured {
  border: 2px solid var(--primary);
  position: relative;
}

.pricing-card__header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 24px;
  text-align: center;
}

.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.pricing-card__list {
  list-style: none;
  padding: 24px;
}

.pricing-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-card__list li:last-child {
  border-bottom: none;
}

.pricing-card__list li strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.pricing__gift {
  text-align: center;
  margin-top: 40px;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ============================================
   FIRST VISIT
   ============================================ */
.first-visit {
  background: var(--white);
}

.first-visit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.fv-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.fv-card ul {
  list-style: none;
}

.fv-card ul li {
  padding: 6px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 20px;
}

.fv-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: 600;
}

.fv-card ul li strong {
  color: var(--text);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 134, 11, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.contact__info {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  padding: 40px 32px;
  color: var(--white);
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact__details a {
  color: var(--white);
  font-weight: 500;
}

.contact__details a:hover {
  color: var(--highlight);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--highlight);
  letter-spacing: 3px;
}

.footer__brand p {
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__nav a:hover {
  color: var(--highlight);
}

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

.footer__social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--highlight);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .classes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 2rem;
  }

  /* Mobile nav */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right 0.3s;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  }

  .nav__links--open {
    right: 0;
  }

  .nav__links a {
    color: var(--text) !important;
    font-size: 1.1rem;
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid var(--border);
  }

  .nav__links a:hover {
    color: var(--primary) !important;
  }

  /* Layout stacks */
  .about__grid,
  .alyssa__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .alyssa__image {
    order: -1;
  }

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

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

  .first-visit__grid {
    grid-template-columns: 1fr;
  }

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

  .gallery__item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}
