/* ========================================
   Glacier Mist - Aura (from you)
======================================== */
body {
  background-color: #faf8f2;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

.aura-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.aura-layer-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 0%,
    rgba(77, 210, 255, 0.12) 28%,
    rgb(255, 255, 255) 48%,
    rgb(53, 230, 192) 68%,
    rgb(91, 110, 245) 100%
  );
  mix-blend-mode: multiply;
  filter: blur(90px);
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

.aura-layer-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 0%,
    rgba(77, 210, 255, 0.22) 34%,
    rgb(255, 255, 255) 66%,
    rgb(53, 230, 192) 82%,
    rgb(91, 110, 245) 100%
  );
  mix-blend-mode: multiply;
  filter: blur(90px);
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

.aura-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ========================================
   Header & Glowing Logo
======================================== */
.header {
  padding: 32px 0 20px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glowShift 6s ease-in-out infinite;
}

@keyframes glowShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ========================================
   Hero
======================================== */
.hero {
  padding: 40px 0 60px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #111;
  letter-spacing: -0.8px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #444;
  max-width: 620px;
  margin: 0;
}

/* ========================================
   Sections
======================================== */
.section {
  margin-bottom: 70px;
}

.section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 18px;
  color: #111;
}

.section p {
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 16px;
}

.highlight {
  background: rgba(255, 255, 255, 0.55);
  padding: 18px 22px;
  border-radius: 14px;
  border-left: 4px solid #3b82f6;
  font-weight: 500;
}

/* ========================================
   Media Section (Podcast + Video)
======================================== */
.media-intro {
  margin-bottom: 28px !important;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.media-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.media-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.media-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
}

.audio-player {
  width: 100%;
  border-radius: 10px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* ========================================
   Subscribe Form
======================================== */
.subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  max-width: 480px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-form input:focus {
  border-color: #3b82f6;
}

.subscribe-form button {
  padding: 14px 26px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.form-message {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #059669;
  min-height: 24px;
}

/* ========================================
   Contact Icons
======================================== */
.contact-icons {
  display: flex;
  gap: 22px;
  margin-top: 12px;
}

.contact-icons a {
  color: #374151;
  transition: color 0.2s, transform 0.2s;
}

.contact-icons a:hover {
  color: #3b82f6;
  transform: translateY(-3px);
}

/* ========================================
   Footer
======================================== */
.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}

.footer strong {
  color: #111;
}

.copyright {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #888;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 700px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .aura-layer-1,
  .aura-layer-2 {
    filter: blur(70px);
  }

  .logo-name {
    font-size: 1.45rem;
  }
}

/* Desktop blur increase */
@media (min-width: 900px) {
  .aura-layer-1,
  .aura-layer-2 {
    filter: blur(130px);
  }
}