/* ==========================================================================
   Quebec Experiences — Landing Page Shared Styles
   Used by: memorable.html, quebecway.html, outcomes.html
   Palette / type are approximated from the client's Keynote mockups.
   Swap in exact brand hex codes + fonts once the brand guide asset
   (Google Drive folder referenced in brief) is available.
   ========================================================================== */

@font-face {
  font-family: 'Mukta Vaani';
  src: url('../fonts/mukta.vaani-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette */
  --quebec-green: #7ade19;
  --quebec-green-70: rgba(122, 222, 25, 0.7);
  --quebec-green-40: rgba(122, 222, 25, 0.4);
  --quebec-green-20: rgba(122, 222, 25, 0.2);
  --quebec-navy: #293352;
  --quebec-navy-70: rgba(41, 51, 82, 0.7);
  --quebec-navy-40: rgba(41, 51, 82, 0.4);
  --quebec-navy-20: rgba(41, 51, 82, 0.2);
  --quebec-green-dark: #66c40f;
  /* interaction/hover shade, not a brand token */
  --white: #ffffff;
  --max-width: 1140px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(41, 51, 82, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Mukta Vaani', Verdana, Geneva, sans-serif;
  color: var(--quebec-navy-70);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--quebec-navy);
  margin: 0;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--quebec-green);
  color: var(--quebec-navy);
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---- Buttons -------------------------------------------------------- */

.btn-contact {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--quebec-green);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 0;
  line-height: 1.2;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-contact span.sub {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.75;
}

.btn-contact:hover,
.btn-contact:focus-visible {
  background: var(--quebec-green-dark);
  transform: translateY(-2px);
}

.btn-contact:focus-visible {
  outline: 3px solid var(--quebec-navy);
  outline-offset: 2px;
}

/* ---- Header ----------------------------------------------------------- */

.site-header {
  background: var(--quebec-navy);
  padding: 16px 0;
  position: relative;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
}

/* ---- Hero image band --------------------------------------------------- */

.hero-media {
  position: relative;
  width: 100%;
  /* height: 46vw; */
  min-height: 260px;
  max-height: 520px;
  overflow: hidden;
  background: var(--quebec-navy);
}

.hero-media img {
  width: 100%;
  /* height: 100%; */
  height: 400px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--quebec-green);
}

/* ---- Hero copy ---------------------------------------------------------- */

.hero-copy {
  text-align: center;
  padding: 56px 24px 40px;
}

.hero-copy h1,
.offer-heading h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  max-width: 960px;
  margin: 0 auto 24px;
}

.hero-copy p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;

}

/* ---- Event types icon row ------------------------------------------------ */

.event-types {
  padding: 8px 24px 60px;
  text-align: center;
}

.event-types h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 36px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.icon-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--quebec-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.icon-circle svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.icon-grid figcaption {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--quebec-navy);

}

/* ---- Offerings (alternating rows) ---------------------------------------- */

.offerings {
  border-top: 1px solid var(--quebec-navy-20);
}

.offer-heading {
  text-align: center;
  padding: 50px 24px;
}

.offer-heading h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);

}

.offer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 32px;
  /* full-bleed background; content capped at 1024px, centered, min 24px side gutter */
  padding-inline: max(24px, (100% - 1024px) / 2);
}

.offer-row.tint {
  background: var(--quebec-green-20);
}

.offer-row .offer-text {
  padding: 40px 0;
}

.offer-row .offer-text h3 {
  /* font-size: clamp(1.3rem, 2.2vw, 1.7rem); */
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin-bottom: 10px;
}

.offer-row .offer-text p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.offer-row .offer-media {
  padding: 40px 0;
}

.offer-row .offer-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* image side ordering: even rows show image first (left) */
.offer-row.media-first .offer-media {
  order: 1;
}

.offer-row.media-first .offer-text {
  order: 2;
}

.offer-row.text-first .offer-text {
  order: 1;
}

.offer-row.text-first .offer-media {
  order: 2;
}

/* ---- Logo ticker ---------------------------------------------------------- */

.ticker-section {
  background: var(--quebec-navy);
  padding: 56px 0 60px;
  overflow: hidden;
}

.ticker-section h2 {
  color: var(--quebec-green);
  text-align: center;
  /* font-size: clamp(1.3rem, 2.6vw, 1.9rem); */
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  /* margin-bottom: 34px; */
}

.ticker-track-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-track .logo-item {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
  white-space: nowrap;
  flex: 0 0 auto;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .ticker-track-outer {
    overflow-x: auto;
  }
}

/* ---- Contact CTA ----------------------------------------------------------- */

.contact-cta {
  padding: 64px 24px;
  text-align: center;
  background-color: var(--quebec-green);
}

.contact-cta h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin-bottom: 20px;
  color: var(--quebec-navy);
}

.contact-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  text-align: left;
}

.contact-cta p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  color: var(--quebec-navy);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.contact-actions .btn-contact {
  background: var(--quebec-navy);
}

/* ---- FAQ ------------------------------------------------------------------ */

.faq-section {
  background: var(--quebec-navy);
  padding: 64px 24px 76px;
}

.faq-section h2 {
  color: var(--quebec-green);
  text-align: center;
  /* font-size: clamp(1.3rem, 2.6vw, 1.9rem); */
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 34px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--quebec-green-40);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 18px 4px;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}

.faq-question:focus-visible {
  outline: 2px solid var(--quebec-green);
  outline-offset: 2px;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quebec-green);
  font-size: 28px;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 0 4px 18px;
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}


/* ---- Footer ----------------------------------------------------------------- */

.site-footer {
  background: var(--quebec-navy);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 22px 24px;
  font-size: 0.78rem;
}

/* ---- Responsive ---------------------------------------------------------- */

@media (max-width: 820px) {
  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-row.media-first .offer-media,
  .offer-row.text-first .offer-media {
    order: 1;
  }

  .offer-row.media-first .offer-text,
  .offer-row.text-first .offer-text {
    order: 2;
  }

  /* equal side gutters, tighter gap between image and text */
  .offer-row .offer-media {
    padding: 36px 0 0;
  }

  .offer-row .offer-text {
    padding: 20px 0 36px;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-actions {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .site-header .wrap {
    flex-wrap: wrap;
  }

  .btn-contact {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}


.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 50%;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 15px;
    /*bottom: 15px;*/
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}
