/* ===================================================
   RESET AND GLOBAL SETTINGS
=================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Merriweather', Tahoma, Geneva, Verdana, serif, sans-serif;
  background-color: #ffffff;
  color: #000000;
}

h1, h2, h3, .nav-menu a, .hero-slide-title {
  font-family: 'Poppins', sans-serif;
}

/* ===================================================
   HEADER STYLES
=================================================== */
header {
  background-color: #007A3D;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin-top: 10px;
  font-size: 1.2em;
  font-style: italic;
}

.site-header {
  background-color: #007A3D;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

/* ===================================================
   NAVIGATION
=================================================== */
nav {
  background-color: #007A3D;
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: #005e2e;
  border-radius: 5px;
}

.main-nav {
  flex-grow: 1;
  text-align: right;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 5px;
  display: inline-block;
}

/* ---------------------------- */
/* Dropdown Menu Styles         */
/* ---------------------------- */
.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: black;
  top: 100%;
  left: 0;
  min-width: 150px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li a {
  color: black;
  padding: 10px;
  display: block;
}

.dropdown-menu li a:hover {
  background: #eee;
}

/* ---------------------- */
/* Hamburger Menu Styles  */
/* ---------------------- */
.hamburger {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    display: none;
    background-color: #007A3D;
    width: 100%;
    text-align: left;
    padding: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 2em;
    color: white;
  }
}

/* ===================================================
   BANNER
=================================================== */
.banner {
  background-color: #FDC12C;
  color: #000;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.3em;
}

/* ===================================================
   HERO SECTION AND SLIDER
=================================================== */
.hero-banner {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 90vh;
  overflow: hidden;
  background-color: #f5f5f5;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
} */

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* ===================================================
   CALL TO ACTION (CTA) BUTTONS
=================================================== */
.cta-button {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
}

.cta-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .cta-button {
    font-size: 0.9em;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 0.8em;
    padding: 8px 12px;
  }
}

/* Alternate CTA */
.secondary-cta {
  background-color: #E60000;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.secondary-cta:hover {
  background-color: #c10000;
}

/* ===================================================
   CONTENT SECTION
=================================================== */
.content {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.content p {
  margin: 10px 0;
  font-size: 1.1em;
}

/* ===================================================
   CTA SECTION CARDS
=================================================== */
.cta-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  position: relative;
  z-index: 2;
}

.cta-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
}

.cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.cta-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.cta-link {
  text-decoration: none;
  color: #fff;
  background-color: #0073e6;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-link:hover {
  background-color: #005bb5;
}

/* ===================================================
   FLYER DOWNLOAD SECTION
=================================================== */
.flyer-download {
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px 10px;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.flyer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.flyer-btn {
  background-color: #007A3D;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s;
  flex: 1 1 auto;
  max-width: 200px;
  text-align: center;
}

.flyer-btn:hover {
  background-color: #005e2e;
}

@media (max-width: 480px) {
  .flyer-btn {
    padding: 10px 14px;
    font-size: 0.9em;
  }
}

/* ================================
   FOOTER STYLING (Gold Theme)
================================= */
footer {
  background-color: #FFD700; /* Gold */
  color: #222;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Sections */
.footer-section {
  flex: 1 1 300px;
  margin: 10px;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #111;
}

/* Quick Links (Vertical, Left-Aligned) */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #222;
  text-decoration: none;
  display: inline-block;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #000;
}

/* Contact Info (Centered Text) */
.footer-contact {
  text-align: center;
}

.footer-contact p {
  margin-bottom: 8px;
}

/* Social Media (Right-Aligned, Small Icons) */
.footer-socials {
  text-align: right;
}

.footer-socials .social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.footer-socials .social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.footer-socials .social-icons a:hover img {
  transform: scale(1.1);
}

/* Copyright Section */
footer .copyright {
  text-align: center;
  width: 100%;
  margin-top: 30px;
  font-size: 12px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    text-align: center;
  }

  .footer-socials .social-icons {
    justify-content: center;
  }

  .footer-section {
    margin-bottom: 30px;
  }
}
