/* General Reset */
body {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  color: #004B91; /* Subaru blue */
  text-align: left;
}

.buttons a {
  text-decoration: none;
  color: inherit;
  color:white;
}

/* Hero Section */
.hero-section img {
  width: 100%;
  height: auto;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
}

#TCM h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: left;
}

.hero-section p {
  font-size: 1.2rem;
  text-align: left;
}

/* Event Details */
.event-details, .shop-online {
  padding: 0px;
  margin: 10px auto;
  max-width: 800px;
  text-align: left;
}

.event-details p, .shop-online p {
  margin: 15px 0;
  text-align: left;
}

/* Buttons */
.buttons {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Align buttons to the left */
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #004B91;
  color: white;
}

.btn-primary:hover {
  background-color: #003366;
}

/* Footer */
footer {
  text-align: left;
  padding: 10px 20px;
  background: #004B91;
  color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  h1, h2 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .event-details, .shop-online {
    padding: 0px;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .btn {
    width: 100%; /* Full width buttons for smaller screens */
  }
}

@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  footer {
    font-size: 0.8rem;
  }
}
