/* Strive Jouvert Homepage Styles
 *
 * This CSS file aligns the homepage styles with the working index page.
 * It defines the brand palette, header, hero section, content sections,
 * and responsive/mobile adjustments. Viewport units use the safe `svh`
 * for modern browsers with a `vh` fallback. Mobile layouts remove
 * fixed heights and centre the content near the top.
 */

/* === Container === */
.se-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* === Header === */
.se-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,252,245,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,122,0,0.28);
}
.se-header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.se-logo img {
  height: 58px;
  width: auto;
}
/* Header CTA (button in header) */
.se-header-cta {
  padding: .55rem 1.4rem;
  border-radius: 1000px;
  background: linear-gradient(120deg, #FF6A00, #FFC44D);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 14px 26px rgba(255,122,0,0.4);
}

/* Ensure the header CTA always uses the orange gradient and white text.
   This rule has higher specificity to override any generic anchor styles
   defined in other stylesheets (such as styles.css). */
header .se-header-cta {
  background: linear-gradient(120deg, #FF6A00, #FFC44D) !important;
  color: #fff !important;
  border-radius: 1000px;
  padding: .55rem 1.4rem;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 14px 26px rgba(255,122,0,0.4);
}

/* === Primary CTA (reusable button) === */
.se-cta-primary,
.se-btn-primary {
  background: linear-gradient(120deg, #FF6A00, #FFC44D);
  color: #ffffff;
  padding: .85rem 2.2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(255,106,0,.45),
              inset 0 -2px 0 rgba(0,0,0,.12);
  transition: transform .18s ease, filter .18s ease;
}
.se-cta-primary:hover,
.se-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* === Hero Section === */
.se-hero {
  position: relative;
  min-height: 100vh;      /* fallback for browsers without svh */
  min-height: 100svh;     /* safe viewport height for modern browsers */
  overflow: hidden;
  color: #ffffff;
}

/* Hero video layer */
.se-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.se-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay on hero video */
.se-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.75)),
    radial-gradient(circle at center, rgba(255,122,0,.2), transparent 60%);
}

/* Paint bursts layer */
.se-hero-paint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 10%, rgba(255,160,80,.7), transparent 58%),
    radial-gradient(circle at 95% 0%, rgba(255,200,120,.6), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(90,107,47,.55), transparent 65%),
    radial-gradient(circle at 88% 85%, rgba(255,130,20,.55), transparent 60%);
  mix-blend-mode: screen;
  opacity: .9;
  pointer-events: none;
}

