

/* styles.css */

@font-face {
  font-family: 'MyriadPro';
  src: url('fonts/MyriadPro-Light.woff2') format('woff2'),
       url('fonts/MyriadPro-Light.woff') format('woff'),
       url('fonts/MyriadPro-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'MyriadPro', serif;
  font-weight: 200; /* or 300 if 200 doesn't work */
}


strong {
  font-weight: 600; /* or 700 for stronger bold */
}

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

html, body {

  height: 100%;
  font-family: 'MyriadPro', Serif, sans-serif;
}

header {
  height: 100vh;
  background: url('images/1ed.jpeg') no-repeat center center/cover;
  position: relative;
  color: white;
}

/* MISTY OVERLAY */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0); /* adjust opacity here */
  backdrop-filter: blur(0px);
  z-index: 1;
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(0px);
  z-index: 1;
}


/* Ensure content sits above overlay */
.navbar, .hero {
  position: relative;
  z-index: 2;
}

/* NAVBAR */
.navbar {

  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background: rgba(0,0,0,0.0); /* overlay */
}

.logo {
  margin-bottom: 15px;
}

.logo img {
filter: brightness(0) invert(1);
  width: 240px; /* adjust size */
  height: auto;
  display: block;
  margin: 0 auto;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 40px;

}

.menu a {
font-family: Serif, sans-serif;


  text-decoration: none;
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s;
  
}

.menu a:hover {
  opacity: 0.7;
}

/* HERO CONTENT */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 55px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  padding: 15px 30px;
  background: white;
  color: black;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: transparent;
  color: white;
  border: 1px solid white;
}








/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  background: rgba(0,0,0,0.0);
}

.logo {
  margin-bottom: 15px;
}

.logo img {
  filter: brightness(0) invert(1);
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.menu a {
  font-family: serif;
  text-decoration: none;
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s;
}

.menu a:hover {
  opacity: 0.7;
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  margin: 10px auto 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  margin: 6px auto;
  transition: 0.3s ease;
  
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    z-index: 20;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 30;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 25;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }
  
  /* ABOUT SECTION MOBILE */
  .about-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-left, .about-right {
    width: 100%;
  }

  .about-left h2 {
    text-align: left;
    margin-bottom: 10px;
  }

  .about-right p {
    max-width: 100%;
  }

  /* TESTIMONIALS MOBILE */
  .testimonials-container {
    flex-direction: column;
    gap: 30px;
  }

  .testimonials-left, .testimonials-right {
    width: 100%;
  }

  .testimonials-left h2 {
    margin-bottom: 10px;
  }

  .testimonials-right {
    max-width: 100%;
  }

/* GLOBAL MOBILE POLISH */
  .about,
  .testimonials {
    padding: 70px 25px; /* tighter + balanced */
    text-align: center;
  }

  /* TITLES */
  .about-left h2,
  .testimonials-left h2 {
    text-align: center;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  /* BODY TEXT */
  .about-right p,
  .testimonial p {
    font-size: 15px;
    line-height: 1.9;
    max-width: 100%;
  }

  /* TESTIMONIAL CARDS FEEL */
  .testimonial {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .testimonial:last-child {
    border-bottom: none;
  }

  /* NAME STYLING */
  .testimonial h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
  }

  /* STARS */
  .stars {
    font-size: 16px;
    margin-top: 8px;
  }

  
}/* END OF MOBILE RESPONSIVE SECTION */

/* ABOUT SECTION */
.about {
  background: #ffffff;
  color: #111;
  padding: 100px 40px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
}

.about-right p {
  font-family: 'MyriadPro', serif;
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}

/* IMAGE SECTION */
.image-section {
  height: 40vh; /* change height of background smaller than hero they must match*/
  background: url('images/4ed.jpeg') no-repeat center center/cover;
}

.image-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 40vh; /* change height of background smaller than hero they must match*/
  background: rgba(0,0,0,0.1);
}

/* IMAGE SECTION 2 */
.image-section-2 {
  height: 50vh;   /* change height of background smaller than hero they must match*/
  background: url('images/3ed.jpeg') no-repeat center center/cover;
}

.image-section-2::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50vh;   /* change height of background smaller than hero they must match*/
  background: rgba(0,0,0,0.1);
}


/* TESTIMONIALS SECTION */
.testimonials {
  background: #ffffff;
  color: #111;
  padding: 100px 40px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.testimonials-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
}

.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
}

.testimonial h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 400;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.8;
}

.stars {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 2px;
}


/* LODGING SECTION */
.lodging {
  background: #818A7E; /* light green */
  color: #fff;
  text-align: center;
  padding: 100px 30px;
}

.lodging-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lodging-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.lodging-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}



/* FOOTER */
.footer {
  background: #EAE6E1;
  color: #000;
  text-align: center;
  padding: 60px 20px;
}

