/* Global Styles */
:root {
  --dark-green: #213b2d;
  --light-green: #355946;
  --white-green: #f2fff8;
  --gold: #e6c566;
  --cream: #f5efd7;
  --tan: #d1bd89;
  --text-dark: #222;
  --text-light: #fff;
  --red: #cc522f;
  --grey: #e5e7eb;
  --light-grey: #f8f9fa;
  --blue: #2196f3;
}

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

body {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  word-break: break-word;
}

h1, h2, h3, .serif-font {
  font-family: 'Stoke', serif;
  font-weight: 500;
}
h4 {
  font-family: 'Stoke', serif;
  font-weight: 400;
  font-size: 18px;
  margin: 30px 0 15px;
}
p {
  margin-bottom: 10px;
  word-break: break-word;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}
ul { margin-left: 15px; }

.top-notification {
    background: var(--white-green);
    padding: 12px 25px;
    font-weight: 500;
    color: var(--dark-green);
    border-radius: 5px;
    margin-bottom: 30px;
    border: 2px dotted var(--light-green);
}


.btn {
  display: inline-block;
  background-color: transparent;
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 30px 0;
}

.btn:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--dark-green);
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--dark-green);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--dark-green);
  color: var(--text-light);
}
.location .btn, .hero-content .btn {
  display: inline-block;
  background-color: transparent;
  color: var(--text-light);
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.location .btn:hover, .hero-content .btn:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
}


/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  transition: all 0.3s ease;
}

.logo-img {
  max-height: 80px;
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 30px;
}

.main-nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  text-transform: capitalize;
  font-size: 13px;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Sticky Header */
.site-header.sticky {
  background-color: var(--dark-green);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.site-header.sticky .logo-img {
  max-height: 60px;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-content {
  width: 80%;
  max-width: 1200px;
}

.overlay-close {
  position: absolute;
  top: 15px;
  right: 21px;
  font-size: 30px;
  color: var(--text-light);
  cursor: pointer;
}

.overlay-nav ul {
  list-style: none;
  text-align: center;
}

.overlay-nav ul li {
  margin: 20px 0;
}

.overlay-nav ul li a {
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.overlay-nav ul li a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 59, 45, 0.6);
}

.hero-content {
  position: relative;
  color: var(--text-light);
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 4.25rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

/* Info Blocks Section */
.info-blocks {
  padding: 80px 0;
}

.block-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-block {
  flex: 0 0 calc(33.333% - 30px);
  padding: 40px;
  border: 1px solid var(--dark-green);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-block h2 {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 2rem;
}

.info-block p {
  margin-bottom: 30px;
}

/* Location Section */
.location {
  min-height: 500px;
  padding: 6vw 0;
  background-image: url('../images/location-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 59, 45, 0.7);
}

.location .container {
  position: relative;
}

.location-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.location h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.location .launch {
  font-size: 1.5rem;
  margin-bottom: 10vw;
}

/* Mission Section */
.mission {
  padding: 80px 0;
  background-color: var(--gold);
  text-align: center;
}

.mission h2 {
  font-size: 3rem;
  color: var(--dark-green);
  margin-bottom: 30px;
}

.mission p {
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background-color: var(--dark-green);
  backgroumd-image: url('../images/banner-bg.jpg');
  background-size: cover;
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo-img {
  max-width: 120px;
}

.footer-nav-section {
  flex: 1 1 150px;
  margin-bottom: 30px;
}

.footer-nav-section h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-nav-section ul {
  list-style: none;
}

.footer-nav-section ul li {
  margin-bottom: 10px;
}

.footer-nav-section ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav-section ul li a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .info-block {
    flex: 0 0 calc(50% - 20px);
  }
  
  .footer-nav-section {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .logo-img {
    max-height: 60px;
    transition: all 0.3s ease;
  }
  .site-header.sticky .logo-img {
    max-height: 50px;
  }
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  
  .info-block {
    flex: 0 0 100%;
  }
  
  .footer-nav-section {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  /* .site-header {
    background-color: var(--dark-green);
  } */
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  
  .location h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  
  .mission h2 {
    font-size: 2.5rem;
  }
  
  .footer-nav-section {
    flex: 1 1 100%;
  }
}

.hero a.btn {
    margin: 0;
}