/* Floating particles */
.se-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.se-particle {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 1000px;
  filter: blur(1px);
  animation: floatUp 21s linear infinite;
  opacity: .88;
}
.se-p1 { background: var(--orange); }
.se-p2 { background: var(--gold); }
.se-p3 { background: #9acd5f; }
.se-p4 { background: #ff8a40; }
.se-p5 { background: #FFB15B; }
.se-particle:nth-child(1) { left: 8%; bottom: -20px; animation-duration: 24s; }
.se-particle:nth-child(2) { left: 30%; bottom: -30px; animation-duration: 19s; }
.se-particle:nth-child(3) { left: 52%; bottom: -25px; animation-duration: 21s; }
.se-particle:nth-child(4) { left: 72%; bottom: -28px; animation-duration: 27s; }
.se-particle:nth-child(5) { left: 90%; bottom: -35px; animation-duration: 18s; }

@keyframes floatUp {
  0%   { transform: translate3d(0, 0, 0) scale(.7); opacity: 0; }
  10%  { opacity: .9; }
  80%  { transform: translate3d(-20px, -110vh, 0) scale(1.15); opacity: .85; }
  100% { transform: translate3d(-30px, -130vh, 0) scale(1.15); opacity: 0; }
}

/* Hero content wrapper */
.se-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 76px; /* header height */
}
.se-hero-grid {
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 4.5rem;
}
.se-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Eyebrow in hero */
.se-hero-eyebrow {
  display: inline-flex;
  gap: .45rem;
  background: rgba(0,0,0,.45);
  padding: .25rem .7rem;
  border-radius: 1000px;
  font-size: .78rem;
  border: 1px solid rgba(255,255,255,.28);
}

/* Hero title */
.se-hero-title {
  margin: 0 0 .8rem;
  font-size: clamp(2.8rem, 8.2vw, 4.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.se-hero-title span {
  display: block;
}
.se-hero-title .se-strive {
  background: linear-gradient(120deg, #fff, #ffe7c0, #ffd08c);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(255,215,160,.4);
}
.se-hero-title .se-jouvert {
  position: relative;
  color: var(--green);
  text-shadow:
    0 0 6px rgba(255,150,60,.45),
    0 0 12px rgba(255,115,0,.45);
}
.se-jouvert-dust {
  content: "";
  position: absolute;
  inset: -30px -35px -32px -35px;
  background:
    radial-gradient(circle at 40% 50%, rgba(255,115,0,.8), transparent 58%),
    radial-gradient(circle at 70% 40%, rgba(255,190,60,.45), transparent 65%),
    radial-gradient(circle at 25% 70%, rgba(255,110,0,.55), transparent 70%);
  filter: blur(16px);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: .95;
  z-index: -1;
}

/* CTA row within hero */
.se-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: .3rem;
}
/* Generic button */
.se-btn {
  padding: .75rem 2rem;
  border-radius: 1000px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Additional CTA variants */
.se-btn-primary {
  background: linear-gradient(120deg, var(--orange), var(--gold));
  color: #fff;
  box-shadow: 0 15px 28px rgba(255,110,0,.45);
  transition: transform .2s ease;
}
.se-btn-primary:hover {
  transform: translateY(-2px);
}

/* Hero subheading and note */
.se-hero-sub {
  max-width: 520px;
  margin: .9rem auto .7rem;
  font-size: .98rem;
  color: #fdfdfd;
}
.se-hero-note {
  font-size: .85rem;
  margin-top: .5rem;
  opacity: .96;
}

/* Benefits bar displayed at bottom of hero */
.se-benefits-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 0.75rem 1.4rem;
  text-align: center;
  color: #FFF6DF;
  font-size: 0.9rem;
  line-height: 1.3;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  max-width: min(900px, 92%);
  z-index: 3;
}
.se-benefits-line1 {
  font-weight: 600;
  margin-bottom: 3px;
}
.se-benefits-line2 {
  font-size: 0.82rem;
  opacity: 0.95;
}

/* === Main Sections === */
main {
  background: var(--cream);
  padding-bottom: 3rem;
}
.se-section {
  padding: 2.4rem 0 2.8rem;
}
.se-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.se-section-kicker {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
}
.se-section-title {
  margin: .2rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green-dark);
}
.se-section-sub {
  margin: 0;
  font-size: .9rem;
  color: #555;
}

/* Origins */
.se-origins-text p {
  margin: .35rem 0;
  font-size: 1rem;
  color: #444;
  line-length: 1.7;
}
.se-origins-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .8rem;
}
.se-pill {
  padding: .25rem .8rem;
  border-radius: 1000px;
  background: rgba(90,107,47,.15);
  border: 1px solid rgba(90,107,47,.25);
  font-size: .8rem;
}
.se-origins-body {
  display: grid;
  gap: 1.4rem;
}
.se-origins-shots {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.se-shot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  height: auto;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.se-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.se-shot-label {
  position: absolute;
  bottom: .5rem; left: .6rem;
  background: rgba(0,0,0,.6);
  padding: .15rem .5rem;
  border-radius: 1000px;
  font-size: .7rem;
  color: #fff;
}
.se-shot-cta-wrap {
  margin-top: .4rem;
  text-align: center;
}
.se-view-gallery {
  display: inline-block;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(90,107,47,.25);
  background: #fff;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.se-view-gallery:hover {
  background: #F6F9EE;
}

/* Tribute */
.se-tribute-card {
  display: grid;
  gap: 1.4rem;
  background: #F5F7EB;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(90,107,47,.22);
  box-shadow: 0 12px 25px rgba(90,107,47,.18);
}
@media (min-width: 860px) {
  .se-tribute-card {
    grid-template-columns: 1fr 1.6fr;
  }
}
.se-tribute-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  height: auto;
}
.se-tribute-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.se-tribute-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,200,120,.45), transparent 70%);
  mix-blend-mode: screen;
}
.se-tribute-text h3 {
  margin: 0 0 .3rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
}
.se-tribute-text h4 {
  margin: 0 0 .7rem;
  font-size: .95rem;
  color: var(--orange);
  font-weight: 600;
  text-align: center;
}
.se-tribute-text p {
  margin: .35rem 0;
  font-size: .95rem;
  color: #444;
  line-length: 1.7;
  text-align: justify;
}
.se-tribute-tagline {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--green);
  font-weight: 700;
  text-align: center;
}

