/* ======================================================
   RESET & BASE
====================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

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

/* ======================================================
   GLOBAL CONTAINER
====================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======================================================
   HEADER
====================================================== */
.site-header {
  /* no background here */
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 254px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;

  background-image: url("images/header-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Logo */
.logo img {
  height: 160px;
  width: auto;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  text-decoration: underline;
}

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 10px;
  margin-left: 12px;
}

.lang-switch button {
  min-width: 90px;
  padding: 6px 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button:hover {
  background: rgba(255,255,255,0.15);
}

.lang-switch button.active {
  background: #ffffff;
  color: #6b3b1f;
  border-color: #ffffff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* ======================================================
   MAIN CONTENT
====================================================== */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  background: #f7f5f3;      /* ✅ light warm grey */
  border-radius: 14px;      /* optional */
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  color: #6b3b1f;
  margin-bottom: 16px;
}

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

/* Hero image */
.hero-image img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Mission */
.mission {
  margin-top: 60px;
  background: #f3e4dc;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  color: #4b2a1a;
  font-size: 1.1rem;
}

/* ======================================================
   ABOUT PAGE
====================================================== */
.about-header h1 {
  font-size: 2.4rem;
  color: #6b3b1f;
}

.about-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5a3119;
  max-width: 720px;
  margin-top: 10px;
}

.about-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #4b2a1a;
}

/* ======================================================
   CONTACT PAGE
====================================================== */
.page-contact .page-content {
  max-width: 900px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-info h2,
.contact-form h2 {
  color: #4b2a1a;
}

.contact-form {
  background: #f3e4dc;
  padding: 30px;
  border-radius: 12px;
}

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

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background: #6b3b1f;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #5a3119;
}

.contact-note {
  font-size: 0.85rem;
  margin-top: 12px;
  color: #555;
}

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
  /* no background here */
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
  background: #2b1408;
  color: #eee;
  text-align: center;
  font-size: 0.9rem;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #3b1e12;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    z-index: 1000;
  }

  .main-nav.open {
    display: flex;
  }

  .lang-switch {
    margin-top: 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   ADVERTISEMENT
================================ */

.advert {
  margin: 60px 0;
}

.advert-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;

  background: #e0e0e0;   /* outer grey */
  border-radius: 14px;
}
/* Desktop (default) */
.advert-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile override */
@media (max-width: 768px) {
  .advert-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fills frame, no black bars */
  }
}

.advert-title {
  margin-bottom: 20px;
  text-align: center;

  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: #4b2a1a;        /* matches your theme */
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
  .advert-title {
    font-size: 1.3rem;
  }
}


/* =============================
   GOLD SPONSORS LINK SECTION
============================= */

.sponsors-link {
  margin: 30px 0 60px;
}

.sponsors-link-btn {
  display: inline-block;

  padding: 14px 28px;
  border-radius: 8px;

  background: #f3e4dc;
  color: #6b3b1f;

  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

.sponsors-link-btn:hover {
  background: #e6d2c4;
  transform: translateY(-2px);
}

/* Center on mobile */
@media (max-width: 768px) {
  .sponsors-link {
    text-align: center;
  }
}


/* ======================================================
   SPONSORS PAGE
====================================================== */

.sponsors-header {
  text-align: center;
  margin-bottom: 50px;
}

.sponsors-header h1 {
  font-size: 2.4rem;
  color: #6b3b1f;
  margin-bottom: 12px;
}

.sponsors-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Sponsors list */
.sponsors-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Base sponsor card */
.sponsor-card {
  background: #f7f5f2;
  padding: 30px;
  border-radius: 14px;
}

.sponsors-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap; /* stacks nicely on mobile */
}

/* ---------------- IMAGE SPONSOR ---------------- */

.sponsor-image {
  display: flex;
  justify-content: center;
}

.sponsor-frame {
  width: 100%;
  max-width: 900px;
  height: auto;

  background: transparent; 
  border: 3px solid #555;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}


.sponsor-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;   /* optional but safe */
}

/* ---------------- TEXT SPONSOR ---------------- */

.sponsor-text h3 {
  font-size: 1.6rem;
  color: #6b3b1f;
  margin-bottom: 10px;
}

.sponsor-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}

.sponsor-contact {
  font-weight: 600;
  color: #333;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .sponsor-card {
    padding: 20px;
  }

  .sponsors-header h1 {
    font-size: 2rem;
  }

  .sponsors-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}



/* ======================================================
   PROJECTS SECTION
====================================================== */


.mission-projects {
  margin-top: 2rem;
  padding: 1.8rem;
  background-color:  #BA7340;;
  color: #f5f5f5;
  border-left: 4px solid #b89b5e;
  border-radius: 6px;
}

.mission-projects p {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.mission-link {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.mission-link:hover {
  text-decoration: underline;
}

.contact-info {
  background-color: #f7f4ee;      /* soft warm beige */
  border: 1px solid #e0d8c8;      /* subtle neutral border */
  padding: 24px;
  border-radius: 8px;
  box-sizing: border-box;

  /* force-remove any old red border */
  outline: none;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 12px;
}
