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

body {
  background-color:#FAEBD7;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Adjust duration and easing as needed */
}

body.fade-in {
    opacity: 1;
}

b,p,h1{
  color: #000;
  font-family:'Times New Roman';
}

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;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.standardButton {
  display: inline-block;
  padding: 12px 25px;
  background-color:#228B22;
  color: #2c2c2c;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 50%;
}

.standardButton:hover {
  background-color:#78fa2c;
  transform: scale(1.05);
}

/* ======= 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;
  }

}

/* === HOME IMAGE === */
#scrollImage,
.HomeImage {
  width: 100%;   
  height: auto;
  display: block;
}

#scrollImg.hidden {
  opacity: 0;
  pointer-events: none;
}

.HomeImage {
  height: 50vh;
  overflow: hidden;
  margin-top: 0;
  text-align: center;
  color: #fff;
  background: black;
  position: relative;
}

.HomeImage img {
  opacity: 0.5;
  width: 100%;   
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Overlay text === */
.top-left {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 40%;
}

.top-right {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40%;
}
/* Mobile View */
/* @media (max-width: 768px) {
  .top-left h1, .top-right h1 {
    font-size: 25px;
  }
    
} */

.top-left h1, .top-right h1 {
    font-size: 3vw;
    color: white;

}


/* === HOME CONTENT === */
.homeContentOne, .homeContentTwo, .homeContentThree, .homeContentFour {
  display: flex;
  flex-wrap: wrap; 
  align-items: stretch;
}

.homeText {
  padding: 1%;
  color: rgb(0, 0, 0);
  font-size: 30px;
  flex: 1 1 50%; 
  display: flex;
  flex-direction: column;
}

.homeText ul {
  padding: 3%;
  
}

@media(max-width: 768px){

  .homeText {
    padding: 5%;
    font-size: 25px;
    flex: 1 1 50%; 
    display: flex;
    flex-direction: column;
  }

}

@media (max-width: 768px) {
  .homeContentOne,
  .homeContentTwo,
  .homeContentThree,
  .homeContentFour {
    flex-direction: column;
  }

  .homeImageLeft,
  .homeImageRight,
  .homeText {
    flex: 1 1 100%;
  }
}

.homeImageRight, .homeImageLeft {
  flex: 1 1 50%;
  height: 100%;
}

.homeImageRight img,
.homeImageLeft img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.activities ul li {
  text-align: center;
  
}
li::marker{
  color: #228B22;
}
@media (max-width: 768px) {
  .activities {
    margin: 10px;
    font-size: 25px;
    width: fit-content;

  }
    
}

@media(max-width: 768px){

  .amenities {
    margin: 10px;
    font-size: 25px;
    width: fit-content;
    
  }
}
/* === Footer Styling === */
.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: #fff;
  text-decoration: none;
  transition: color 0.3s;
  color: #e2d353;
}

.footer-links a:hover {
  color: #aaa;
}

.footer-text p{
  color: #fff;
}

/* === Footer Mobile === */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-text{
    font-size: 15px;
    width: 70%;
    float: left;
  }

  .footer-links {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
}



