/* General Reset & Fonts */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #0d0221;
  color: #fff;
}
h1, h2, h3 {
  /* font-family: 'Merriweather', serif !important; */
  font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem; margin-bottom: 30px;
  background: linear-gradient(to right, #ffcc66, #ff66cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Unified Section Style */
.card {
            /* background: linear-gradient(to right, #2d035a, #3a0ca3); */
             background: radial-gradient(circle, #1B0C40, #2B0E59);
            border-radius: 12px;
            padding: 0;
            margin-bottom: 30px;
            overflow: hidden;
            /*box-shadow: 0 4px 15px rgba(0,0,0,0.3); */
            box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.3);

        }
/* HERO */
.new-hero {
  position: relative;
  max-height: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  align-items: stretch;
}
.new-hero .hero-img { width: 100%; height: 100%; object-fit: cover; }
.new-hero::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
  pointer-events: none; z-index: 1;
}
.new-hero .hero-text {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 60px 30px 40px 30px; z-index: 2; position: relative; height: 100%;
}
.hero-text span { color: #ff89ff; }
.author-info { display: flex; align-items: center; margin-top: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; margin-right: 10px; }
.location { font-size: 0.9rem; margin-top: 5px; }

/* Video Pitch Section */
.video-pitch {
   /*  background: var(--section-bg, #f8f8f8); same as therapy section background */
    padding: 40px 20px;
    text-align: center;
}

.video-pitch h2 {
    color: #d62e2e; /* match your Video Message Exchange section heading */
    margin-bottom: 10px;
}

.video-pitch p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Fade-in animation (already in your site) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* JOURNEY */
.new-journey { padding-bottom: 20px; }
.journey-img { width: 100%; max-height: 225px; display: block; object-fit: cover; }
.journey-content { padding: 30px; }
.journey-steps { display: grid; gap: 15px; }
.step { display: flex; align-items: flex-start; gap: 15px; }
.step .icon {
  background: rgba(255,255,255,0.05); padding: 10px 15px;
  border-radius: 8px; font-size: 1.5rem; min-width: 45px; text-align: center;
}

/* QUARTERS */
.new-quarters { padding: 40px 20px; text-align: center; }
.quarters-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  text-align: left; max-width: 800px; margin: auto;
}

/* FIRST CHALLENGE */
.challenge-section { padding: 40px 20px 40px 50px; }
.challenge-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.challenge-content h2 { font-size: 1.8rem; margin-bottom: 20px; }
.challenge-content span { color: #ffcc66; }
.challenge-steps { display: grid; gap: 20px; }
.c-step { display: flex; align-items: flex-start; gap: 15px; }
.c-num {
  background: rgba(255,255,255,0.1); color: #fff; font-weight: bold; font-size: 1.2rem;
  width: 35px; height: 35px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.challenge-img { width: 100%; border-radius: 8px; object-fit: cover; }

/* THERAPY (with ring image) */
.therapy-section { padding: 40px 20px; text-align: center; }
.therapy-section h2 {
  font-size: 1.8rem; margin-bottom: 40px;
  background: linear-gradient(to right, #ffcc66, #ff66cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.therapy-grid {
  position: relative; max-width: 600px; margin: auto;
  display: grid;
  grid-template-areas: "top-left top-right" "bottom-left bottom-right";
  justify-items: center; gap: 40px 80px;
}
.therapy-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 250px; opacity: 0.2; z-index: 0;
}
.therapy-item { color: #fff; max-width: 180px; z-index: 1; }
.therapy-item strong { display: block; margin-bottom: 5px; }

/* FINANCIAL HONESTY */
.finance-section { padding: 40px 20px; text-align: center; }
.finance-section h2 {
  font-size: 1.8rem; margin-bottom: 40px;
  background: linear-gradient(to right, #ffcc66, #ff66cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.finance-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; max-width: 700px; margin: auto;
}
.pyramid-img { width: 100%; max-width: 450px; display: block; margin: auto; }
.finance-details { display: flex; flex-direction: column; gap: 20px; text-align: left; }
.finance-item strong { display: block; margin-bottom: 5px; }

/* PERSONAL REFLECTIONS */
.reflections-section { padding: 0; text-align: center; }
.reflections-img { width: 100%; height: 225px; display: block; object-fit: cover; }
.reflections-content { padding: 40px 30px; }
.reflections-content h2 {
  font-size: 1.8rem; margin-bottom: 30px;
  background: linear-gradient(to right, #ffcc66, #ff66cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.reflections-items {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 40px; max-width: 800px; margin: auto;
}
.reflection-item { display: flex; align-items: flex-start; gap: 10px; text-align: left; }
.reflection-item .icon { font-size: 1.5rem; min-width: 30px; text-align: center; }

/* VIDEO MESSAGE */
.video-section { padding: 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.video-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-content { padding: 40px 30px; display: flex; flex-direction: column; justify-content: center; }
.video-content h2 {
  font-size: 1.8rem; margin-bottom: 30px;
  background: linear-gradient(to right, #ffcc66, #ff66cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.video-items { display: flex; flex-direction: column; gap: 15px; }
.video-item { background: rgba(255,255,255,0.05); padding: 15px; border-radius: 8px; text-align: left; }

/* CONTACT FORM */
.contact-section { padding: 40px 20px; }
.contact-section h2 { 
  font-size: 1.8rem; margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(to right, #ffcc66, #ff66cc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-section p { text-align: center; margin-bottom: 30px; }
.contact-form { max-width: 600px; margin: auto; display: grid; gap: 15px; }
.contact-form label { font-weight: 600; margin-bottom: 5px; display: block; }
.contact-form input, .contact-form select {
  width: 100%; padding: 10px; border-radius: 6px; border: none; font-size: 1rem;
}
/* NEW: textarea styling */
.contact-form textarea {
  width: 100%; padding: 10px; border-radius: 6px; border: none; font-size: 1rem; resize: vertical;
}
.contact-form button {
  background: #ff89ff; color: #fff; border: none; padding: 12px;
  border-radius: 6px; cursor: pointer; font-weight: bold;
}
.contact-form button:hover { background: #ff55ff; }

/* Responsive */
@media(max-width: 768px) {
  .new-hero { max-height: unset; display: block; }
  .new-hero::before { width: 100%; }
  .new-hero .hero-img { height: auto; }
  .new-hero .hero-text { padding: 40px 20px 20px 20px; }
  .quarters-grid, .challenge-grid, .finance-grid, .video-grid { grid-template-columns: 1fr; }
  .therapy-grid {
    grid-template-areas: "top-left" "top-right" "bottom-left" "bottom-right";
    gap: 30px;
  }
  .therapy-ring { width: 180px; opacity: 0.15; }
  .finance-details, .video-content { text-align: center; }
  .reflections-items { grid-template-columns: 1fr; gap: 20px; }
}

/* Fade-in animation */
/*
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1s ease-out, transform 1s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.2s; }
.fade-in.delay-2 { transition-delay: 0.4s; }
.fade-in.delay-3 { transition-delay: 0.6s; }
.fade-in.delay-4 { transition-delay: 0.8s; }
.fade-in.delay-5 { transition-delay: 1s; }
.fade-in.delay-6 { transition-delay: 1.2s; }
.fade-in.delay-7 { transition-delay: 1.4s; }
.fade-in.delay-8 { transition-delay: 1.6s; }
.fade-in.delay-9 { transition-delay: 1.8s; }
*/
#formMessage {text-align: center}
