/* ---------------------------- */
/* GLOBAL RESET                 */
/* ---------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

/* ---------------------------- */
/* NAVIGATION BAR               */
/* ---------------------------- */
.navbar {
  width: 100%;
  background: #15a05a;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ffcb05;
}

/* ---------------------------- */
/* HERO SECTION                 */
/* ---------------------------- */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 48px;
  font-weight: bold;
  padding: 20px;
}

/* ---------------------------- */
/* GENERIC SECTIONS             */
/* ---------------------------- */
.section {
  padding: 80px 40px;
  text-align: center;
}

.image-section {
  background-size: cover;
  background-position: center;
  padding: 100px 40px;
  color: white;
  text-shadow: 1px 1px 2px black;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------------------------- */
/* NEWS GRID                    */
/* ---------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card h3 {
  padding: 15px;
  font-size: 20px;
}

.news-card p {
  padding: 0 15px 20px 15px;
  color: #555;
}

/* ---------------------------- */
/* CALL TO ACTION BUTTON        */
/* ---------------------------- */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  background: #ffcb05;
  color: #102542;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.2s;
}

.btn:hover {
  background: #ffb300;
}

/* ---------------------------- */
/* SUBPAGES (ABOUT, TEAMS ETC.) */
/* ---------------------------- */
.page-header {
  background: #102542;
  color: white;
  padding: 60px 20px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

.content-box {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ---------------------------- */
/* TEAMS GRID                   */
/* ---------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.team-card img {
  max-width: 120px;
  margin: 0 auto 15px auto;
}

/* ---------------------------- */
/* ARTICLE PAGES                */
/* ---------------------------- */
.article-img {
  max-width: 900px;
  margin: 20px auto;
  border-radius: 10px;
  display: block;
}

.article-body {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 18px;
  line-height: 1.7;
}

/* ---------------------------- */
/* CONTACT FORM                 */
/* ---------------------------- */
.contact-form {
  max-width: 600px;
  margin: 30px auto;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #102542;
  color: white;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #153d63;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

@media (max-width: 850px) {
  .hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; background: #102542; width: 100%; }
  .nav-links.open { display: flex; }
}

/* PARALLAX */
.parallax { background-attachment: fixed; }

/* ANIMATIONS */
.fade-in { opacity: 0; animation: fadeIn 1.2s forwards; }
.slide-up { opacity: 0; transform: translateY(40px); animation: slideUp 1s forwards; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* SPONSOR STRIP */
.sponsor-strip { display: flex; justify-content: center; gap: 40px; padding: 40px; background: white; }

/* MAP */
.map-frame { width: 100%; height: 400px; border: none; border-radius: 10px; margin-top: 20px; }

/* FOOTER */
.footer { background: #a8d270; color: white; text-align: center; padding: 25px; margin-top: 40px; }

