/* ==============================
   HUNGER HOUSE INTERNATIONAL
   Global Stylesheet
   ============================== */

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

:root {
  --black: #1a1a1a;
  --dark: #222222;
  --teal: #1A8278;
  --teal-mid: #2CA89A;
  --teal-light: #3dbfb0;
  --gold: #c8973a;
  --gold-light: #e0b060;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #888888;
  --light-gray: #eeeeee;
  --text: #333333;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ==============================
   NAVIGATION
   ============================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--teal);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: background 0.3s;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal-light); }

.nav-links .has-dropdown { position: relative; }

.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--teal);
  min-width: 180px;
  padding: 8px 0;
  border-top: 2px solid rgba(255,255,255,0.3);
}

.nav-links .has-dropdown:hover .dropdown { display: block; }

.nav-links .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social a {
  color: var(--white);
  font-size: 16px;
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--teal-light); }

.nav-social svg { width: 18px; height: 18px; fill: currentColor; }

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--teal);
  z-index: 999;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 30px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu a.sub { padding-left: 50px; font-weight: 400; color: rgba(255,255,255,0.75); font-size: 12px; }
.mobile-menu a:hover { color: var(--teal-light); }
.mobile-social {
  display: flex;
  gap: 20px;
  padding: 20px 30px 0;
}
.mobile-social a { color: var(--white); }
.mobile-social svg { width: 20px; height: 20px; fill: currentColor; }

/* ==============================
   PAGE HERO (inner pages)
   ============================== */

.page-hero {
  background: var(--black);
  padding: 140px 40px 70px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ==============================
   SECTIONS
   ============================== */

.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 40px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-gray {
  background: var(--off-white);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.eyebrow-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 10px;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 700px;
}

.section-body.light { color: rgba(255,255,255,0.82); }

/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--teal);
  color: var(--white);
}
.btn-gold:hover { background: var(--teal-mid); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-gold {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-gold:hover { background: var(--teal); color: var(--white); }

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-newsletter-sub {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
}

.footer-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }

.footer-newsletter-form button {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 3px;
  border: none;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--teal-light); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ==============================
   GRID / LAYOUT UTILITIES
   ============================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 32px;
  border-radius: 4px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

/* ==============================
   DIVIDER / GOLD LINE
   ============================== */

.gold-divider {
  width: 50px;
  height: 3px;
  background: var(--teal);
  margin-bottom: 20px;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 900px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }

  .two-col, .three-col, .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section { padding: 60px 24px; }
  .section-full { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 50px; }
}
