body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

header {
  text-align: center;
  background-color: #3C6E5B;
  padding: 20px 0;
}

.title-image {
  max-width: 100%;
  height: auto;
}
/* Ensure header content scales responsively */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

/* Responsive banner image */
.title-image {
  max-width: 100%;
  height: auto;
  width: 100%; /* Optional: forces full width, remove if you want it smaller */
  object-fit: contain; /* Maintains aspect ratio */
}

.nav-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #2C664F;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-bar li {
  margin: 0 15px;
}

.nav-bar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  padding: 10px;
  display: inline-block;
  transition: background 0.3s;
}

.nav-bar a:hover {
  background-color: #2C664F;
  border-radius: 5px;
}

main {
  padding: 40px 20px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #555D66;
  margin-top: 30px;
}

.social-links a {
  color: #2C664F;
  font-weight: 600;
  text-decoration: none;
  margin: 0 10px;
}

.social-links a:hover {
  text-decoration: underline;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.columns {
  flex: 1 1 200px; /* grow, shrink, base width */
  max-width: 300px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 8px;
}

.thumbnail_align {
  margin-bottom: 10px;
}

.thumbnail {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Optional: Improve spacing and typography */
.columns h4 {
  margin-top: 10px;
  font-weight: 600;
}

.columns p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Optional for small screens */
@media (max-width: 768px) {
  .columns {
    flex: 1 1 100%;
  }
}
    /* Inline styles for age verification overlay */
    #age-verification {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.9);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      font-family: 'Montserrat', sans-serif;
      padding: 20px;
      text-align: center;
    }

    #age-verification button {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 1rem;
      background-color: #fff;
      color: #000;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }
	  /* Footer styles */
footer {
  padding: 20px;
  text-align: center;
  background: #555D66;
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-links img {
  width: 20vw;      /* Responsive width */
  max-width: 80px;  /* Prevents getting too big */
  height: auto;
  object-fit: contain;
}

/* Make age-verification button mobile-friendly */
#age-verification button {
  width: 200px;
  max-width: 80%;
}

/* Optional: style copyright */
footer .copyright {
  font-size: 0.9rem;
  margin-top: 10px;
}
section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.left_article {
  flex: 1 1 100%;
  max-width: 600px;
}

.right_article {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right_article img {
  width: 100%;
  height: auto;
  max-width: 335px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* On smaller screens: stack vertically */
@media (max-width: 768px) {
  section {
    flex-direction: column;
    align-items: center;
  }

  .left_article, .right_article {
    flex: 1 1 100%;
    text-align: center;
  }

  .left_article {
    padding-bottom: 20px;
  }
}
/* Full height center layout */
.story-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* full viewport height */
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Container holds text + image */
.story-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

/* Text column */
.story-content {
  flex: 1 1 500px;
  font-family: 'Montserrat', sans-serif;
}

/* Image column */
.story-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }

  .story-image {
    margin-top: 20px;
  }

  .story-content {
    padding: 0 10px;
  }

  .nav-bar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-bar li {
    margin: 5px 0;
  }
}
.story-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
