@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700&display=swap');

/* ===== BASE STYLES ===== */
html, body {
  height: 100%;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #F5F5F5;
  margin: 0;
  padding: 0;
}

.content-wrapper {
  /* Add min-height to ensure it spans the content */
  min-height: calc(100vh - 70px - 150px); /* Adjust 150px to match your footer height */
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: #08755B;
  border-bottom: none;
  padding: 0.5rem 1rem;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.nav-logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-menu a.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #FFF;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Menu container */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #08755B;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1
}

.content-wrapper {
  /* Ensure this container spans the entire content height */
}
/* ===== HERO SECTION ===== */
.hero-banner {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 45, 82, 0.8), rgba(8, 117, 91, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.hero-title {
  text-align: center;
  color: #f8da78;
  font-size: 2.1rem;
  padding-top: 2rem;
  max-width: 70%;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  text-align: center;
  color: #f8da78;
  font-size: 1.4rem;
  padding-top: 1.5rem;
  max-width: 70%;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  background: linear-gradient(135deg, #0F2D52 0%, #08755B 100%);
  margin: 3rem auto;
  max-width: 60%;
  border-radius: 12px;
  padding: 2.5rem 0;
  text-align: center;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  margin-bottom: 3rem;
}

.section-title {
  text-align: center;
  color: #0a775b;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #7f948f;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* SECTION CONTENT STYLES */
.section-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-content p {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: inherit;
}

.section-content ul {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.section-content li {
  margin-bottom: 1rem;
  line-height: 1.5;
  text-align: left;
  background: none;
  padding: 0;
  border-left: none;
  box-shadow: none;
}

.section-content strong {
  color: #0F2D52;
  font-weight: 600;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0 1rem;
  background-color: #08755B;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #08755B;
  font-size: 1.1rem;
}

.cta-button.secondary {
  background-color: transparent;
  color: #08755B;
  border: 2px solid #08755B;
}

.cta-button:hover {
  background-color: #065a46;
  transform: translateY(-2px);
}

.cta-button.secondary:hover {
  background-color: #08755B;
  color: white;
}

/* CTA Section Styling */
.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-subtitle {
  color: #f8da78;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.google-calendar-container {
  margin-top: 1.5rem;
}

/* Force Google button styling */
.gc-button {
  display: inline-block !important;
  padding: 1rem 2rem !important;
  background-color: #f8da78 !important;
  color: #0F2D52 !important;
  text-decoration: none !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 2px solid #f8da78 !important;
  font-size: 1.1rem !important;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif !important;
  min-width: 200px !important;
}

.gc-button:hover {
  background-color: #e6c966 !important;
  transform: translateY(-2px) !important;
  border-color: #e6c966 !important;
}

/* ===== FOOTER STYLES ===== */
.footer {
  background-color: #08755B;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: auto;
  width: 100%;
}

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

.footer p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #f8da78;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-copyright {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
