/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #FAEBD7
}

b,p,h1{
  font-family:'Times New Roman';
}
h1{
  
  padding: 1%;
}


html, body {
  max-width: 100%;
  overflow-x: hidden; 
  font-family: 'Times New Roman';
}

/* NAVIGATION */
.navLinks {
  background-color: #228B22;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-size: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.GHA_Logo #logo {
  width: 50px;
  height: auto;
  display: block;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: background-color 0.3s;
}

/* Center nav links (desktop) */
.center-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.center-links a {
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.center-links a:hover, button:hover {
  background-color: #78fa2c;
}


/* === Drop Down ===*/

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 1vw;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.dropdown:hover .dropbtn {
  background-color: #78fa2c;
}

/* Dropdown content (hidden by default) */
.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;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}


.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* ======= MOBILE NAV MENU ======= */
@media (max-width: 768px) {
  .navLinks {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .center-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: static;
    transform: none;
    width: 100%;
    background-color: #228B22;
    padding: 10px 0;
  }

  .center-links.show {
    display: flex;
  }

  .center-links a {
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 3vw;
  }

  .hamburger {
    display: block;
  }
  
  .dropdown .dropbtn {
    font-size: clamp(14px, 3.5vw, 20px);
    color: white;
    background-color: inherit;
    border: none;
    outline: none;
    font-family: inherit;
  }
}
/* Shared button style */
.standardButton {
  display: inline-block;
  padding: 12px 25px;
  background-color:#228B22;
  color: #2c2c2c;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.standardButton:hover {
  background-color:#78fa2c;
  transform: scale(1.05);
}

/* Activity IMAGE */
#scrollImage,
.activityImage {
  width: 100vw;   
  height: auto;
  display: block;
}

#scrollImg.hidden {
  opacity: 0;
  pointer-events: none;
}


/* Overlay text */
.imageTextMiddle {
  position:absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
}
/* === Activities Section === */
.activities {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 50px auto;
  padding: 20px;
  background-color: #FAEBD7;
  border-radius: 20px;
  box-sizing: border-box;
}

.activityImage {
  height: 50vh;
  overflow: hidden;
  margin-top: 0;
  text-align: center;
  color: #fff;
  background: black;
  position: relative;
}

.activityImage img {
  opacity: 0.5;
  width: 100%;   
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Each row contains 2 objects side-by-side */
.object-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-bottom: 40px;
}

.object {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FAEBD7;
  color: #2c2c2c;
  border-radius: 20px;
  width: 40%;
  max-width: 600px;
  min-width: 300px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.object:hover {
  transform: scale(1.02);
}

.object-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.object-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.objectText {
  padding: 20px;
  font-size: 1rem;
  text-align: center;
}

.objectText h1 {
  font-size: 1.5rem;
  color: #228B22;
  margin-bottom: 5px;
}

.objectText b {
  font-size: 1.25rem;
}

/* Button container */
.activitiesButton {
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

.credit {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 8px;
  font-size: 12px;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 5px;
  pointer-events: none; /* ensures it doesn’t block clicks */
}


/* === Responsive === */
@media (max-width: 1024px) {
  .object {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .object-row {
    flex-direction: column;
    align-items: center;
  }

  .object {
    width: 90%;
    height: auto;
  }

  .objectText {
    text-align: center;
  }

  .objectText h1 {
    font-size: 1.3rem;
  }
}
/* === Footer Content === */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 60px;
}

.footer-content {
  max-width: 100%;
  margin: 1 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 50px;
  width: auto;
  float: left;
}

.footer-text {
  font-size: 15px;
  width: 30%;
  float: left;
}

.footer-links {
  display: flex;
  text-align: center;
  gap: 20px;
}

.footer-links a {
  color: #228B22;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #78fa2c;
}

/* Footer Mobile */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
}

