/* style.css — Homepage-specific overrides */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Poppins:wght@700;800;900&display=swap');

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1a2e;
  padding-top: 0; /* nav sits over image */
}

/* Full-bleed photo — covers entire hero */
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero.png') center center / cover no-repeat;
  opacity: 1;
}

/* Left-side dark scrim only — photo stays visible on right */
.hero-blend {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,50,0.82) 0%,
    rgba(10,20,50,0.68) 42%,
    rgba(10,20,50,0.28) 65%,
    rgba(10,20,50,0.08) 100%
  );
}

/* Content sits in middle of hero vertically */
.hero-content {
  position: relative; z-index: 2;
  max-width: 660px;
  padding: 10rem 2rem 5rem 5%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Solid amber pill badge — matches screenshot */
.hero-tagline {
  display: inline-block;
  background: var(--accent);
  color: var(--blue-dark);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: 6px; margin-bottom: 1.5rem;
  width: fit-content;
}

/* Large bold heading — screenshot uses heavy weight, no accent colour split */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-heading span { color: var(--white); } /* no accent split on heading */

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.88);
  margin-bottom: 2rem; max-width: 540px; line-height: 1.65;
}

/* Buttons — amber solid + white outline, both rounded-rect like screenshot */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-accent {
  border-radius: 8px; font-size: 0.85rem; letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem; display: inline-flex; align-items: center; gap: 0.5rem;
}
.hero-actions .btn-outline {
  border-radius: 8px; font-size: 0.85rem; letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem; border-width: 2px;
  color: white; border-color: white;
}
.hero-actions .btn-outline:hover { background: white; color: var(--blue-dark); }

/* Trust bar — sits at the bottom of the hero content, inline icons */
.hero-trust {
  display: flex; gap: 1.75rem; margin-top: 2.5rem; flex-wrap: wrap; align-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.82);
}
.hero-trust-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* Floating SHOP NOW pill — bottom-right corner, matches screenshot */
.hero-float-cta {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 10;
  background: var(--accent); color: var(--blue-dark);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 1.5rem; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(240,165,0,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-float-cta:hover {
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,165,0,0.55);
  color: var(--blue-dark);
}
.hero-float-cta svg { width: 16px; height: 16px; }

/* ---- Country section ---- */
#shop-by-country { scroll-margin-top: 80px; }

/* ---- Fifi Mascot Section ---- */
.fifi-section {
  background: linear-gradient(160deg, #fffbf0 0%, #fff9e6 50%, #f0f7ff 100%);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.fifi-header {
  display: flex; gap: 3rem; align-items: flex-start;
  margin-bottom: 4rem; flex-wrap: wrap;
}
.fifi-stamp {
  width: 180px; height: 180px; object-fit: contain; flex-shrink: 0;
  border-radius: 50%; background: white; padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(240,165,0,0.2);
}
.fifi-header-text { flex: 1; min-width: 280px; }
.fifi-tagline {
  font-size: 0.95rem; font-weight: 700; color: var(--blue-mid);
  letter-spacing: 0.04em; margin-bottom: 1rem; margin-top: 0.25rem;
}
.fifi-roles {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem; margin-bottom: 4rem;
}
.fifi-role-card {
  background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.fifi-role-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.fifi-role-img-wrap {
  width: 100%; background: #f8f8f8;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; max-height: 280px;
}
.fifi-role-img-wrap img {
  width: 100%; height: auto; display: block;
  object-fit: contain; max-height: 280px;
}
.fifi-role-badge {
  background: var(--accent); color: var(--blue-dark);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.3rem 1rem; text-align: center;
}
.fifi-role-card h3 { padding: 1rem 1.25rem 0.25rem; font-size: 1rem; color: var(--blue-dark); }
.fifi-role-card p { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); margin: 0; flex: 1; }
.fifi-role-card em { color: var(--blue-mid); font-style: italic; }
.fifi-role-card--quote {
  background: var(--blue-dark); border-color: var(--blue-dark);
  align-items: center; text-align: center; padding: 2.5rem 1.75rem; justify-content: center;
}
.fifi-role-card--quote h3 { color: white; padding: 0; margin-bottom: 1rem; }
.fifi-role-card--quote p { color: rgba(255,255,255,0.75); padding: 0; }
.fifi-role-card--quote p strong { color: white; }
.fifi-big-paw { font-size: 3.5rem; margin-bottom: 0.75rem; }
.fifi-role-card--quote blockquote {
  font-size: 2.5rem; color: var(--accent); font-weight: 800;
  margin: 0 0 0.75rem; line-height: 1; font-family: 'Poppins', sans-serif;
}
.fifi-quote-credit { font-size: 0.85rem !important; color: rgba(255,255,255,0.55) !important; margin-bottom: 0 !important; }
.fifi-signoff {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  padding: 2rem; border-left: 5px solid var(--accent);
}
.fifi-signoff-stamp { width: 90px; height: 90px; object-fit: contain; flex-shrink: 0; border-radius: 50%; }
.fifi-signoff p { margin: 0 0 0.5rem; color: var(--text-mid); font-size: 0.95rem; }
.fifi-signoff p:last-child { margin: 0; }

/* ---- Product specs ---- */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.spec-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.spec-card strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue-mid); }
.spec-card span { font-size: 0.85rem; color: var(--text-light); }

/* ---- Company details ---- */
.company-details { background: var(--blue-dark); color: rgba(255,255,255,0.8); padding: 4rem 2rem; }
.company-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; max-width: 1180px; margin: 2rem auto 0; }
.company-item { display: flex; flex-direction: column; gap: 0.25rem; }
.company-item strong { color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; }
.company-item span { font-size: 0.95rem; }

/* ---- CTA final ---- */
.final-cta {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  color: var(--white); text-align: center; padding: 5rem 2rem;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.final-cta p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0.75rem auto 2rem; }

/* ---- Buying guide ---- */
.buying-guide { max-width: 820px; }
.buying-guide h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.buying-guide h3 { margin-top: 1.75rem; margin-bottom: 0.6rem; color: var(--blue-mid); }
.buying-guide h4 { margin-top: 1.25rem; margin-bottom: 0.4rem; }
.buying-guide p, .buying-guide li { color: var(--text-mid); }
.buying-guide ul { margin: 0.75rem 0 1rem 1.5rem; }
.buying-guide li { margin-bottom: 0.4rem; }

/* ---- Contact ---- */
.contact-details { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); min-width: 220px; }
.contact-item svg { width: 22px; height: 22px; color: var(--blue-mid); flex-shrink: 0; }
.contact-item span { font-size: 0.95rem; color: var(--text-mid); }
.contact-item strong { display: block; font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.15rem; }

@media (max-width: 768px) {
  .hero-section { min-height: 100svh; }
  .hero-bg { background-position: center center; background-size: cover; }
  .hero-blend { background: linear-gradient(to bottom, rgba(10,20,50,0.78) 0%, rgba(10,20,50,0.65) 100%); }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-float-cta { bottom: 1.25rem; right: 1.25rem; font-size: 0.75rem; padding: 0.7rem 1.2rem; }
  .fifi-header { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .fifi-stamp { width: 130px; height: 130px; }
  .fifi-roles { grid-template-columns: 1fr; }
  .fifi-signoff { flex-direction: column; align-items: flex-start; }
}
