/* style-home.css */

/* 0) Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* 1) Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2) Base */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0a1f44;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.5;
}

/* Make media fluid */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3) Skip link (single source of truth) */
a.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2147483647;

  display: inline-block;
  padding: 10px 14px;
  background: #ffffff;
  color: #0a1f44;
  border: 3px solid #0a1f44;
  border-radius: 10px;

  font-weight: 800;
  text-decoration: none;

  transform: translateY(-300%);
  transition: transform 0.15s ease-in-out;
}

a.skip-link:focus,
a.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* 4) Header and Navigation (desktop) */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding: 0.75rem 2rem;
  background: #0a1f44;
  z-index: 3;
}

/* Hamburger hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.5rem;
  cursor: pointer;
}

nav ul.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul.menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.3s;
}

nav ul.menu li a:hover,
nav ul.menu li a.active {
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* 5) Buttons (single source of truth) */
.btn {
  display: inline-block;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  padding: 0.75rem 1.5rem;
  background: #ffcc00;
  color: #0a1f44;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 800;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6b800;
}

/* 6) Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('downtown1.jpg') center/cover no-repeat;

  display: flex;
  align-items: flex-start;
  padding-top: 20vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5%;
  color: #fff;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-content .tagline {
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-content .btn {
  align-self: flex-start;
}

/* 7) Sections: About, Why Buy, How It Works */
.about-passport,
.how-it-works {
  padding: 30px 10px;
  background-color: #ddd;
  color: #0a1f44;
}

.about-passport .container,
.how-it-works .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.about-passport h2,
.how-it-works h2 {
  font-size: 2.75rem;
  margin: 0.5rem 0;
  letter-spacing: 0.5px;
  text-align: center;
}

.about-passport p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0.75rem 0;
  text-align: center;
}

.how-it-works ul.how-steps {
  list-style: disc inside;
  display: inline-block;
  margin: 1rem auto;
  padding: 0;
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.6;
}

.how-it-works ul.how-steps > li {
  margin-bottom: 0.75rem;
}

.rewards-list {
  list-style-type: disc;
  margin: 0.5rem 0 1rem 1.5rem;
}

.why-buy {
  padding: 60px 20px;
  background-color: #ddd;
  color: #0a1f44;
}

.why-buy .container {
  max-width: 1140px;
  margin: 0 auto;
}

.why-buy h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.why-buy p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 8) About page section */
.about-section {
  background: #0a1f44;
  padding: 4rem 5%;
  color: #f0f0f0;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1 1 300px;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.about-image {
  flex: 1 1 300px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* 9) FAQ */
.faq-section {
  background: #0a1f44;
  padding: 4rem 5%;
  color: #f0f0f0;
  position: relative;
}

.faq-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-section h1 {
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.faq-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
  margin-top: 2rem;
}

.faq-list li.full-span {
  grid-column: 1 / -1;
}

