/* 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{
  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;
}

.standardButton {
  background-color: #228B22;
  color: black;
  border: 2px solid rgb(0, 0, 0);
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px; 
}

.standardButton: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;
}

/* ======= 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;
  }
}

/* === Reservation IMAGE === */
#scrollImage,
.ReservationImage {
  width: 100%;   
  height: auto;
  display: block;
}

#scrollImg.hidden {
  opacity: 0;
  pointer-events: none;
}

.ReservationImage {
  height: 70vh;
  overflow: hidden;
  margin-top: 0;
  text-align: center;
  color: #fff;
  background: black;
  position: relative;
}

.ReservationImage img {
  opacity: 0.75;
  width: 100%;   
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text */
.imageTextMiddle {
  position:absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
}

.credit {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 8px;
  font-size: 15px;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 5px;
  
}


/* === RESERVATION CONTENT === */
.resContentOne {
  margin: 2% 10%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 20px;
  background-color: #FAEBD7;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  
}

.resText {
  padding: 1%;
  color: rgb(0, 0, 0);
  font-size: 30px;
  flex: 1 1 50%; 
  display: flex;
  flex-direction: column;
  text-align: center;
}

.resText ul {
  padding: 3%;
  
}

@media(max-width: 768px){

  .resText {
    padding: 5%;
    color: rgb(0, 0, 0);
    font-size: 25px;
    flex: 1 1 50%; 
    display: flex;
    flex-direction: column;
  }

}

.mapSection {
  display: flex;
  width: 100%;
  align-items: stretch;  
}

.googleMap,
.parkMap {
  border-style: solid;
  border-color: black;
  border-radius: 20px;
  flex: 1;
}

.googleMap iframe,
.parkMap img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;    
}



@media(max-width:768px){
  .resContentOne{
    flex-direction: column;
    display: flex;
  }
  .mapSection {
    width: 100%;
    flex-direction: column;  
    }
    
  .googleMap iframe{
    border-radius: 20px;
    width: 100%;
    height: 80vw;
    object-fit: cover;    
  }
}


.AmenitiesContent{
  padding: 20px;
  flex: 1 1 50%; 
  background-color: #4b4b4b;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  align-items: stretch;
}

.amenitiesText{
  font-size: 2vw;
  /* padding: 15px; */
  border-radius: 20px;
  background-color: #fff;
}

.amenitiesText {
  background-color: #2c2c2c; /* dark backdrop for contrast */
  color: white;
  border-radius: 20px;
  padding: 20px;
  max-width: 60vw;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.amenitiesText h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color:#228B22;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* responsive columns */
  gap: 10px 30px;
  text-align: left;
  max-width: 800px;
}

.amenities li {
  font-size: 1.1rem;
  background-color: #3a3a3a;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.textOutline{
  background-color: #78fa2c;

}

.amenities li:hover {
  background-color: #4d4d4d;
}

/* === Park Rules section styling ===*/
.parkRulesText {
  background-color: #222;
  color: #f2f2f2;
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.parkRulesText h1 {
  color: #228B22;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.rulesList {
  list-style: none;
  padding: 0;
  margin: 15px auto 30px auto;
  max-width: 800px;
  background-color: #3a3a3a;
  border-radius: 10px;
}

.rulesList li {
  font-size: 1.1rem;
  padding: 10px 15px;
  border-bottom: 1px solid #555;
}

.rulesList li:last-child {
  border-bottom: none;
}

.rulesList li:hover {
  background-color: #4d4d4d;
}
.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;
}

.standardButton:hover {
  background-color:#78fa2c;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .activities {
    margin: 10px;
    font-size: 25px;
    width: fit-content;

  }
    
}

@media(max-width: 768px){


  .AmenitiesContent{
    /* padding: 1%; */
    /* flex: 1 1 25%;  */
    background-color: #4b4b4b;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
  }

  .amenitiesText {
    background-color: #2c2c2c; /* dark backdrop for contrast */
    color: white;
    border-radius: 20px;
    /* padding: 2%; */
    max-width: 100vw;
    margin: 2% ;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  .amenities {
    margin: 5%;
    font-size: 1rem;
    width: 10vw;
    
  }

  .amenities li {
    font-size: 1rem;
    background-color: #3a3a3a;
    padding: 5px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  
  }
}

/* Slideshow container */
.reservationSlideShow {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;       /* keeps consistent proportions */
  margin: 20px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Inner container (optional for future animation handling) */
.SlidesObj {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Image styling */
.SlidesObj img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* fills the frame without distortion */
  display: block;
  border-radius: 15px;
  transition: opacity 0.5s ease; /* smoother transitions if slides fade */
}

/* Navigation buttons */
.next,
.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s;
  z-index: 2;
}

.next:hover,
.prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Button placement */
.next { right: 10px; }
.prev { left: 10px; }

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablets */
@media (max-width: 768px) {
  .reservationSlideShow {
    max-width: 95%;
    aspect-ratio: 4 / 3; /* slightly taller for mobile screens */
  }

  .next,
  .prev {
    font-size: 20px;
    padding: 10px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .reservationSlideShow {
    max-width: 100%;
    margin: 10px auto;
    aspect-ratio: 1 / 1; /* square style for narrow screens */
  }

  .next,
  .prev {
    font-size: 18px;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .SlidesObj img {
    border-radius: 10px;
  }
}

/* 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: #228B22;
}

.footer-links a:hover {
  color: #aaa;
}


/* === Slide Show === */
#slideShow {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
/* 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;
  }
}



