/* General Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

header, footer {
  padding: 1rem;
  text-align: center;
}
.hero-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  background-color: #ff6f00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff8800;
}
.cta-row a {
  background: linear-gradient(45deg, #ffa500, #ff4500);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: background-color 0.3s;
  background-color: orange;
}

.cta-row a:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ffcc00, #ff5733);
  background-color: darkorange;
}
/* Locations Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-template-rows: repeat(3, auto);   /* 3 rows */
  gap: 1.5rem;
  padding: 2rem;
  background-color: #000;
  max-width: 1200px;
  margin: 0 auto;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.location-tile {
  background-color: #111;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: white;
  box-shadow: 0 0 8px rgba(255, 111, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
}

.location-tile img {
  max-width: 120px;
  height: auto;
  margin: 0 auto 0.5rem auto;
  object-fit: contain;
}

.location-tile strong {
  font-size: 1rem;
}

.location-tile small {
  font-size: 0.85rem;
  color: #ff6f00;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background-color: darkorange;
  color: black;
  padding: 1rem 0;
  font-weight: bold;
  font-size: 3rem;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  margin-top: 60px;	
}

.marquee-content {
  display: inline-block;
  animation: scroll-left 100s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin-right: 4rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
}

100% {
  transform: translateX(-100%);
}

}

.countdown {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5rem 0;

}

.countdown h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

#countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.2rem;
}

#countdown-timer span {
  background-color: #111;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.map-section {
  padding: 2rem;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 1rem;
  color: #ff6f00;
}

#map {
  width: 100%;
  height: 500px;
  border: 2px solid orange;
  border-radius: 8px;
}
#home-map {
  width: 100%;
  height: 400px;
  border-top: 2px solid orange;
  border-bottom: 2px solid orange;
  margin-top: 2rem;
}
.store-finder-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.list-column {
  max-height: 80vh;
  overflow-y: auto;
}
#map {
  height: 100%;
  min-height: 500px;
  width: 100%;
}
.map-column {
  flex: 1;
  padding-left: 20px;
}
/* Navigation Container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
}

.nav-logo img {
  height: 50px;
}

/* Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  display: block;
}

.nav-menu a:hover {
  background-color: #ff6f00;
  border-radius: 5px;
}

/* Dropdown Styling */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.dropdown-content li a {
  padding: 0.5rem 1rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.page-intro {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  color: white;
}
.store-listing {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-bottom: 5px;
  padding: 10px;
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #000;
}
.store-icon {
  width: 50px;
  height: auto;
  margin-right: 1rem;
  border-radius: 6px; /* Optional: rounded corners */
  flex-shrink: 0;
}
.store-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
  color: #FFFFFF;
}
.firework-loop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;

}
.countdown-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.zip-search {
  padding: 2rem;
  text-align: center;
  background-color: #111;
  color: white;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.zip-search-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.zip-search input {
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  width: 200px;
}

.zip-search button {
  padding: 0.5rem 1rem;
  background-color: red;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.zip-search button:hover {
  background-color: darkred;
}
.location-entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.store-icon {
  width: 60px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.store-details h3 {
  margin: 0 0 0.5rem 0;
  color: #ff6f00;
}

.store-links a {
  color: #00bfff;
  text-decoration: none;
  margin-right: 0.5rem;
}

.store-links a:hover {
  text-decoration: underline;
}
.store-map-container {
  display: flex;
  gap: 1rem;
  height: 500px;
  margin: 2rem 0;
}

.store-list-scrollable {
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  list-style: none;

}

.store-listing {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.store-list li {
  margin-bottom: 1rem;
  cursor: pointer;
}

.store-map {
  flex: 1;
  height: 100%;
  border: 1px solid #ccc;
}

.store-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem;
  flex-direction: row; /* make sure this is NOT row-reverse */
}

.store-map {
  flex: 1 1 50%;
}

.store-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* This is the key to center horizontally */
  text-align: center;  /* Optional: makes text align centered */
  gap: 1rem;
}

.store-logo {
  max-width: 400px;
  height: auto;
}

.cta-button {
  margin-top: 1rem; /* space above button */
  display: inline-block;
}

.coupon-content {
  margin-top: 1.5rem;
  text-align: center;
}

.coupon-section {
  margin-top: 1.5rem;
  text-align: center;
}
/* For WebKit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /* Light background */
}

::-webkit-scrollbar-thumb {
  background: #ccc; /* Lighter thumb color */
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa; /* Slightly darker on hover */
}
.coupon-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
  align-items: center;
}

.coupon-left img {
  max-width: 250px;
  height: auto;
}

.coupon-right {
  max-width: 400px;
}

.coupon-download {
  text-align: center;
  margin-top: 1rem;
}
.coupons-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      padding: 2rem;
}
.coupon-card {
      background: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      width: 220px;
	  color: black;
}
.coupon-card img {
      max-width: 100%;
      height: auto;
      margin-bottom: 0.5rem;
}
.coupon-card a {
      display: inline-block;
      margin: 0.5rem 0;
      text-decoration: none;
      font-weight: bold;
      color: black;
}
.black-heading {
  color: #000;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .store-details {
    flex-direction: column;
    padding: 1rem;
  }

  .store-info, .store-map {
    width: 100%;
    text-align: center;
  }

  .store-logo {
    max-width: 80%;
    margin: 0 auto 1rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .location-tile {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .page-intro h1 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .zip-search input {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .zip-search button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .store-listing {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .store-listing a {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .zip-search-container {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .location-tile {
    padding: 1.25rem;
    font-size: 1rem;
  }
}@media (max-width: 768px) {
  #map {
    height: 300px;
    min-height: 300px;
  }
}

/* 🔽 Mobile optimization */
@media (max-width: 600px) {
  .countdown-header h2 {
    font-size: 1.25rem;
  }

  #countdown-timer {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .firework-loop {
    width: 15px;
  }
}
.hero {
  width: 100%;
  padding: 5rem 1rem;
  background-color: black;
  color: white;
  box-sizing: border-box;
  text-align: center;
}

.hero-logo {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 2.5rem;
  padding: 1rem;
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-logo {
    max-width: 95%;
  }

  .hero h1 {
    font-size: 1.75rem;
    padding: 0.5rem;
  }
}

