/* ============================================
   OHANA HOST PAGE
   ============================================ */

/* ---- Nav active state ---- */
.nav-active { color: var(--orange) !important; }
.nav-active::after { width: 100% !important; }

/* ---- Host Hero ---- */
.host-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.host-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.host-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.host-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark-deep);
  margin-bottom: 24px;
}

.host-hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 500px;
}

.host-hero-ctas { margin-bottom: 40px; }

.host-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hhs { text-align: center; }
.hhs strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
}
.hhs span {
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 500;
}
.hhs-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* ---- Hero Collage ---- */
.host-hero-collage {
  position: relative;
  height: 520px;
}

.collage-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.collage-img:hover { transform: scale(1.03) rotate(-1deg); }
.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ci-1 { width: 260px; height: 340px; top: 0; left: 20px; z-index: 2; }
.ci-2 { width: 220px; height: 200px; top: 30px; right: 0; z-index: 1; }
.ci-3 { width: 240px; height: 200px; bottom: 0; left: 60px; z-index: 1; }

.collage-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 3;
  animation: bob 5s ease-in-out infinite;
}
.cf-emoji { font-size: 1.3rem; }
.collage-float strong { display: block; font-size: .92rem; color: var(--dark-deep); }
.collage-float span { font-size: .72rem; color: var(--gray-400); }

.cf-1 { bottom: 120px; right: 10px; animation-delay: 0s; }
.cf-2 { top: 280px; left: 0; animation-delay: 2s; }

/* ---- Ideas Grid ---- */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.idea-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.idea-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.idea-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.idea-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.3));
}

.idea-body { padding: 20px; }
.idea-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 6px;
}
.idea-body p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- Host Steps ---- */
.host-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.host-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.host-step:last-child { border-bottom: none; }

.hs-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,98,62,.1);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  transition: color .3s;
}
.host-step:hover .hs-num { color: rgba(255,98,62,.3); }

.hs-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 8px;
}
.hs-content p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- Creator Cards ---- */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.creator-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.creator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.creator-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.creator-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.creator-card:hover .creator-img img { transform: scale(1.05); }

.creator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s;
}
.creator-card:hover .creator-overlay { opacity: 1; }

.creator-quote {
  font-size: .88rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}

.creator-info {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.creator-info strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-deep);
}
.creator-info > div:first-child span {
  font-size: .8rem;
  color: var(--gray-400);
}
.creator-stat {
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-50);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ---- Support Grid ---- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.support-left .sec-title { margin-bottom: 0; }

.support-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all .3s;
}
.support-card:hover {
  border-color: var(--orange-light);
  box-shadow: 0 8px 30px var(--orange-glow);
  transform: translateX(4px);
}

.sc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 4px;
}
.support-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- Final CTA ---- */
.host-final-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-deep), #2a2a2a);
  color: var(--white);
  overflow: hidden;
}

.host-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.text-shimmer-white {
  background: linear-gradient(90deg, #fff 0%, #ffd4c4 30%, #ff623e 50%, #ffd4c4 70%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s ease-in-out infinite;
}

.host-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 0;
  max-width: 500px;
}

/* ---- Application Form ---- */
.host-apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.host-apply-left {
  position: sticky;
  top: 120px;
}

.host-apply-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.form-success p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .host-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .host-hero-desc { margin: 0 auto 32px; }
  .host-hero-ctas { display: flex; justify-content: center; }
  .host-hero-stats { justify-content: center; }
  .host-hero-right { display: none; }
  .ideas-grid { grid-template-columns: repeat(2, 1fr); }
  .creators-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; gap: 40px; }
  .support-left { text-align: center; }
}

@media (max-width: 768px) {
  .host-hero { padding: 100px 0 60px; min-height: auto; }
  .host-hero-title { font-size: 2rem; }
  .host-hero-stats { flex-wrap: wrap; gap: 16px; }
  .hhs-divider { display: none; }
  .ideas-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .creators-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .host-step { flex-direction: column; gap: 12px; }
  .hs-num { width: auto; font-size: 2rem; }
  .host-final-cta { padding: 80px 0; }
  .host-apply-layout { grid-template-columns: 1fr; gap: 36px; }
  .host-apply-left { position: static; text-align: center; }
  .host-apply-left .host-cta-sub { margin: 0 auto; }
  .host-apply-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .host-hero-title { font-size: 1.8rem; }
  .host-cta-title { font-size: 1.6rem; }
  .idea-img { height: 160px; }
  .creator-img { height: 280px; }
}
