/* Style_Home.css — Wilmington Coffee Passport */

/* ————————————————
   0. Google Font
   ———————————————— */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* ————————————————
   1. Reset & Box Model
   ———————————————— */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ————————————————
   2. Base Styles
   ———————————————— */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0a1f44; /* navy background to avoid white gaps */
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.5;
}

/* ————————————————
   3. Header & Navigation
   ———————————————— */
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;
}
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);
}



/* ————————————————
   4. Hero Section
   ———————————————— */
.hero {
  position: relative;
  min-height: 120vh;
  background: url('downtown.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;            /* (you already had this) */
  flex-direction: column;   /* ← add this */
  gap: 1rem;                /* ← optional spacing between lines */
}
.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;
  /* (optional) add a max-width if you want to cap how wide it can get:
     max-width: 300px;  */
}


/* ————————————————
   Buttons
   ———————————————— */
.btn {
  display: inline-block;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  padding: 0.75rem 1.5rem;
  background: #ffcc00;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
  
}
.btn:hover {
  background: #e6b800;
}
/*──────────────────────────────────────────────────
  Sections: About & How It Works (tighter & bigger)
──────────────────────────────────────────────────*/
.about-passport,
.how-it-works {
  /* reduce padding so sections butt up closer */
  padding: 30px 10px;   /* you can go as low as 20px if you want */
  background-color: #DDD;      /* light gray background */
  color: #0a1f44;                /* your navy accent as text color */
}

/* Section headings */
.about-passport h2,
.how-it-works h2 {
  font-size: 2.75rem;   /* ~44px if base is 16px */
  margin: 0.5rem 0;     /* half‐rem above & below */
  letter-spacing: 0.5px;
  text-align: center;
}

/* Body copy & list */
.about-passport p,
.how-it-works ol {
  font-size: 1.25rem;   /* ~20px */
  line-height: 1.6;
  margin: 0.75rem 0;    /* tighten the gap under paragraphs */
  text-align: center;
}
/* ── Main steps as bullets, centered under the heading ── */
.how-it-works ul.how-steps {
  list-style: disc inside;
  display: inline-block;
  margin: 1rem auto;
  padding: 0;
  text-align: left;
}
.how-it-works .container {
  text-align: center;
}
.how-it-works ul.how-steps > li {
  margin-bottom: 0.75rem;
}
.about-passport .container {
  max-width: 800px;     /* or 900–1000px if you want a bit wider */
  margin: 0 auto;       /* center it */
  padding: 0 20px;      /* small side padding so it never touches the viewport edge */
}

/* center both heading and paragraph */
.about-passport h2,
.about-passport p {
  text-align: center;
}
/*──────────────────────────────────────────────────
   Why Buy Section
──────────────────────────────────────────────────*/
.why-buy {
  padding: 60px 20px;               /* generous vertical padding */
  background-color: #DDD;        /* subtle off-white background */
  color: #0a1f44;                   /* your navy accent for text */
}

.why-buy .container {
  max-width: 1140px;                /* match other sections’ width */
  margin: 0 auto;                   /* center on large screens */
}

.why-buy h2 {
  font-size: 2.75rem;               /* ~44px if base is 16px */
  margin-bottom: 1rem;              /* space under heading */
  text-align: center;               /* center the headline */
  letter-spacing: 0.5px;            /* subtle tracking */
}

.why-buy p {
  font-size: 1.25rem;               /* ~20px body copy */
  line-height: 1.6;                 /* comfortable reading */
  margin-bottom: 1rem;              /* space between paragraphs */
  max-width: 800px;                 /* limit line length for readability */
  margin-left: auto;
  margin-right: auto;               /* center text block on wide screens */
}



/* Nested rewards list */
.rewards-list {
  list-style-type: disc;
  margin: 0.5rem 0 1rem 1.5rem;
}
.how-it-works ul {
  font-size: 1.25rem;
  line-height: 1.6;
}


/* If you want even less gap between the two sections, you can individually tweak bottom padding on .about-passport or top padding on .how-it-works: */
/*
.about-passport { padding-bottom: 20px; }
.how-it-works  { padding-top:    20px; }
*/

/* Primary button tweak */
.btn {
  display: inline-block;
  background-color: #ffc107;     /* bright accent */
  color: #0a1f44;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.btn:hover {
  background-color: #e6ac00;
}

/* Divider */
hr.form-divider {
  margin: 3rem 5rem 5rem;
  border: none;
  height: 2px;
  background: #ddd;
}

/* ————————————————
   5. About 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);
}

/* ————————————————
   7. FAQ Section
   ———————————————— */
.faq-section {
  background: linear-gradient(135deg, #0a1f44 0%, #0a1f44 100%);
  
  padding: 4rem 5%;
  color: #f0f0f0;
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 20px
  );
}
.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;
}

