/* Hero Section */
.hero{
  background-color: var(--color-bg-1);
  display: flex;
  flex-direction: row;
  padding-top: 6rem;
  min-height: 100vh;
}

.hero-content{
  padding: 2rem 6.875rem;
  flex: 1;
}

.hero-content h1{
  width: auto;
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: var(--heading-height);
  letter-spacing: var(--hero-letter);
  margin-bottom: 2.5rem;
}

.hero-content em{
  font-style: italic;
  color: var(--accent-color);
}

.hero-body{
  max-width: 23ch;
  font-family: var(--font-body);
  color: var(--secondary-color);
  font-size: var(--text-herosub);
  letter-spacing: var(--regular-spacing);
  line-height: var(--regular-height);
}

.hero-buttons{
  display: flex;
  margin-top: 3.8rem;
  gap: 2rem;
}

.hero-buttons a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10.3rem;
  height: 2.8rem;
  text-decoration: none;
  border-radius: var(--btn-radius);
  font-size: var(--button-text);
  font-family: var(--font-body);
  font-weight: var(--semibold);
  letter-spacing: var(--btn-letter-spacing);
}

.btn-primary {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
  color: color-mix(in srgb, var(--color-bg-1) 80%, transparent);
  background-color: var(--accent-color);
  box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
  background: transparent;
}

.btn-ghost:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(61, 122, 69, 0.70)
}

.hero-image{
  position: relative;
  width: 60%;
}

.hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient( to right, rgba(250, 248, 244, 1), rgba(250, 248, 244, 0.20),rgba(250, 248, 244, 0.10), rgba(250, 248, 244, 0));
}

/* The Lodge Card */

.lodge-life{
  background-image: url(assets/dragon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-bg-2);
  padding: 3.75rem 8rem;
}

.section-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.section-tag{
  font-family: var(--font-body);
  color: var(--accent-color);
  font-weight: var(--light);
  font-size: var(--text-label);
  letter-spacing: var(--label-spacing);
  line-height: var(--heading-height);
}

h2{
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: var(--semibold);
  font-size: var(--text-heading);
  line-height: 1.1;
  letter-spacing: var(--title-letter-spacing);
}

