@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Marcellus+SC&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --primary: #03a9f4;
  --primary-dark: #026e9f;
  --secondary: #f79007;
  --accent: #00bf87;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-dark: #17252a;
  --text: #17252a;
  --text-light: #808080;
  --white: #ffffff;
  --border: #e0e0e0;
  /* Legacy aliases for inline styles that reference old vars */
  --gold: #03a9f4;
  --gold-light: #0288d1;
  --navy: #17252a;
  --navy-light: #17252a;
  --navy-lighter: #f5f5f5;
  --gray: #808080;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 112.5%; }  /* 18px base */

body {
  font-family: 'Cabin', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Marcellus SC', serif;
  color: var(--text);
}

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

/* Navigation */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.3s, box-shadow 0.3s;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--text);
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  color: var(--text); font-size: 1.05rem; font-weight: 500; position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-top-bar {
  background: var(--bg-alt);
  padding: 0.4rem 2rem;
  display: flex; justify-content: flex-end; gap: 1.5rem;
  font-size: 0.9rem; color: var(--text-light);
}
.nav-top-bar a { color: var(--text-light); }
.nav-top-bar a:hover { color: var(--primary); }
.nav-top-bar i { margin-right: 0.3rem; }

.hamburger {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
}
.hamburger span {
  width: 25px; height: 2px; background: var(--text); transition: 0.3s;
}

/* 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;
  filter: brightness(0.5);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,169,244,0.5), rgba(255,255,255,0.2));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem; max-width: 900px;
}
.hero h1 {
  font-size: 3.5rem; font-weight: 800; margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 850px; margin-inline: auto; }

.btn {
  display: inline-block; padding: 0.8rem 2rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 1rem; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-gold {
  background: var(--primary);
  color: var(--white); box-shadow: 0 4px 15px rgba(3,169,244,0.3);
}
.btn-gold:hover {
  background: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 6px 25px rgba(3,169,244,0.4);
  color: var(--white);
}
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Sections */
.section { padding: 5rem 2rem; }
.section-dark, .section-light { background: var(--bg); }
.section-darker, .section-alt { background: var(--bg-alt); }
.section-title {
  text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: var(--text);
}
.section-subtitle {
  text-align: center; color: var(--text-light); max-width: 700px; margin: 0 auto 3rem;
  font-size: 1.2rem;
}
.gold-line {
  width: 60px; height: 3px; background: var(--primary); margin: 0 auto 2rem; border-radius: 2px;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }

/* Counters */
.counters { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.counter-item { text-align: center; }
.counter-number { font-size: 3.5rem; font-weight: 800; color: var(--primary); font-family: 'Marcellus SC', serif; }
.counter-label { color: var(--text-light); font-size: 1rem; margin-top: 0.5rem; }

/* Timeline */
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: var(--primary); opacity: 0.3;
}
.timeline-item {
  display: flex; gap: 1.5rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.timeline-date {
  min-width: 64px; width: 64px; height: 54px; border-radius: 12px;
  background: var(--primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0; gap: 1px;
}
.td-day { font-weight: 800; font-size: 1rem; line-height: 1; }
.td-month { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.03em; opacity: 0.9; text-transform: lowercase; }
.timeline-content {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.5rem; flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.timeline-content h4 { color: var(--primary); margin-bottom: 0.3rem; font-size: 1rem; }
.timeline-content p { color: var(--text-light); font-size: 1rem; }
.product-img {
  width: 100%; height: 180px; object-fit: contain;
  border-radius: 8px; margin-bottom: 0.75rem;
  background: #f9f9f9;
}
.product-card a img.product-img:hover {
  opacity: 0.85; transition: opacity 0.2s;
}
.timeline-img {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: 8px; margin-bottom: 0.75rem;
}

/* Pricing cards */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem; text-align: center; transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pricing-card:hover {
  transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.pricing-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.pricing-card .price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 0.5rem 0; }
.pricing-card .details { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }

/* Product cards */
.product-card {
  background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; text-align: center; transition: all 0.3s; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.product-card .badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--secondary);
  color: white; padding: 0.25rem 0.75rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700;
}
.product-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--text); }
.product-card .price { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 0.5rem 0; }
.product-card .old-price { text-decoration: line-through; color: var(--text-light); font-size: 1rem; }

/* Podcast card */
.podcast-card {
  background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; transition: all 0.3s; display: flex; align-items: center; gap: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.podcast-card:hover {
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.podcast-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.podcast-icon i { font-size: 1.5rem; color: var(--white); }

/* Film section */
.film-hero {
  position: relative; padding: 4rem 2rem; border-radius: 12px; overflow: hidden;
  margin-bottom: 2rem;
}
.film-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.film-hero-content { position: relative; z-index: 2; max-width: 600px; }
.film-hero h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--white); }
.film-hero p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

/* Contact form */
.form-glass {
  background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 2.5rem; max-width: 600px; margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-light); font-size: 1rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-alt);
  color: var(--text); font-family: 'Cabin', sans-serif; font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Footer */
.footer {
  background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto 3rem;
}
.footer-col h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1.1rem; }
.footer-col p, .footer-col a { color: #b0b0b0; font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--white);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-bottom {
  text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  color: #b0b0b0; font-size: 0.95rem; max-width: 1200px; margin: 0 auto;
}

/* Animations */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Page hero (inner pages) */
.page-hero {
  padding: 8rem 2rem 4rem; text-align: center;
  background: url('img/hero-costumes.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.page-hero h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 700px; margin: 0 auto; position: relative; }
.page-hero .gold-line { background: var(--white); position: relative; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); flex-direction: column;
    padding: 1rem 2rem; gap: 0.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .counters { gap: 2rem; }
  .counter-number { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-top-bar { display: none; }
  .podcast-card { flex-direction: column; text-align: center; }
  .timeline::before { left: 20px; }
}