/* ————————————————
   8. Shops Page (list of many shops)
   ———————————————— */
.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;
}

/* ————————————————
   9. Stores Directory
   ———————————————— */
.stores-page {
  background: #0a1f44;
  padding: 4rem 5% 0; /* zero bottom padding so it flows right into the footer */
  flex: 1; /* allow it to grow above the footer */
  color: #0a1f44; /* will be overridden by section title color */
}
.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; /* gold accent */
  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;
}

/* ————————————————
   10. Social Grid Light Variant
   ———————————————— */
.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;
}

/* ————————————————
   11. Store Page (Featured 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;
}

/* ————————————————
   12. 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;             /* if your footer text is white */
  font-size: 0.9rem;
}
footer .newsletter-form p {
  margin-bottom: 0.5rem;
}
footer .newsletter-form iframe {
  border: none;            /* hide the default frame border */
  border-radius: 4px;      /* soften the edges */
  max-width: 100%;         /* respond on very small screens */
}
footer .newsletter-form small {
  display: block;
  margin-top: 0.5rem;
  color: #ccc;
}


/* Container & Responsive Width */
.mailchimp-signup {
  max-width: 600px;
  width: 90%;
  margin: 2rem auto 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

/* Headline */
.mailchimp-signup h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Field Groups */
.mailchimp-signup .mc-field-group {
  margin-bottom: 1rem;
}
.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.5rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 1rem;
}

/* Error/Success Responses */
.mailchimp-signup .response {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #cc0000; /* errors */
}
.mailchimp-signup #mce-success-response {
  color: #007a00;
}

/* Submit Button */
.mailchimp-signup .submit-wrap {
  text-align: center;
}
.mailchimp-signup .button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2px;
  background-color: #002147;  /* match your dark-blue footer */
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.mailchimp-signup .button:hover {
  opacity: 0.9;
}

/* ── Divider ─────────────────────────────────────────── */
.form-divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 2rem auto 1.5rem;
  width: 80%;             /* or tweak to taste */
}

/* ── Shrink & restyle form ───────────────────────────── */
.mailchimp-signup {
  max-width: 480px;        /* smaller than 600px */
  width: 90%;
  margin: 0 auto 1.5rem;
  padding: 1rem;           /* down from 1.5rem */
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.mailchimp-signup h2 {
  font-size: 1.3rem;      /* a touch smaller */
  margin-bottom: 0.75rem;
}

.mailchimp-signup .mc-field-group {
  margin-bottom: 0.75rem; /* tighten vertical rhythm */
}

.mailchimp-signup input[type="text"],
.mailchimp-signup input[type="email"] {
  padding: 0.4rem;        /* smaller inputs */
  font-size: 0.95rem;
}

/* keep button styling as-is or tweak further */
.mailchimp-signup .button {
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
}

/* ————————————————
   Mobile-Specific Adjustments Only
   (do not alter any desktop styles above)
   ———————————————— */

/* Make images, videos, iframes fluid everywhere */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Phones & small tablets */
@media (max-width: 768px) {

  /* Stack the nav menu and give it full-width background */
  nav ul.menu {
    flex-direction: column;
    gap: 1rem;
    background: #0a1f44;
    padding: 1rem;
    width: 100%;
    margin-top: 4rem; /* push it below the header */
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* hidden by default—toggled via JS on .open */
  }
  nav ul.menu.open {
    display: flex;
  }
  nav ul.menu li a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
  }

  /* Adjust FAQ grid to single column */
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-list li.full-span {
    grid-column: 1;
  }

  /* Make product panel stack */
  .product-panel {
    flex-direction: column;
  }
  .product-info {
    padding: 1.5rem;
  }
}