.footer h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* SUBPAGE HEADER (LODING PAGE) */
.subpage-header {
  background: #818A7E; /* green */
  height: 180px; /* shorter than hero */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-header .navbar {
  position: relative;
  top: 0;
  padding: 20px 0;
}

/* LODGING GALLERY */
.lodging-gallery {
  background: #818A7E;
  padding: 80px 30px;
}

.lodging-gallery-header {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.lodging-gallery-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lodging-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
}

.lodging-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .lodging-gallery-grid {
    grid-template-columns: 1fr;
  }
}



/* ACTIVITIES SECTION */
.activities-section {
  background: #818A7E;
  padding: 100px 40px;
}

.activities-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.activities-text {
  flex: 1;
  text-align: center;
  margin: 0 auto;
}



.activities-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
}

.activities-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  color: white;
}

.activities-summary {
  font-size: 16px;
  line-height: 1.8;
  color: white;
  max-width: 520px;
   margin: 0 auto;
}

.activities-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.activity-image {
  aspect-ratio: 16 / 9; /* horizontal */
  overflow: hidden;
  }
  
.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .activities-section {
    padding: 70px 25px;
  }

  .activities-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .activities-text {
    width: 100%;
  }

  .activities-title {
    font-size: 32px;
  }

  .activities-summary {
    max-width: 100%;
  }

  .activities-images {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .activity-image {
    aspect-ratio: 16 / 9;
  }
  }
  
  
  /* QUOTE SECTION */
.quote-section {
  position: relative;
  background: url('images/151.JPG') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
}

.quote-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.quote-text {
  max-width: 500px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  line-height: 1.4;
  color: #000; /* black text */
}

/* MOBILE */
@media (max-width: 768px) {
  .quote-section {
    height: 50vh;
    justify-content: center;
    text-align: center;
  }

  .quote-container {
    padding: 0 25px;
  }

  .quote-text {
    max-width: 100%;
    font-size: 24px;
  }
}


/* CTA SECTION */
.cta {
  background: #818A7E; /* green */
  padding: 100px 30px;
  text-align: center;
  
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}


/* LETTERBOX SECTION */
.letterbox {
  position: relative;
  height: 50vh;
  background: url('images/118.JPG') no-repeat center top/cover;
  
  overflow: hidden;
}

/* TOP BAR */
.letterbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px; /* smaller top */
  background: #818A7E;
  z-index: 2;
}

/* BOTTOM BAR (bigger) */
.letterbox::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px; /* larger bottom */
  background: #818A7E;
  z-index: 2;
}

@media (max-width: 768px) {
  .letterbox {
    height: 35vh;
  }

  .letterbox::before {
    height: 30px;
  }

  .letterbox::after {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .letterbox,
  .letterbox-2 {
    background-position: center 20%;
  }
}


/* ABOUT US SECTION */
.about-us {
  background: #818A7E; /* green */
  color: #fff;
  padding: 100px 40px;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* vertical centering */
  justify-content: space-between;
  gap: 60px;
}

/* LEFT (TITLE) */
.about-us-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
}

/* RIGHT (TEXT) */
.about-us-right {
  flex: 1;
}

.about-us-right p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}


@media (max-width: 768px) {
  .about-us {
    padding: 70px 25px;
    text-align: center;
  }

  .about-us-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-us-left h2 {
    font-size: 32px;
  }

  .about-us-right p {
    max-width: 100%;
  }
}


/* FOUNDERS SECTION (same style as about-us) */
.about-founders {
  background: #818A7E;
  color: #fff;
  padding: 100px 40px;
}


/* LETTERBOX 2 (same style, new image) */
.letterbox-2 {
background: url('images/195.jpeg') no-repeat center center/cover;
  
}



/* SIMPLE TEXT SECTION */
.simple-section {
  background: #818A7E; /* soft color background */
  padding: 100px 30px;
  text-align: center;
}

.simple-container {
  max-width: 800px;
  margin: 0 auto;
}

.simple-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.simple-text {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

@media (max-width: 768px) {
  .simple-section {
    padding: 70px 25px;
  }

  .simple-title {
    font-size: 30px;
  }

  .simple-text {
    font-size: 15px;
  }
}




/* ADVENTURES LIST SECTION */
.adventures-list {
  background: #ffffff;
  padding: 100px 30px;
}

.adventures-list-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.adventures-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111;
}

.adventures-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: #111;
  margin-bottom: 18px;
}

.adventures-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
}

.adventures-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.adventure-card {
  background: #f7f7f3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adventure-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}

.adventure-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #111;
}

.adventure-description {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
}

.adventure-btn {
  display: block;
  margin: 10px auto 0; /* centers horizontally */
  padding: 14px 24px;
  background: #7fbf9a;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 14px;
  transition: 0.3s;
}

.adventure-btn:hover {
  background: #6fa88a;
}

/* MOBILE */
@media (max-width: 768px) {
  .adventures-list {
    padding: 70px 25px;
  }

  .adventures-title {
    font-size: 32px;
  }

  .adventures-grid {
    grid-template-columns: 1fr;
  }

  .adventure-card {
    padding: 24px;
  }

  .adventure-meta {
    flex-direction: column;
    gap: 8px;
  }

  .adventure-name {
    font-size: 24px;
  }

  .adventure-btn {
    width: 100%;
    text-align: center;
  }
}