/* Homepage Specific Styles - Avium Events */
/* Glassmorphism Design for Professional AV Production */

/* ========== HERO SECTION ========== */

.hero-glass {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fern) 0%, var(--taupe) 100%);
}

/* Placeholder for hero background image */
.hero-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 0.3; /* Placeholder gradient while no image */
}

.hero-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: -1;
}

.hero-content-glass {
  max-width: 900px;
  width: 90%;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ========== SERVICE TIERS PREVIEW SECTION ========== */

.service-tiers-preview {
  background: var(--ivory);
}

.service-tiers-grid {
  margin-top: 3rem;
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
}

.tier-header h3 {
  font-size: var(--font-size-xl);
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.tier-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: var(--font-size-base);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: '✓ ';
  color: var(--sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

.tier-ideal {
  font-size: var(--font-size-sm);
  font-style: italic;
  color: var(--text-secondary);
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--sage-light);
  border-radius: 8px;
  text-align: center;
}

/* ========== TARGET MARKETS SECTION ========== */

.target-markets {
  position: relative;
  min-height: 600px;
}

/* Fallback gradient when no background image */
.target-markets::before {
  background: linear-gradient(135deg, var(--taupe) 0%, var(--fern) 50%, var(--sage) 100%);
}

.target-grid {
  margin-top: 3rem;
}

.target-card {
  text-align: center;
  transition: var(--transition-smooth);
}

.target-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.target-card h3 {
  font-size: var(--font-size-lg);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.target-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-relaxed);
}

/* ========== WHY AVIUM SECTION ========== */

.why-avium {
  background: var(--timberwolf);
}

.why-card {
  padding: 3rem;
}

.why-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: var(--font-size-2xl);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.why-features {
  list-style: none;
  padding: 0;
}

.why-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-muted);
}

.why-features li:last-child {
  border-bottom: none;
}

.why-features strong {
  color: var(--sage);
  font-weight: var(--font-weight-semibold);
}

/* ========== STATS SECTION ========== */

.stats-section {
  background: var(--ivory);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

/* ========== CTA SECTION ========== */

.cta-section {
  background: linear-gradient(135deg, var(--sage) 0%, var(--fern) 100%);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/backgrounds/cta-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-card {
  text-align: center;
  padding: 4rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: var(--font-size-3xl);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.cta-card p {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .hero-glass {
    min-height: 600px;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .service-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-tier-card.featured {
    transform: scale(1.02);
  }

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

  .why-card {
    padding: 2rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .hero-glass {
    min-height: 500px;
  }

  .hero-content-glass {
    padding: 2.5rem;
  }

  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .service-tier-card {
    padding: 2rem;
  }

  .service-tier-card.featured {
    transform: scale(1);
  }

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

  .target-card {
    padding: 2rem;
  }

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

  .why-card {
    padding: 2rem;
  }

  .why-icon {
    font-size: 2.5rem;
  }

  .glass-stats-bar {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .stat-item {
    width: 100%;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-card h2 {
    font-size: var(--font-size-2xl);
  }

  .cta-card p {
    font-size: var(--font-size-base);
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Disable parallax on mobile */
  .parallax-bg {
    background-attachment: scroll;
  }

  .target-markets {
    min-height: auto;
    padding: 4rem 0;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .hero-glass {
    min-height: 450px;
  }

  .hero-content-glass {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: var(--font-size-xl);
  }

  .tier-header h3 {
    font-size: var(--font-size-lg);
  }

  .price {
    font-size: var(--font-size-2xl);
  }

  .target-icon {
    font-size: 2.5rem;
  }

  .target-card h3 {
    font-size: var(--font-size-base);
  }

  .why-card h3 {
    font-size: var(--font-size-xl);
  }

  .stat-number {
    font-size: var(--font-size-2xl);
  }

  .cta-card {
    padding: 2rem 1rem;
  }

  .cta-card h2 {
    font-size: var(--font-size-xl);
  }
}

/* ========== ANIMATIONS ========== */

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

/* Scroll-triggered animations will be handled by JavaScript */
.service-tier-card,
.target-card,
.why-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-tier-card.animate-in,
.target-card.animate-in,
.why-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.service-tier-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-tier-card:nth-child(2) {
  transition-delay: 0.2s;
}

.service-tier-card:nth-child(3) {
  transition-delay: 0.3s;
}

.target-card:nth-child(1) {
  transition-delay: 0.1s;
}

.target-card:nth-child(2) {
  transition-delay: 0.2s;
}

.target-card:nth-child(3) {
  transition-delay: 0.3s;
}

.target-card:nth-child(4) {
  transition-delay: 0.4s;
}
