/* ============================================================
   index_home.css — Landing page cinematic styles
   Loaded ONLY by index.html (on top of styles.css)
   Fonts: Abril Fatface (display), Josefin Sans (UI), Playfair Display (editorial)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Josefin+Sans:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ── Reset body for this page ─────────────────────────────── */
body {
  background: #f8f4ee;
  font-family: 'Josefin Sans', sans-serif;
  color: #1a1a2e;
}

/* ── Nav (transparent floating) ───────────────────────────── */
.home-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 64px;
  background: linear-gradient(to bottom, rgba(10,22,40,0.75) 0%, transparent 100%);
}
.home-nav__logo {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.home-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.home-nav__links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.home-nav__links a:hover,
.home-nav__links a.active {
  color: #e8b84b;
}

/* ── Hero section ──────────────────────────────────────────── */
.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  background: #0a1628;
}

/* Surfing couple photo — right side */
.home-hero__img {
  position: absolute;
  right: 0; top: 0;
  width: 62%; height: 100%;
  object-fit: cover;
  object-position: 20% top;
  display: block;
  z-index: 1;
}

/* Dark overlay gradient — left panel */
.home-hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    100deg,
    #0d1f3c 0%,
    #0d1f3c 28%,
    rgba(13,31,60,0.7) 36%,
    rgba(13,31,60,0.0) 46%,
    transparent 46%
  );
  z-index: 2;
}

/* SVG wave at bottom of hero */
.home-hero__wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 130px;
  z-index: 4;
}

/* Flag stripe — far right edge */
.home-hero__flag {
  position: absolute;
  top: 0; right: 0;
  width: 6px; height: 100%;
  background: linear-gradient(
    to bottom,
    #e63946 33.3%,
    #fff 33.3%,
    #fff 66.6%,
    #0d1f3c 66.6%
  );
  z-index: 30;
}

