/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* HERO */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Fallback image sits behind video */
.hero-img-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* When video loads, hide the fallback */
.hero-video + .hero-img-fallback {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    oklch(0.15 0.05 40 / 0.85) 0%,
    oklch(0.15 0.05 40 / 0.6) 50%,
    oklch(0.15 0.05 40 / 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
  width: 100%;
}

.hero-kicker {
  margin-bottom: var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 5vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: var(--space-5);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero-btn {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  min-height: 48px;
  white-space: nowrap;
}

.hero-btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* DESTINATIONS GRID */
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-5);
}

.dest-feature {
  grid-row: span 2;
}

.dest-feature .card-img {
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .dest-feature { grid-row: span 1; }
}

/* ABOUT BAND */
.about-band {
  background: var(--color-primary);
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
  color: white;
}

.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}

.about-band .section-kicker { color: rgba(255,255,255,0.7); }
.about-band .section-title { color: white; }
.about-band .section-subtitle { color: rgba(255,255,255,0.82); }

.about-band-img {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-band-inner { grid-template-columns: 1fr; }
  .about-band-img { order: -1; }
}

/* VIDEOS GRID */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  position: relative;
  padding-top: 56.25%;
  background: var(--color-surface-dynamic);
}

.video-info {
  padding: var(--space-4) var(--space-5);
}

.video-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-2) 0 var(--space-2);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid .video-card:last-child { display: none; }
}

@media (max-width: 560px) {
  .videos-grid { grid-template-columns: 1fr; }
  .videos-grid .video-card:last-child { display: block; }
}

/* TIPS GRID */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.tip-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-decoration: none;
  display: block;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}

.tip-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.tip-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tips-grid { grid-template-columns: 1fr; }
}

/* INSTAGRAM GRID */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
}

.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-dynamic);
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-tile:hover img { transform: scale(1.06); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-tile:hover .insta-overlay { opacity: 1; }

/* Video reel tile */
.insta-reel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-tile--video:hover .insta-reel { transform: scale(1.06); }
.insta-reel-badge {
  flex-direction: column;
  gap: 4px;
  opacity: 1;
  background: rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* MONETIZE GRID */
.monetize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) {
  .monetize-grid { grid-template-columns: repeat(2, 1fr); }
}

.monetize-card {
  border: 1px solid;
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.monetize-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.monetize-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.monetize-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.monetize-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: none;
}

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