@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #0A0A0A;
  color: #E0F7FA;
}

nav, nav .logo, nav ul li a, h1, h2, h3, .hero h1 {
  font-family: 'Orbitron', sans-serif;
}
nav {
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;            /* vertical alignment */
  padding: 1rem 2rem;             /* space around the nav */
}


nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7DF9FF; /* Neo Blue */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}


.hero {
  text-align: center;
  padding: 5rem 2rem;
}

.hero h1 {
  font-size: 4rem;
  color: #FF6EC7; /* Neo Pink */
}

.hero p {
  margin-top: 1rem;
  font-size: 3rem;
  color: #E0F7FA;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #BAE9F4, #F4A4D2); /* gradient button */
  color: #0A0A0A;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #121212;
  font-size: 0.9rem;
  color: #AAAAAA;
}
nav ul li a {
  color: #E0F7FA;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #7DF9FF; /* Hover neon blue */
}

nav ul li a.active {
  color: #7DF9FF;
  border-bottom: 2px solid #7DF9FF;
}

nav ul li a:focus {
  outline: 3px solid #FF6EC7;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 1rem;
  background: #7DF9FF;
  color: #0A0A0A;
  padding: 0.5rem;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

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

  .hero p {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .btn {
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
  }
  nav ul {
    gap: 1rem;
  }
  nav ul li a {
    font-size: 0.9rem;
  }
  nav .logo {
    font-size: 1.2rem;
  }
  footer {
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 2rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1.4rem;
  }
  nav ul {
    gap: 1.2rem;
  }
  nav ul li a {
    font-size: 1rem;
  }
  nav .logo {
    font-size: 1.4rem;
  }
  footer {
    font-size: 0.9rem;
  }
}
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.8rem;
  }
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 1.5rem;
  }
  nav ul {
    gap: 1.5rem;
  }
  nav ul li a {
    font-size: 1.1rem;
  }
  nav .logo {
    font-size: 1.6rem;
  }
  footer {
    font-size: 1rem;
  }
}
nav .logo img {
  height: 100px;   /* adjust as needed */
  width: auto;
  display: block;
}
nav .logo {
  display: block;
}/* === Container for all blog cards === */
.blogs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* === Individual card === */
.blog-card {
  background-color: #121212;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.blog-card a {
  display: block;               /* Makes the whole card clickable */
  text-decoration: none;        /* No underline for links inside the card */
  color: inherit;               /* Keeps text color consistent */
}

/* === Thumbnail image === */
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid #7DF9FF; /* Neo Blue accent */
  aspect-ratio: 4/3;                /* Keeps consistent shape */
  object-fit: cover;                /* Crops excess if needed */
}

/* === Card text === */
.blog-card h3,
.blog-card p {
  color: #E0F7FA;   /* Light text for contrast on dark background */
}

.blog-card h3 {
  margin: 1rem 1rem 0.5rem;
  font-size: 1.5rem;
}

.blog-card p {
  margin: 0 1rem 1rem;
  font-size: 1rem;
}

/* === Card link focus state === */
.blog-card a:focus {
  outline: 3px solid #FF6EC7;   /* Neo Pink for focus ring */
  outline-offset: 2px;
}

/* === Content wrapper for overall layout === */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.flyer-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.flyer-thumbnail {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .flyer-gallery {
    flex-direction: column;
    align-items: center;
  }
}
.newsletter-form {
  background-color: #121212;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.newsletter-form input[type="email"] {
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
  width: 80%;
  max-width: 300px;
}

.newsletter-form button {
  margin-top: 1rem;
}
/* === Pop-up modal for flyers === */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 4rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
}

.modal:target {
  display: block;
}