/* Text block — left column */
.home-hero__text {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px 72px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e8b84b;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-title-the {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.hero-title-spirit {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.88;
  color: #e63946;
  letter-spacing: -2px;
}
.hero-title-of76 {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-title-of {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.hero-title-76 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(72px, 9.5vw, 124px);
  color: #fff;
  line-height: 0.82;
  letter-spacing: -4px;
}
.hero-title-still {
  font-size: clamp(14px, 1.8vw, 24px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8b84b;
  font-weight: 300;
  margin-top: 8px;
}
.hero-title-making {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.05;
  color: #fff;
}
.hero-title-waves {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(52px, 6.5vw, 88px);
  line-height: 0.88;
  color: #4ecdc4;
  letter-spacing: -2px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: #e8b84b;
  margin: 20px 0 16px;
}
.hero-date {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(230,240,255,0.85);
  line-height: 1.6;
  max-width: 300px;
}
.hero-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-btn {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, filter 0.15s;
}
.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.hero-btn--red   { background: #e63946; color: #fff; }
.hero-btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }

/* ── Flag divider (below hero) ─────────────────────────────── */
.flag-divider {
  height: 5px;
  background: linear-gradient(
    90deg,
    #e63946 33.3%,
    #fff 33.3%,
    #fff 66.6%,
    #0d1f3c 66.6%
  );
}

/* ── Legacy / body section ─────────────────────────────────── */
.legacy {
  background: #f8f4ee;
  padding: 80px 72px 90px;
}
.legacy-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.legacy-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e63946;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.legacy-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(230,57,70,0.2);
}
.legacy-headline {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: #0d1f3c;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.legacy-subhead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #5a6a80;
  line-height: 1.45;
  margin-bottom: 52px;
  border-left: 3px solid #e8b84b;
  padding-left: 18px;
  max-width: 640px;
}
.legacy-cols {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

/* Editorial body copy */
.legacy-body { font-size: 15px; color: #3a3a3a; line-height: 1.95; }
.legacy-body p { margin-bottom: 22px; }
.legacy-body p:last-child { margin-bottom: 0; }
.legacy-body .em-word  { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; color: #0d1f3c; font-size: 17px; }
.legacy-body .em-caps  { font-family: 'Josefin Sans', sans-serif; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; color: #0d1f3c; }
.legacy-body .drop-cap::first-letter {
  font-family: 'Abril Fatface', serif;
  font-size: 4.2em;
  line-height: 0.75;
  float: left;
  margin: 0 10px 0 0;
  color: #0d1f3c;
  padding-top: 6px;
}
.legacy-body blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: #0d1f3c;
  line-height: 1.65;
  border-left: 3px solid #e8b84b;
  padding: 8px 0 8px 20px;
  margin: 28px 0;
}

/* Right column cards */
.legacy-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

/* Pull quote card */
.pull-quote-card {
  background: #0d1f3c;
  border-radius: 10px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
}
.pq-wave {
  position: absolute;
  bottom: -8px; left: -8px;
  opacity: 0.08;
  pointer-events: none;
}
.pq-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.65;
  color: #e8f0f8;
  position: relative;
  z-index: 2;
  quotes: "\201C" "\201D";
}
.pq-text::before {
  content: open-quote " ";
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.5em;
  color: #e8b84b;
  margin-right: 4px;
  font-family: 'Abril Fatface', serif;
}
.pq-text::after {
  content: close-quote;
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.55em;
  color: #e8b84b;
  margin-left: 4px;
  font-family: 'Abril Fatface', serif;
}
.pq-rule { width: 36px; height: 2px; background: #e8b84b; margin: 20px 0 14px; }
.pq-attr { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(232,240,248,0.45); font-weight: 600; }

/* Event details card */
.event-card_x {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px 24px;
  border-top: 4px solid #e63946;
  min-width: 0;
  overflow: hidden;
}
.event-card__title_x { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: #e63946; font-weight: 700; margin-bottom: 16px; }
.event-detail_x { display: flex; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(13,31,60,0.07);  }
.event-detail_x:last-child { border-bottom: none; padding-bottom: 0; }
.event-detail__label_x { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a9ab0; font-weight: 600; min-width: 50px; flex-shrink: 0; padding-top: 3px; }
.event-detail__value_x { font-family: 'Playfair Display', serif; font-size: 14px; color: #0d1f3c; font-weight: 700; line-height: 1.35; word-break: break-word; min-width: 0; }


/* copied events*/
/* EVENT DETAILS CARD */
.event-card {
  background: #fff; border-radius: 10px; padding: 28px 28px 24px;
  border-top: 4px solid #e63946;
/*display:flex;
flex-wrap:wrap;
flex-direction: row;*/
display:block;
}
.event-card-title { display:block;font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: #e63946; font-weight: 700; margin-bottom: 16px; }
.event-detail { display: flex;flex-wrap:wrap; flex-direction: row; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(13,31,60,0.07); }
.event-detail:last-child { border-bottom: none; padding-bottom: 0; }
.event-detail-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a9ab0; font-weight: 600; min-width: 64px; }
.event-detail-value { font-family: 'Playfair Display', serif; font-size: 15px; color: #0d1f3c; font-weight: 700; line-height: 1.3; }


/* CTA strip */
.legacy-cta {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(13,31,60,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.legacy-cta__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: #5a6a80;
  line-height: 1.6;
  max-width: 480px;
}
.legacy-cta__btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-dark { background: #0d1f3c; color: #fff; }

/* ── Footer (home page version) ───────────────────────────── */
.home-footer {
  background: #0d1f3c;
  padding: 32px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-footer__logo {
  font-family: 'Abril Fatface', serif;
  font-size: 20px;
  color: #fff;
}
.home-footer__sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  font-weight: 600;
}
.home-footer__right {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ecdc4;
  font-weight: 600;
}
.home-footer a { color: #4ecdc4; text-decoration: none; }
.home-footer a:hover { text-decoration: underline; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .home-nav { padding: 18px 24px; }
  .home-nav__links { display: none; }
  .home-hero { height: auto; min-height: 100vh; max-height: none; }
  .home-hero__img { width: 100%; opacity: 0.3; }
  .home-hero__overlay { background: rgba(13,31,60,0.75); }
  .home-hero__text { width: 100%; padding: 100px 32px 50px; }
  .legacy { padding: 48px 28px 60px; }
  .legacy-cols { grid-template-columns: 1fr; gap: 36px; }
  .legacy-cta { flex-direction: column; align-items: flex-start; }
  .home-footer { flex-direction: column; gap: 14px; text-align: center; padding: 28px 24px; }
}