.lodge-card{
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: var(--color-bg-1);
  width: 330px;
  height: 405px;
  overflow: hidden;
  border-radius: var(--small-card-radius);
  border: 1px solid var(--accent-color);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.lodge-card:hover{
  transform: translateY(-8px); 
  box-shadow: 0px 20px 40px rgba(31, 61, 34, 0.15);
}


.lodge-cards{
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.cards-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.card-image{
  width: fit-content;
  height: fit-content;
}

.card-image img{
  width: 100%;
  height: 260px;
  object-fit: cover
}

.card-content{
  padding: 1rem 1.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.card-label{
  font-family: var(--font-body);
  color: var(--accent-color);
  font-size: var(--card-label);
  line-height: var(--heading-height);
  letter-spacing: var(--label-spacing);
}

.card-content h3{
  margin-top: 0.3rem;
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  font-size: var(--text-subheading);
  color: var(--primary-color);
  line-height: var(--subheading-height);
  letter-spacing: var(--hero-letter);
}

.card-content p{
  font-family: var(--font-body);
  font-weight: var(--light);
  font-size: var(--card-body);
  color: var(--secondary-color);
  line-height: var(--regular-height);
  letter-spacing: var(--regular-spacing);
  margin-bottom: 0.5rem;
}

.card-content a{
  font-family: var(--font-body);
  font-weight: var(--light);
  font-size: var(--card-body);
  color: var(--primary-color);
  line-height: var(--heading-height);
  letter-spacing: var(--title-letter-spacing);
  text-transform: uppercase;
  text-underline-offset: 6px;
  text-decoration-color: var(--primary-color);
}

.card-featured{
  transform: translateY(2rem);
}


/* Why Us? */

.sectionThree{
  background-color: var(--color-bg-1);
  padding: 3.75rem 8rem;
  margin-bottom: 6rem;
}

.sectionThree .section-header{
  margin-bottom: 8rem;
}

.section-header p{
  font-family: var(--font-body);
  font-size: var(--text-subheading);
  font-weight: var(--regular);
  line-height: var(--subheading-height);
  letter-spacing: var(--regular-spacing);
  color: var(--secondary-color);
  max-width: 52ch;
  text-align: center;
}

.thirdHeader{
  max-width: 24ch;
  text-align: center;
}

.feature{
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.content-card{
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  padding: 0 3rem;
}

.feature-text{
  flex: 1;
}

.feature-text h3{
  font-family: var(--font-heading);
  font-size: var(--text-title);
  font-weight: var(--bold);
  line-height: var(--heading-height);
  letter-spacing: var(--hero-letter);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-text p{
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--regular);
  line-height: var(--regular-height);
  letter-spacing: var(--regular-spacing);
  color: var(--secondary-color);
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

.feature-image{
  flex: 1;
}

.btn-learn{
  margin-left: 0.5rem;
  border: 1px solid var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 2.5rem;
  text-decoration: none;
  color: var(--accent-color);
  border-radius: var(--nav-btn-raidus);
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: var(--bold);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-learn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
  background-color: var(--accent-color);
  color: var(--color-bg-1);
}

.btn-learn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
}

.feature-image img{
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: var(--card-radius);
}

/* Reviewer */

.sectionFour{
  background-color: var(--color-bg-2);
  padding: 3.75rem 8rem;
  background-image: url(assets/background-art.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.review-cards{
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 4rem;
  width: 100%;
}

.review-card{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 310px;
  height: 440px;
  background-color: var(--color-bg-1);
  border-radius: var(--card-radius);
  padding: 2.25rem 2.25rem;
  box-shadow: 0px 4.5px 11.25px 0px rgba(82, 82, 82, 0.10);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.review-card:hover{
  transform: translateY(-8px);
}

.reviewer-info{
  text-align: center
}

.stars{
  width: 120px;
  height: 23px;
  margin: 0 auto;
}

.stars img{
  display: block;
  width: 120px;
  height: 23px;
}

.reviewer-info h4{
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--semibold);
  line-height: var(--regular-height);
  color: var(--primary-color);
}

.review-card p{
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--regular);
  line-height: var(--regular-height);
  color: var(--secondary-color);
}

.reviewer-info img{
  width: 115px;
  height: 115px;
  border-radius: 50%;
  margin: auto;
}

.review-card--featured {
  background-color: var(--primary-color);
  justify-content: center;
  width: 350px;
  height: 460px;
}

.review-card--featured h4{
  font-family: var(--font-body);
  font-size: var(--text-subheading);
  font-weight: var(--semibold);
  line-height: var(--regular-height);
  color: var(--primary-color);
}

.review-card--featured p{
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--regular);
  line-height: var(--regular-height);
  color: var(--secondary-color);
}

.review-card--featured h4{
  color: var(--color-bg-1);
}

.review-card--featured p{
  color: var(--color-bg-1);
}

/* Fire CTA */

.fire-cta{
  background-image: url(assets/fire.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 55vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fire-cta-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.70), rgba(5,10,5,0.05));
  z-index: 1;
}

.fire-cta-content{
  margin: 0 auto;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.fire-cta-quote{
  font-family: var(--font-heading);
  font-size: var(--card-title);
  font-weight: var(--regular);
  line-height: var(--regular-height);
  font-style: italic;
  color: var(--color-bg-1);
}

.fire-cta-content a{
  border: 1px solid var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 2.5rem;
  text-decoration: none;
  border-radius: var(--nav-btn-raidus);
  font-family: var(--font-body);
  font-size: var(--card-body);
  font-weight: var(--regular);
  line-height: var(--regular-height);
  letter-spacing: var(--btn-letter-spacing);
  color: var(--color-bg-1);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

 /* Contact Section */

.contact{
  background-color: var(--color-bg-1);
  min-height: 100vh;
  padding: 3.75rem 8rem;
}

.contact-inner{
  display: flex;
  justify-content: center;
  gap: 7rem;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info h2{
  font-family: var(--font-heading);
  font-size: var(--text-heading);
  font-weight: var(--semibold);
  line-height: var(--heading-height);
  letter-spacing: var(--hero-letter);
  margin-bottom: 1.25rem;
}

.contact-info .section-tag{
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--medium);
  line-height: var(--heading-height);
  letter-spacing: var(--hero-letter);
}

.contact-details{
  display: flex;
  flex-direction: column;
  gap: 1.50rem;
}

.contact-items{
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.contact-items div{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-items div a{
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--caption);
  font-weight: var(--light);
  line-height: var(--subheading-height);
  letter-spacing: var(--regular-spacing);
  color: var(--primary-color);
}

.contact-label{
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--medium);
  line-height: var(--heading-height);
  letter-spacing: var(--title-letter-spacing);
  color: var(--secondary-color);
}

.contact-info .btn-learn{
  margin-top: 2rem;
  background-color: var(--accent-color);
  color: var(--color-bg-1);
  font-size: var(--card-body);
  font-weight: var(--semibold);

}

.contact-info .btn-learn:hover{
  background-color: var(--color-bg-1);
  color: var(--accent-color);
}

@media(max-width: 768px){
  /* HERO */
  .hero{
    flex-direction: column;
    min-height: unset;
    padding-top: 3rem;
  }

  .hero-content {
  padding: 2rem 2rem 2rem 2rem;
  }

  .hero-content h1{
    font-size: var(--cta-text);
    margin-bottom: 1.5rem;
  }

  .hero-body{
    max-width: 22ch;
    font-size: var(--text-body);
  }

  .hero-buttons{
    margin-top: 2rem;
    gap: 1rem;
  }

  .hero-buttons a{
    font-size: var(--card-label);
    width: 8rem;
    height: 2rem;
  }

  .hero-image{
    width: 100%;
  }

  .hero-image img{
    height: 320px;
  }

  .hero-image::before{
    display: none;
  }

  /* Lodge Card Section */

  .lodge-life{
    padding: 3rem 2rem;
    background-size: 0;
  }

  .lodge-card:hover{
    transform: none;
  }

  .section-header{
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .section-tag{
    font-size: var(--card-body);
  }

  h2{
    font-size: var(--footer-title);
  }

  .cards-row{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .lodge-card{
    width: 100%;
    height: auto;
  }

  .lodge-cards{
    gap: 2rem;
  }

  .card-image {
  width: 100%;
  }

  .card-image img{
    height: 220px;
  }

  .card-featured{
    transform: none;
  }

  /* Why us? */

  .sectionThree{
    padding: 3rem 2rem;
    margin-bottom: 0;
  }

  .sectionThree .section-header{
    margin-bottom: 2rem;
  }

  .section-header p{
    font-size: var(--card-body);
  }

  .content-card{
    flex-direction: column;
    padding: 0;
    gap: 1rem;
  }

  .feature-image{
    order: -1;
  }
  
  .feature-image img{
    height: 220px;
  }

  .feature{
    gap: 1.5rem;
  }

  .feature-text h3{
    font-size: var(--text-body);
    margin-bottom: 0.75rem;
  }

  .feature-text p{
    font-size: var(--card-label);
    margin-bottom: 0.75rem;
  }

  .btn-learn {
    width: 6rem;
    height: 2rem;
    font-size: var(--card-label);
  }

  /* Reviewer */

  .sectionFour{
    padding: 3rem 2rem;
    margin-bottom: 0;
  }

  .sectionFour h2{
    text-align: center;
    font-size: var(--footer-title);
  }
  .sectionFour .section-tag {
  text-align: center;
}

  .review-card:hover{
    transform: none;
  }

  .review-cards{
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .review-card{
    width: 100%;
    height: auto;
    min-height: unset;
    gap: 0.5rem;
  }

  .reviewer-info h4{
    font-size: var(--button-text);
  }

  .review-card p{
    font-size: var(--card-body);
  }

  /* fire-cta */

  .fire-cta-quote{
    font-size: var(--footer-title);
    text-align: center;
    padding: 0 2rem;
  }

  .fire-cta-overlay {
  background: rgba(0, 0, 0, 0.55);
  }

  /* Contact Section */

  .contact{
    padding: 3rem 2rem;
    min-height: unset;
  }

  .contact-info{
    width: 100%;
  }

  .contact-info .section-tag{
    font-size: var(--card-body);
  }

  .contact-inner{
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info h2{
    font-size: var(--text-mobile-heading);
  }

  .contact-info .btn-learn{
    margin-top: 1rem;
    font-size: var(--smallest-size);
  }

  .contact-map{
    width: 100%;
  }
}