.faq-list li {
  background: #fff;
  color: #222;
  border-left: 6px solid #d4af37;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-list li h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list li p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* 10) Shops grid page */
.shops-page {
  background: #0a1f44;
  padding: 4rem 5%;
  color: #f0f0f0;
}

.shops-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.shops-section .intro-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.shop-card img {
  width: 120px;
  height: 120px;
  padding: 20px;
  background: #fff;
  object-fit: contain;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.shop-card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.shop-card span {
  margin-top: 0.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* 11) Stores directory */
.stores-page {
  background: #0a1f44;
  padding: 4rem 5% 0;
  flex: 1;
  color: #0a1f44;
}

.stores-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stores-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.stores-section .intro-text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.store-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  width: 100%;
  max-width: 200px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.store-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 1rem auto 0.5rem;
}

.store-card span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

/* 12) Social grid */
.social-grid-section.light {
  background: #f5f5f5;
  color: #333;
  padding: 4rem 5%;
  margin: 4rem 0;
}

.social-grid-section.light h2 {
  color: #222;
  text-align: center;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: #ffcc00;
  border: none;
  margin: 1rem auto 2rem auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.social-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #333;
  width: 100%;
  max-width: 200px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-card .icon img {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 0.75rem;
  transition: transform 0.2s, filter 0.2s;
}

.social-card .icon img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.social-card .label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-card .cta small {
  color: #ffcc00;
  font-size: 0.9rem;
}

.social-card.facebook {
  border-top: 4px solid #3b5998;
}

.social-card.instagram {
  border-top: 4px solid #e4405f;
}

.social-card.tiktok {
  border-top: 4px solid #010101;
}

/* 13) Store page product panel */
.store-page {
  background: #0a1f44;
  padding: 4rem 5%;
  flex: 1;
}

.store-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

.store-page .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffcc00;
}

.product-panel {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-panel .product-image,
.product-panel .product-info {
  flex: 1;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.product-info h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #222;
}

.product-info .price {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-info p {
  flex-grow: 1;
  color: #555;
  margin-bottom: 1.5rem;
}

.product-info .buy-btn {
  align-self: flex-start;
}

/* 14) Mailchimp form */
.mailchimp-signup {
  max-width: 480px;
  width: 90%;
  margin: 2rem auto 1.5rem;
  background: #fff;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  color: #222;

}

.mailchimp-signup h2 {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.mailchimp-signup .mc-field-group {
  margin-bottom: 0.75rem;
}

.mailchimp-signup label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.mailchimp-signup input[type="text"],
.mailchimp-signup input[type="email"] {
  width: 100%;
  padding: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 0.95rem;
}

.mailchimp-signup .response {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #cc0000;
}

.mailchimp-signup #mce-success-response {
  color: #007a00;
}

.mailchimp-signup .submit-wrap {
  text-align: center;
}

.mailchimp-signup .button {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 2px;
  background-color: #002147;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}


.mailchimp-signup .button:hover {
  opacity: 0.9;
}

/* Divider */
hr.form-divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 2rem auto 1.5rem;
  width: 80%;
}

/* 15) Footer */
footer {
  background: #0a1f44;
  color: #f0f0f0;
  padding: 2rem 5%;
  text-align: center;
  margin: 0;
}

footer .newsletter-form {
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

footer .newsletter-form p {
  margin-bottom: 0.5rem;
}

footer .newsletter-form iframe {
  border: none;
  border-radius: 4px;
  max-width: 100%;
}

footer .newsletter-form small {
  display: block;
  margin-top: 0.5rem;
  color: #ccc;
}

/* 16) Responsive */
@media (max-width: 768px) {
  /* Mobile nav - single source of truth */
  header {
    position: relative;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 0.75rem;
    right: 2rem;
    z-index: 10000;
  }

  nav ul.menu {
    display: none;
    flex-direction: column;
    gap: 1rem;

    background: #0a1f44;
    width: 100%;
    margin: 0;
    padding: 4rem 0 1rem;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  nav ul.menu.open {
    display: flex;
  }

  nav ul.menu li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  /* FAQ becomes single column */
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list li.full-span {
    grid-column: 1;
  }

  /* Product panel stacks */
  .product-panel {
    flex-direction: column;
  }

  .product-info {
    padding: 1.5rem;
  }

  /* Reduce hero height on mobile to avoid big navy gap */
  .hero {
    min-height: auto;
    height: auto;
    padding-top: 12vh;
    padding-bottom: 5vh;
  }

  /* Slightly smaller footer on mobile */
  footer {
    padding: 1rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 10vh;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content .tagline {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  .about-flex {
    flex-direction: column;
    padding: 0 1rem;
  }
}
/* Add breathing room below the hero */
.hero {
  padding-bottom: 3vh; /* try 3–5vh */
}
/* Mailchimp submit visibility fix – minimal override */
.mailchimp-signup .button,
.mailchimp-signup input[type="submit"] {
  background-color: #002147;
  color: #ffffff;
}
/* ===== Current Partners: simple white logo background + spacing ===== */

.current-partners {
  margin-top: 32px !important;
}

.current-partners .tier-title {
  margin: 28px 0 10px;
}

/* Keep the tier blurb readable and spaced */
.current-partners .tier-blurb {
  color: #e9eef9;
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 16px;
}

/* Center the card row */
.current-partners .cards.single {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* Card container */
.current-partners .card {
  width: 100%;
  max-width: 520px;
  background: transparent;
  border: 0;
}

/* This is the white box you want */
.current-partners .logo-link {
  display: block;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
}

/* Constrain logo size and keep it centered */
.current-partners img.logo {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Optional: tighten spacing under the logo before text */
.current-partners .card-body {
  margin-top: 14px;
  text-align: center;
  color: #ffffff;
}
/* ===== 17) Gallery page grid ===== */

.gallery-page {
  background: #0a1f44;
  padding: 5%;
  /* Your header is position:absolute; give the page top room so it doesn't overlap */
  padding-top: calc(5% + 70px);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.gallery-item img {
  width: 100%;
  height: 100%;

  /* Keeps every tile consistent so one photo can’t blow up the layout */
  aspect-ratio: 4 / 3;
  object-fit: cover;

  display: block;
}

/* Big grid, no forced crop */
main.gallery-grid{
  max-width: none;
  width: min(1600px, 96vw);
  margin: 0 auto;
  padding: 110px 16px 60px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 18px;
}

main.gallery-grid img{
  width: 100%;
  height: auto;          /* key */
  object-fit: contain;   /* key */
  border-radius: 10px;
  background: #0a1f44;   /* keeps edges clean if any letterboxing happens */
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
/* =========================
   HERO MOBILE SCALING FIX
   ========================= */

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Prevent hero from collapsing into a narrow column */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Ensure hero background layers scale correctly */
.hero,
.hero-overlay {
  left: 0;
  right: 0;
}
/* =========================
   FIX: body flex causing narrow centered layout
   ========================= */

body {
  align-items: stretch; /* if body is display:flex, this stops the shrink */
}

header,
main,
footer {
  width: 100%;
  max-width: none;
}

/* Belt and suspenders: make sure the hero itself can never be constrained */
.hero,
.hero-content {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
/* =========================
   FINAL FIX: page-level flex
   ========================= */

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* =========================
   MOBILE FIX: Inline Trust Bar (the blue strip)
   ========================= */

/* Target the exact section by its aria-label */
section[aria-label="At-a-glance benefits"]{
  width: 100%;
  max-width: none;
}

/* Mobile: let it wrap, remove the fixed height, and space it nicely */
@media (max-width: 768px){
  section[aria-label="At-a-glance benefits"]{
    height: auto !important;
    flex-wrap: wrap !important;
    gap: 8px 14px !important;
    padding: 10px 12px !important;
    justify-content: center !important;
  }

  /* Hide the bullet separators on wrap so lines look clean */
  section[aria-label="At-a-glance benefits"] > div[style*="opacity:.5"]{
    display: none !important;
  }

  /* Keep each label readable and avoid ugly breaks */
  section[aria-label="At-a-glance benefits"] > div{
    white-space: nowrap;
  }
}
/* =========================
   FIX: page is still constrained on mobile
   ========================= */

html, body {
  width: 100% !important;
  max-width: 100% !important;
}

body {
  margin: 0 !important;
}

/* Make sure the document flow is normal */
body {
  display: block !important;
}

/* Ensure main sections span the viewport */
header, main, footer {
  width: 100% !important;
  max-width: 100% !important;
}

/* If you have any global wrapper, these help without knowing its class */
main > section {
  width: 100%;
  max-width: 100%;
}

