/* Add your styles here */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Outfit', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.sky-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.sky-glow-a {
  width: 300px;
  height: 300px;
  background: #ff6b6b;
  top: -100px;
  left: -100px;
}

.sky-glow-b {
  width: 400px;
  height: 400px;
  background: #4ecdc4;
  bottom: -200px;
  right: -200px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  font-family: 'Fredoka', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.brand-orb {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-cta {
  background: white;
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
}

main {
  padding-top: 80px;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  color: white;
}

.hero h1 {
  font-family: 'Fredoka', cursive;
  font-size: 3rem;
  margin: 1rem 0;
}

.hero-copy {
  font-size: 1.2rem;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #667eea;
}

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

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-stat h3 {
  font-family: 'Fredoka', cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: 'Fredoka', cursive;
  font-size: 2.5rem;
  color: white;
  margin: 1rem 0;
}

.eyebrow {
  color: #4ecdc4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timeline article {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  position: relative;
}

.timeline article span {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline article h3 {
  font-family: 'Fredoka', cursive;
  margin-top: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.feature-card h3 {
  font-family: 'Fredoka', cursive;
  margin-bottom: 1rem;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.shot-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.shot-placeholder {
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.final-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin: 4rem 0;
}

.final-cta h2 {
  font-family: 'Fredoka', cursive;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.reveal {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}