/* Upcoming Events */
.se-events-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .se-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .se-events-grid {
    grid-template-columns: 1fr;
  }
}
.se-event-card {
  border-radius: 20px;
  padding: .9rem;
  background: #fff;
  border: 1px solid rgba(90,107,47,.18);
  box-shadow: 0 8px 20px rgba(90,107,47,.16);
  display: flex;
  gap: .8rem;
}
.se-event-thumb {
  flex: 0 0 72px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #E5EAD8;
}
.se-event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.se-event-content {
  flex: 1;
}
.se-event-title {
  margin: 0 0 .2rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--green-dark);
}
.se-event-date {
  font-size: .85rem;
  color: #666;
  margin-bottom: .2rem;
}
.se-event-location {
  font-size: .82rem;
  color: #777;
  margin-bottom: .35rem;
}
.se-event-copy {
  margin: 0;
  color: #444;
  font-size: .9rem;
  line-length: 1.5;
}

/* Footer */
footer {
  background: #1D220F;
  color: #DDD;
  padding: 1.6rem 0;
  margin-top: 2rem;
  text-align: center;
  font-size: .82rem;
}

/* Fade on scroll */
.se-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: .5s ease;
}
.se-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox Modal */
.se-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}
.se-modal.is-open {
  display: block;
}
.se-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.se-modal-inner {
  position: absolute;
  inset: 6% 4%;
  max-width: 960px;
  margin: auto;
  background: #050505;
  border-radius: 20px;
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,.8);
}
.se-modal-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.se-modal-media img,
.se-modal-media video {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 14px;
}
.se-modal-close {
  position: absolute;
  top: .5rem;
  right: .7rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.se-modal-controls {
  margin-top: .55rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  color: #f9fafb;
  font-size: .85rem;
}
.se-modal-nav {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.7);
  color: #fff;
  cursor: pointer;
}

/* Sticky mobile CTA */
.se-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(120deg, var(--orange), var(--gold));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  z-index: 60;
  box-shadow: 0 -4px 12px rgba(0,0,0,.35);
  display: none;
}
@media (max-width: 768px) {
  .se-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
}

/* === Mobile adjustments for hero and header === */
@media (max-width: 768px) {
  /* Taller header on mobile */
  .se-header-inner {
    height: 92px;
  }
  .se-logo img {
    height: 64px;
  }
  .se-header-cta {
    font-size: .9rem;
    padding: .65rem 1.2rem;
  }

  /* Hero adjustments */
  .se-hero-inner {
    padding-top: 92px;
  }
  .se-hero-grid {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.1rem 0 5.2rem;
  }
  .se-hero-title {
    letter-spacing: .14em;
  }
  .se-hero-sub {
    font-size: .94rem;
  }
  .se-benefits-bar {
    bottom: 12px;
    padding: .6rem 1.05rem;
    font-size: .82rem;
  }

  /* Adjust CTA sizes and text on mobile */
  .se-cta-primary,
  .se-btn-primary {
    padding: .45rem 1rem;
    font-size: .78rem;
    line-height: 1.1;
    border-radius: 22px;
    box-shadow: 0 6px 14px rgba(255,106,0,.35),
               inset 0 -1px 0 rgba(0,0,0,.12);
  }
  .se-tribute-text p {
    font-size: .95rem;
    line-length: 1.55;
    text-align: left;
  }
}
/* ================================
   HERO LOGO (SVG REPLACEMENT)
================================ */

.se-hero-logo {
  margin: 1.2rem 0 0.8rem;
}

.se-hero-logo-img {
  display: block;
  width: 100%;
  max-width: 520px;   /* desktop size */
  height: auto;
  margin: 0 auto;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .se-hero-logo-img {
    max-width: 360px;
  }
}
/* HERO AUDIO TOGGLE */
.se-audio-toggle {
  margin-top: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.se-audio-toggle:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.05);
}

.se-audio-toggle:active {
  transform: scale(0.95);
}

/* ===========================================
   HOMEPAGE: CONTACT SECTION (scoped)
   =========================================== */

.se-contact .se-contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 18px;
  align-items: start;
}

.se-contact .se-contact-text p{
  margin: 0 0 12px;
  line-height: 1.6;
}

.se-contact .se-contact-cards{
  display: grid;
  gap: 12px;
}

.se-contact .se-contact-card{
  display: block;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.se-contact .se-contact-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.se-contact .se-contact-label{
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 4px;
}

.se-contact .se-contact-value{
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.se-contact .se-contact-primary{
  border-color: rgba(0,0,0,0.14);
  background: rgba(255, 240, 220, 0.85);
}

@media (max-width: 900px){
  .se-contact .se-contact-grid{
    grid-template-columns: 1fr;
  }
}


