body {
  margin: 0;
  font-family: "Anton SC", sans-serif;
  text-align: center;
  background-color: #f5f5f5;
}

.banner {
  background-image: url('banner6.png');
  background-size: cover;
  background-position: center;
  padding: 110px 20px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.banner2 {
  background-image: url('banner5.png');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.banner h1 {
  font-size: 5.5em;
  margin: 0;
}
.banner2 h1 {
  font-size: 5.5em;
  margin: 0;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 30px; /* space between buttons */
  margin: 40px 0;
}

.store-button {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  font-size: 1.2em;
  color: white;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.store-button:hover {
  background-color: #0056b3;
}

.store-button.disabled {
  background-color: #aaa;
  pointer-events: none;
}
body {
  background-color: #0B164D;
}

.subheader {
  font-size: 1.5em;
  margin-top: 20px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.sub-image {
  margin-top: 20px;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}
.store-button {
  display: inline-block;
  margin: 10px;
  padding: 0;
  border: none;
  background: none;
}

.store-icon {
  width: 160px; /* adjust as needed */
  height: auto;
margin: 0 75px;
  transition: transform 0.3s ease;
}

.store-button:hover .store-icon {
  transform: scale(1.05);
}

.store-button.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.store-block {
  text-align: center;
}

.store-label {
  margin-top: 10px;
  font-size: 1em;
  color: white;
}.site-footer {
  background-color: #005368;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.copyright {
  font-size: 0.9em;
  margin: 0;
}

.top-nav {
  background-color: #0056b3;
  padding: 0.5em 0;
  text-align: center;
  font-family: 'Anton SC', sans-serif;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f0c040;
}
.contact-info {
  background-color: #;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Anton SC', sans-serif;
}

.contact-info h3 {
  font-size: 2em;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.2em;
  line-height: 1.6;
}

.contact-info a {
  color: #f0c040;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}