/* Extra-small phones */
@media (max-width: 480px) {

  /* Further shrink hero */
  .hero {
    flex: none;
    min-height: auto;
    height: auto;
    padding-top: 10vh; /* less top padding under header */
  }
  .hero-content {
    padding: 0 2rem;
    text-align: center;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Buttons full-width */
  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  /* Reduce tagline font-size if needed */
  .hero-content .tagline {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  /* Adjust About section to single column */
  .about-flex {
    flex-direction: column;
    padding: 0 1rem;
  }
}
/* ─────────────────────────────────────────────────────
   MOBILE FIXES (only – drop these at the bottom)
───────────────────────────────────────────────────── */

/* 1. Make the nav always visible (stacked) on phones/tablets */
@media (max-width: 768px) {
  /* Force the menu into a vertical, full-width layout */
  nav ul.menu {
    display: flex !important;       /* override any “display: none” */
    flex-direction: column;
    gap: 1rem;
    background: #0a1f44;            /* same navy as header/footer */
    padding: 1rem 0;                /* give it some vertical padding */
    position: relative;             /* let it flow under the header */
    top: 0;
    left: 0;
    width: 100%;
  }
  nav ul.menu li a {
    width: 100%;
    text-align: center;
  }
  /* If you had a .menu-toggle button, you can hide it since the menu is always visible */
  .menu-toggle {
    display: none;
  }
}

/* 2. Shrink the hero on smaller phones so it doesn’t force extra blue below */
@media (max-width: 480px) {
  .hero {
    min-height: auto;        /* stop forcing 120vh on tiny screens */
    height: auto;
    padding-top: 10vh;       /* keep a little space under the header */
  }
  .hero-content {
    padding: 0 2rem;         /* narrow the side padding for small phones */
    text-align: center;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-content .tagline {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }
  /* Make your primary .btn full‐width */
  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  /* If you have any “about” flex containers, stack them */
  .about-flex {
    flex-direction: column;
    padding: 0 1rem;
  }
}

/* 3. Ensure footer isn't pushed too far down (kills unwanted blue gap) */
html,
body {
  margin: 0;
  padding: 0;
  background-color: #0a1f44;  /* keep the same navy all the way */
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make sure your main page content (e.g. .stores-page or <main>) does NOT flex-grow beyond its content */
main,
.stores-page {
  flex: none;
}

/* Finally, ensure the footer sits right below your content */
footer {
  background: #0a1f44;
  color: #f0f0f0;
  padding: 2rem 5%;
  text-align: center;
  margin: 0;
}
/* ── Divider ─────────────────────────────────────────── */
hr.form-divider {
  border: none;
  border-top: 25px solid #ccc !important; /* gray line */
  margin: 3rem auto 5rem !important;   /* space above & below */
  width: 100% !important;                 /* adjust width as you like */
  display: block;
}

/* ── Mailchimp wrapper spacing ───────────────────────── */
.mailchimp-signup {
  max-width: 480px !important;           /* keep your narrower width */
  width: 90% !important;
  margin: 2rem auto 5rem !important;   /* add 2rem margin-top */
  padding: 1rem !important;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}


/* ──────────────────────────────────────────────────
   MOBILE “HAMBURGER” MENU (paste these at the very end)
─────────────────────────────────────────────────── */

/* 1) By default (all screen sizes), hide the toggle icon; show the nav normally */
.menu-toggle {
  display: none;          /* hidden except on small screens */
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.75rem;
  cursor: pointer;
}

nav ul.menu {
  display: flex;          /* keep your existing horizontal nav on desktop/tablet */
  flex-direction: row;
  gap: 1.5rem;
}

/* 2) Once we hit ≤768px, switch to “hamburger” behavior */
@media (max-width: 768px) {
  /* a) Show the ☰ button */
  .menu-toggle {
    display: block;
    position: absolute;     /* pin it in the top corner */
    top: 0.75rem;
    right: 1.5rem;          /* adjust as needed so it doesn’t overlap your logo */
    z-index: 10;            /* above everything */
  }

  /* b) Hide the nav by default */
  nav ul.menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #0a1f44;     /* same navy */
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    position: absolute;      /* slide it in under the header */
    top: 0;
    left: 0;
    z-index: 5;
  }
  /* c) When .open is added to <ul class="menu">, show it */
  nav ul.menu.open {
    display: flex;
  }
}

/* 3) Tidy up hero so the header + toggle don’t cover the top of your images */
@media (max-width: 768px) {
  .hero {
    padding-top: 12vh;     /* leave enough space under the fixed header */
    min-height: auto;      /* no 120vh forcing giant blue gap */
    height: auto;
  }
  .hero-content {
    padding: 0 1.5rem;     /* slightly narrower on small phones */
    text-align: center;
  }
}

/* 4) Ensure no giant navy “empty” space at bottom of any page */
html,
body {
  margin: 0;
  padding: 0;
  background-color: #0a1f44;  /* ensures background never goes white */
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main,
.stores-page {
  flex: none;   /* don’t stretch these to push footer down */
}
footer {
  background: #0a1f44;
  color: #f0f0f0;
  padding: 2rem 5%;
  text-align: center;
  margin: 0;
}
/* ──────────────────────────────────────────────────
   MOBILE “HAMBURGER” MENU (force hide/show behavior)
─────────────────────────────────────────────────── */

.menu-toggle {
  display: none;         /* hidden by default (desktop) */
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.75rem;
  cursor: pointer;
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  z-index: 10;
}

nav ul.menu {
  display: flex;         /* desktop/tablet: horizontal row */
  flex-direction: row;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  /* 1) Show the ☰ hamburger */
  .menu-toggle {
    display: block;
  }

  /* 2) Hide the <ul> entirely until .open is added */
  nav ul.menu {
    display: none !important;
    flex-direction: column;
    gap: 1rem;
    background: #0a1f44;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }
  /* 3) Once .open is present, force it to show */
  nav ul.menu.open {
    display: flex !important;
  }

  /* 4) Tame the hero on small phones so no giant navy gap */
  .hero {
    padding-top: 12vh;      /* shift content just below header */
    min-height: auto;       /* no 120vh forcing a huge blue block */
    height: auto;
  }
  .hero-content {
    padding: 0 1.5rem;
    text-align: center;
  }

  /* 5) Kill any chance of a white gap at bottom */
  html,
  body {
    margin: 0;
    padding: 0;
    background-color: #0a1f44;
  }
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  main,
  .stores-page {
    flex: none;
  }
  footer {
    background: #0a1f44;
    color: #f0f0f0;
    padding: 2rem 5%;
    text-align: center;
    margin: 0;
  }
}
/* ──────────────────────────────────────────────────
   1) Reposition the hamburger so it matches the desktop nav
─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Your header padding is: padding: 0.75rem 2rem; */
  .menu-toggle {
    /* position it exactly where the links used to live on desktop */
    top: 0.75rem;     /* same vertical offset as your header’s padding-top */
    right: 2rem;      /* same horizontal offset as your header’s padding-right */
    /* (we already set display:block at ≤768px) */
  }
}


/* ──────────────────────────────────────────────────
   2) Shrink the hero on mobile so it never “over-tallnesses” the screen
─────────────────────────────────────────────────── */
.hero {
  /* ensure the background covers the full area and always maintains aspect ratio */
  background: url('downtown.jpg') center/cover no-repeat;
}

/* On tablets & phones, stop forcing 120vh → huge blue gap: */
@media (max-width: 768px) {
  .hero {
    /* remove the giant min-height so the image can simply size to its content */
    min-height: 60vh;   /* about 60% of viewport height */
    height: auto;       /* let it grow/shrink naturally */
    padding-top: 12vh;  /* keep enough room under the fixed header */
  }
}

/* On extra-small phones, shrink even more if needed */
@media (max-width: 480px) {
  .hero {
    min-height: 50vh;   /* around half the viewport height */
    padding-top: 10vh;  /* a little less top padding under the header */
  }

  .hero-content {
    padding: 0 1.5rem;  /* keep the text centered and narrower */
    text-align: center;
  }
}
@media (max-width: 768px) {
  /* Ensure the header is the positioning parent */
  header {
    position: relative;
  }

  /* Re‐position the hamburger icon to the same inset as your desktop links */
  .menu-toggle {
    position: absolute;
    top: 0.5rem;    /* matches your header’s top padding */
    right: 0rem;     /* matches your header’s right padding */
    z-index: 20;     /* sit above the hero image */
    display: block;  /* already in your CSS—but restated here for clarity */
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* Hide/show the <ul> as before… */
  nav ul.menu {
    display: none !important;
    /* …other mobile styles… */
  }
  nav ul.menu.open {
    display: flex !important;
    /* … */
  }

  /* Hero/min‐height tweaks (unchanged) */
  .hero {
    min-height: 60vh;
    padding-top: 12vh;
  }
  /* footer/main tweaks (unchanged) */
}
/* ──────────────────────────────────────────────────
   REDUCE FOOTER HEIGHT ON MOBILE TO ELIMINATE EXTRA BLUE
─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* 1) Shrink footer padding so it doesn’t take up so much vertical space */
  footer {
    padding: 1rem 5%;   /* originally was 2rem; cut in half on mobile */
  }

  /* 2) If you’re using .stores-page (or any <main> wrapper) as flex: none,
     make sure it does not add extra bottom padding/margin */
  main,
  .stores-page {
    margin-bottom: 0;   /* kill any unintended gap below content */
    padding-bottom: 0;  /* kill any bottom padding that might push footer down */
  }

  /* 3) If you have a final “© …” line in .hero or another section above the footer,
     make sure it doesn’t have bottom margin */
  .hero + footer,
  .hero + * {
    margin-bottom: 0;
  }

  /* 4) (Optional) If you still want a bit of separation,
     give the footer a thin top border rather than thick padding */
  footer {
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}
@media (max-width: 768px) {
  /* 1) Remove any small min‐height you set earlier (so we can control height by padding) */
  .hero {
    min-height: auto;       /* no forced 60vh or 80vh—let padding do the work */
    padding-top: 12vh;      /* keep that space under the fixed header */
    padding-bottom: 65vh;   /* ← extend the container downward by 40% of viewport */
    background: url('downtown.jpg') center/cover no-repeat;
    height: auto;
  }
}
/* ————————————————
   13. Auto‑scrolling Gallery (final copy‑paste)
   ———————————————— */
.gallery-section {
  background: #0a1f44;
  padding: 2rem 5%;
  overflow: hidden;      /* hide all scrollbars */
  min-height: 500px;     /* ← set to how tall you want the strip */
}

.gallery-section .gallery-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;    /* shrink‑wrap so translateX works */
  animation: scroll-gallery 30s linear infinite;
}

.gallery-section .gallery-grid img {
  flex: 0 0 auto;
  height: 500px;         /* ← MATCHES container’s min-height */
  width: auto;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-section:hover .gallery-grid {
  animation-play-state: paused;
}

@keyframes scroll-gallery {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.store-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.store-column {
  flex: 1 1 300px;
}

.store-column h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-color, #bf9252);
  padding-bottom: 5px;
}
.store-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.store-column {
  flex: 1 1 300px;
}

.store-heading {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--accent-color, #bf9252); /* Gold fallback */
  border-bottom: 2px solid var(--accent-color, #bf9252);
  padding-bottom: 5px;
}
/* Brand colors */
:root { --navy:#0A1F44; --gold:#bf9252; }

/* Center the intro and make it gold */
.stores-page .partners-intro { text-align: center; }
.stores-page .partners-intro h1 { color: var(--gold); }
.stores-page .partners-intro p {
  color: var(--gold);
  max-width: 72ch;
  margin: 0.25rem auto 0;
}

/* Tier headers and blurbs */
.stores-page .tier-title {
  color: var(--gold);
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: .35rem;
}
.stores-page .tier-blurb {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 1rem;
  color: #e6e6e6; /* change to var(--gold) if you want these gold too */
}

/* Center the card grid and keep single cards from going full-width */
.stores-page .cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 16px; 
  justify-items: center;            /* centers cards in their cells */
}
.stores-page .card { 
  width: min(100%, 520px);          /* caps card width so 1-up rows look centered and tidy */
  border: 1px solid #e5e7eb; 
  border-radius: 14px; 
  background: #fff; 
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  overflow: hidden;
  display: flex; 
  flex-direction: column;
}
.stores-page .card .logo { 
  width: 100%; height: 140px; object-fit: contain; 
  background: #f7f7f7; padding: 12px; border-bottom: 1px solid #eee;
}
.stores-page .card-body { padding: 12px 14px 16px; text-align: left; }
/* Gold, centered headers and blurbs */
.stores-page .tier-title { 
  color: var(--gold); text-align: center; font-size: 2.25rem; margin-bottom: .35rem; 
}
.stores-page .tier-blurb { 
  color: var(--gold); text-align: center; max-width: 70ch; margin: 0 auto 1rem; 
}
/* Intro centered and gold */
.stores-page .partners-intro { text-align: center; }
.stores-page .partners-intro h1 { color: var(--gold); }
.stores-page .partners-intro p {
  color: var(--gold);
  max-width: 72ch;
  margin: 0.25rem auto 0;
}

/* Card grids */
.stores-page .cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px; 
  justify-items: stretch;
}

/* Single-row grids center and cap width */
.stores-page .cards.single {
  grid-template-columns: min(100%, 960px);
  justify-content: center;
  margin-inline: auto;
}

/* Horizontal cards */
.stores-page .card { 
  width: 100%;
  display: flex; 
  align-items: stretch;
  border: 1px solid #e5e7eb; 
  border-radius: 14px; 
  background: #fff; 
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  overflow: hidden;
}

/* Logo left column */
.stores-page .card .logo { 
  flex: 0 0 220px;           /* fixed logo column */
  width: 220px; 
  height: 220px; 
  object-fit: contain; 
  background: #f7f7f7; 
  padding: 16px; 
  border-right: 1px solid #eee;
  border-bottom: 0;          /* remove the old bottom border */
}

/* Text right column */
.stores-page .card-body { 
  flex: 1 1 auto; 
  padding: 18px 20px; 
}
.stores-page .card-name { font-size: 1.1rem; margin: 0 0 .4rem; color: var(--navy); }
.stores-page .card-blurb { margin: 0; font-size: .98rem; color: #444; line-height: 1.55; }

/* Mobile: stack vertically */
@media (max-width: 720px) {
  .stores-page .card { flex-direction: column; }
  .stores-page .card .logo {
    width: 100%; height: 160px; border-right: 0; border-bottom: 1px solid #eee;
  }
}
/* Horizontal card layout - desktop */
.stores-page .tier .cards .card {
  display: grid !important;
  grid-template-columns: clamp(200px, 26vw, 320px) 1fr;
  column-gap: 22px;
  align-items: center;
  width: 100%;
}

/* Logo left column */
.stores-page .tier .cards .card .logo {
  width: 100%;
  height: clamp(180px, 26vw, 260px);
  object-fit: contain;
  background: #f7f7f7;
  padding: 16px;
  border-right: 1px solid #eee;
  border-bottom: 0;
}

/* Text right column */
.stores-page .tier .cards .card .card-body {
  padding: 18px 22px;
}

/* Center single-card rows and cap width */
.stores-page .cards.single {
  grid-template-columns: min(100%, 1000px);
  margin-inline: auto;
}

/* Mobile - stack */
@media (max-width: 720px) {
  .stores-page .tier .cards .card {
    grid-template-columns: 1fr;
  }
  .stores-page .tier .cards .card .logo {
    height: 180px;
    border-right: 0;
    border-bottom: 1px solid #eee;
  }
}
:root { --navy:#0A1F44; --gold:#FFCC00; } /* exact gold from your Shop button */

/* headings and intro use the brand gold */
.stores-page .partners-intro h1,
.stores-page .partners-intro p,
.stores-page .tier-title,
.stores-page .tier-blurb { color: var(--gold); }
/* Default: fill the square for uniform size */
.stores-page .tier .cards .card .logo {
  width: 100%;
  height: 260px;
  object-fit: cover !important;   /* fill the frame */
  object-position: center;
  padding: 0;
  background: #fff;
  border-right: 1px solid #eee;
}

/* Exception: use on Angela only */
.logo--contain {
  object-fit: contain !important;  /* no crop */
  padding: 12px;
}
/* Uniform logo frame with real padding */
:root { --logo-side: 260px; --logo-pad: 18px; }  /* tweak pad if you want more */

.stores-page .tier .cards .card {
  /* widen the left column to account for padding */
  grid-template-columns: calc(var(--logo-side) + var(--logo-pad) * 2) 1fr !important;
}

.stores-page .tier .cards .card .logo {
  box-sizing: border-box;              /* padding counts toward the size */
  width: 100%;
  height: var(--logo-side);
  padding: var(--logo-pad);
  background: #fff;
  border-right: 1px solid #eee;

  /* default: fill the box so all logos appear the same visual size */
  object-fit: cover !important;
  object-position: center;
}

/* Exception: logos you do NOT want cropped (Angela) */
.stores-page .tier .cards .card .logo.logo--contain {
  object-fit: contain !important;
}
/* Local Partners: big title + intro line */
.stores-page .partners-intro { text-align: center; }

.stores-page .partners-intro > h1 {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(2.9rem, 4.5vw + .3rem, 3.7rem);
  margin: 0 0 .6rem 0;
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

.stores-page .partners-intro > p {
  color: var(--gold);
  font-size: clamp(1.1rem, 0.9vw + .75rem, 1.3rem);
  line-height: 1.65;
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}
.stores-page .tier-title {
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(2.3rem, 3.2vw + .5rem, 3.1rem);
  text-align: center;
  margin-bottom: .5rem;
}

.stores-page .tier-blurb {
  color: var(--gold);
  font-size: clamp(1.05rem, 0.7vw + .8rem, 1.2rem);
  text-align: center;
  line-height: 1.6;
}
/* Grid wrapper for multiple product panels */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

/* Two-image layout for shirt front/back */
.product-image.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-image.grid-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Stack shirt images on small screens */
@media (max-width: 720px) {
  .product-image.grid-2 {
    grid-template-columns: 1fr;
  }
}
/* Make both product images display at the same size */
:root { --product-img-h: 420px; }           /* tweak height to taste */

.product-image.equal {
  height: var(--product-img-h);
  overflow: hidden;
}

.product-image.equal img {
  width: 100%;
  height: 100%;
  object-fit: cover;                         /* uniform crop to match sizes */
  display: block;
}

/* Shorter image on small screens so cards don’t feel too tall */
@media (max-width: 720px) {
  :root { --product-img-h: 320px; }
}
/* Grid to stack multiple product panels */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

/* Card contrast: off-white background + subtle border */
.product-panel {
  background: #f7f7f7;                 /* off-white card so white shirts stand out */
  border: 1px solid #e5e7eb;           /* light gray border */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* Equal image sizing across products */
:root { --product-img-h: 420px; }      /* adjust to taste */
.product-image.equal {
  height: var(--product-img-h);
  overflow: hidden;
  background: #fff;                    /* pure white behind the photo area */
}
.product-image.equal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons: brand gold + strong contrast */
.btn.buy-btn {
  background-color: #bf9252;           /* your gold */
  color: #111;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 10px;
}
.btn.buy-btn:hover { filter: brightness(.95); }

/* Mobile: shorten image height so cards aren’t too tall */
@media (max-width: 720px) {
  :root { --product-img-h: 320px; }
}
/* Product cards with light gray background */
.product-panel {
  background: #f7f7f7;                /* off-white card background */
  border: 1px solid #e5e7eb;          /* subtle border */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* Make product images equal height */
:root { --product-img-h: 420px; }
.product-image.equal {
  height: var(--product-img-h);
  overflow: hidden;
  background: #fff;                   /* keep white behind the actual image */
}
.product-image.equal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons back to bright yellow */
.btn.buy-btn {
  background-color: #ffcc00;          /* bright yellow */
  color: #0a1f44;                     /* navy text for contrast */
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 8px;
  text-transform: uppercase;
}
.btn.buy-btn:hover {
  background-color: #e6b800;          /* darker yellow on hover */
}

/* Mobile: shorter product images */
@media (max-width: 720px) {
  :root { --product-img-h: 320px; }
}
/* --- Force light-gray product cards sitewide --- */
.store-page .product-panel {
  background: #f7f7f7 !important;   /* override any earlier #fff */
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* Keep the photo area white inside the gray card */
.store-page .product-panel .product-image.equal {
  background: #fff !important;
}

/* Partner CTA */
.partner-cta { padding-top: 0; }
.cta-partner {
  background: #0A1F44;
  color: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.18);
  text-align: center;
}
.cta-partner h2 {
  margin: 0 0 .5rem;
  font-size: 1.8rem;
  letter-spacing: .2px;
}
.cta-partner p {
  margin: 0 auto 1.25rem;
  max-width: 68ch;
  line-height: 1.6;
  color: #eef2f7;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }

/* Primary gold button */
.btn-gold {
  background: #FFD200;   /* same yellow as your "Our Local Partners" heading */
  color: #0A1F44;        /* navy text for contrast */
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.06s ease;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #e6bd00;   /* slightly darker yellow on*


/* Outline secondary */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #FFD200;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: #132a57;
  border-color: #FFD200;
  outline: none;
}

/* Tweak spacing on larger screens */
@media (min-width: 900px) {
  .cta-partner h2 { font-size: 2rem; }
}
.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
}

.hero-content .subtitle {
  font-size: 0.9em;
}

.hero-content .tm {
  font-size: 0.5em;
  vertical-align: super;
}

.hero-content .tagline {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 30px;
}

.hero-content .cta-button {
  display: inline-block;
  padding: 18px 35px;
  background: #FFC72C; /* your yellow */
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
}
/* Hero background (use your existing image or leave this off if you already set it elsewhere) */
.hero {
  position: relative;
  min-height: 62vh;
  background: center / cover no-repeat;
}

/* Optional dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* Centers everything regardless of parent styles */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10vh 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* Two-line title */
.hero-title {
  margin: 0;
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
}
.hero-title .line1 { 
  display: block; 
  font-size: clamp(40px, 9vw, 96px);
}
.hero-title .line2 { 
  display: block; 
  font-size: clamp(36px, 8vw, 84px);
}

/* ™ sizing/position */
.tm {
  font-size: .5em;
  vertical-align: super;
  margin-left: .1em;
}

/* Tagline and CTA */
.tagline {
  color: #fff;
  font-size: clamp(18px, 3vw, 36px);
  margin: 0 0 10px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 28px;
  background: #FFC72C; /* gold */
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Tighter spacing on small screens */
@media (max-width: 600px) {
  .hero-inner { padding: 14vh 16px; }
}
/* Center hero text globally */
.hero, 
.hero * {
  text-align: center !important;
}

/* Make title two lines nicely */
.hero h1 {
  line-height: 1.05;
}

/* TM styling */
.hero h1 .tm {
  font-size: .5em;
  vertical-align: super;
  margin-left: .08em;
}
/* ===== HERO FIXES (paste at the very end) ===== */

/* Center the hero container itself */
.hero {
  display: flex !important;
  align-items: center !important;      /* vertical center */
  justify-content: center !important;  /* horizontal center */
  padding-top: 0 !important;           /* remove the left-biased top offset */
  min-height: 62vh;                    /* keep your hero height */
}

/* Center the inner content and cap width */
.hero-content {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important; /* makes the CTA line up */
  gap: 1rem !important;
}

/* Make the title look intentional on two lines */
.hero-content h1 {
  margin: 0 0 12px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  color: #fff !important;
}

/* Proper ™ sizing if you’ve added <span class="tm">™</span> */
.hero-content .tm {
  font-size: .5em !important;
  vertical-align: super !important;
  margin-left: .08em !important;
}

/* Tagline centered and readable */
.hero-content .tagline {
  color: #fff !important;
  margin-bottom: 18px !important;
}

/* Button centered (overrides the earlier flex-start) */
.hero-content .btn,
.hero-content .cta-button {
  align-self: center !important;
}

/* Optional: overlay for readability if you want it */
.hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,.35) !important;
  pointer-events: none !important;
}
/* ===== FINAL HERO CENTERING OVERRIDES ===== */
.hero {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding-top: 0 !important;         /* neutralize earlier 20vh top push */
  min-height: 62vh !important;
}

.hero-content {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 0 5% !important;          /* keep your side padding */
}

.hero-content h1 {
  margin: 0 0 12px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  color: #fff !important;
}

/* TM on "Coffee Passport" */
.hero-content .tm {
  font-size: .5em !important;
  vertical-align: super !important;
  margin-left: .08em !important;
}

/* Center CTA regardless of earlier rules */
.hero-content .btn,
.hero-content .cta-button {
  align-self: center !important;
}/* === FINAL OVERRIDES: center hero === */
.hero {
  justify-content: center !important;   /* center the inner block horizontally */
  align-items: center !important;       /* center vertically */
  padding-top: 0 !important;            /* neutralize 20vh push */
}

.hero-content {
  text-align: center !important;
  align-items: center !important;       /* because .hero-content is display:flex */
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1100px !important;
}

.hero-content .btn,
.hero-content .cta-button,
.hero-content a {
  align-self: center !important;
}

.hero-content .tm {
  font-size: .5em !important;
  vertical-align: super !important;
  margin-left: .08em !important;
}
/* NUCLEAR CENTERING FOR HERO — paste at the very end */

/* 1) Center the entire hero block itself */
.hero {
  display: grid !important;          /* overrides earlier flex */
  place-items: center !important;     /* centers both axes */
  padding-top: 0 !important;          /* neutralize 20vh push */
}

/* 2) Make the inner content truly centered */
.hero-content {
  justify-items: center !important;   /* grid child alignment */
  text-align: center !important;      /* center text inside */
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* 3) Ensure the CTA can’t drift left */
.hero-content .btn,
.hero-content .cta-button,
.hero-content a {
  justify-self: center !important;    /* grid self-alignment */
  align-self: center !important;      /* just in case */
}

/* 4) Nice ™ size/alignment */
.hero-content .tm {
  font-size: .5em !important;
  vertical-align: super !important;
  margin-left: .08em !important;
}
.hero-content h1 { outline: 3px solid hotpink !important; }
/* === FINAL: Center the hero that has .hero-inner === */
.hero {
  display: grid !important;
  place-items: center !important;   /* centers both axes */
  padding-top: 0 !important;        /* neutralize earlier 20vh */
  min-height: 62vh !important;
}

.hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 16px !important;
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.hero-title {
  margin: 0 0 12px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.hero-title .tm {
  font-size: .5em !important;
  vertical-align: super !important;
  margin-left: .1em !important;
}

.tagline {
  color: #fff !important;
  margin: 0 0 14px !important;
}

.btn-cta {
  align-self: center !important;
}
/* === HERO POLISH (drop-in overrides) === */
.hero {
  display: grid !important;
  place-items: center !important;
  min-height: 68vh !important;
  padding: 10vh 0 8vh !important;       /* space under the fixed header */
  background: url('downtown.jpg') center/cover no-repeat !important;
  position: relative !important;
}
.hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,.28) !important;  /* subtle darken for readability */
  pointer-events: none !important;
}
.hero-content {
  position: relative !important;
  z-index: 1 !important;
  width: min(1100px, 92vw) !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Headline sizing + tidy ™ */
.hero-title { 
  margin: 0 0 8px !important; 
  color: #fff !important; 
  font-weight: 800 !important; 
  line-height: 1.04 !important; 
}
.hero-title .line1 { font-size: clamp(44px, 8.5vw, 96px) !important; display: block; }
.hero-title .line2 { font-size: clamp(36px, 7.5vw, 80px) !important; display: block; }
.hero-title .tm { font-size: .45em !important; vertical-align: super !important; margin-left: .08em !important; }

/* Tagline */
.tagline { 
  color: #fff !important; 
  font-size: clamp(18px, 2.6vw, 32px) !important; 
  margin: 6px 0 12px !important; 
}

/* CTA looks like a button (not a link) */
.btn-cta {
  display: inline-block !important;
  background: #FFC72C !important;    /* brand gold */
  color: #0A1F44 !important;         /* navy text */
  padding: 14px 26px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
  box-shadow: 0 6px 16px rgba(10,31,68,.18) !important;
  transition: transform .06s ease, filter .2s ease !important;
}
.btn-cta:hover { filter: brightness(.95) !important; transform: translateY(1px) !important; }

/* Kill the debug outline from earlier */
.hero-content h1 { outline: none !important; }

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero { padding: 12vh 0 6vh !important; min-height: 56vh !important; }
  .btn-cta { width: auto !important; }
}
