/* style.css */

/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=PT+Serif:wght@400;700&display=swap');

/* ROOT */
:root{
  --ash-green:#244b2c;
  --ash-orange:#cd5b30;
  --ash-gold:#b38e3c;
  --ash-bg:#f4f1e8;
  --ash-text:#1f1f1f;
  --ash-muted:#666;
  --ash-white:#ffffff;
}

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

body{
  background:var(--ash-bg);
}

/* GLOBAL */
.ashriver-homepage{
  width:100%;
  overflow:hidden;
  background:var(--ash-bg);
  font-family:'Montserrat',sans-serif;
  color:var(--ash-text);
}

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

.ash-section{
  padding:70px 0;
}

/* TYPOGRAPHY */
.ash-heading-primary{
  font-family:'PT Serif',serif;
  font-size:52px;
  line-height:1.1;
  color:var(--ash-white);
  margin-bottom:20px;
}

.ash-heading-secondary{
  font-family:'PT Serif',serif;
  font-size:34px;
  line-height:1.2;
  color:var(--ash-green);
  margin-bottom:20px;
}

.ash-heading-tertiary{
  font-family:'PT Serif',serif;
  font-size:22px;
  color:var(--ash-green);
  margin-bottom:15px;
}

.ash-text-body{
  font-size:16px;
  line-height:1.8;
  color:#444;
}

.ash-section-label{
  font-size:12px;
  letter-spacing:2px;
  color:var(--ash-gold);
  margin-bottom:15px;
  text-transform:uppercase;
}

.ash-kicker{
  color:var(--ash-gold);
  margin-bottom:20px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
}

/* HERO */
.ash-hero{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
  padding:80px 20px;
}

.ash-hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
}

.ash-hero-text{
  color:#f5f5f5;
  line-height:1.8;
  margin-bottom:30px;
  font-size:18px;
}

/* =========================================
   HEADER / NAVIGATION
========================================= */

.ses-subpage-nav{
  position:sticky;
  top:0;
  z-index:999;

  width:100%;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  list-style:none;

  background:#244b2c;

  padding:0;
  margin:0;

  border-bottom:3px solid #b38e3c;

  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* REMOVE BULLETS */
.ses-subpage-nav li{
  list-style:none;
}

/* LINKS */
.ses-subpage-nav li a{
  display:block;

  padding:18px 20px;

  color:#ffffff;
  text-decoration:none;

  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:500;

  text-transform:uppercase;
  letter-spacing:1px;

  transition:0.3s ease;
}

/* HOVER */
.ses-subpage-nav li a:hover{
  background:#1a3820;
}

/* ACTIVE PAGE */
.ses-subpage-nav li.active a{
  background:#b38e3c;
  color:#ffffff;
}

/* =========================================
   MOBILE DROPDOWN MENU
========================================= */

@media(max-width:768px){

  .ses-subpage-nav{
    display:block;
    padding:12px;
    background:#244b2c;
  }

  /* TURN INTO DROPDOWN */
  .ses-subpage-nav::before{
    content:"Menu";
    display:block;

    background:#b38e3c;
    color:#fff;

    padding:14px 18px;

    border-radius:6px;

    font-family:'Montserrat',sans-serif;
    font-size:14px;
    font-weight:600;

    cursor:pointer;

    margin-bottom:10px;

    text-align:center;
  }

  /* HIDE LINKS INITIALLY */
  .ses-subpage-nav li{
    display:none;
    width:100%;
  }

  /* SHOW ON HOVER */
  .ses-subpage-nav:hover li{
    display:block;
  }

  .ses-subpage-nav li a{
    width:100%;
    padding:16px 18px;

    border-top:1px solid rgba(255,255,255,0.08);

    background:#244b2c;
  }

  .ses-subpage-nav li.active a{
    background:#b38e3c;
  }

}

/* BUTTONS */
.ash-btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s ease;
  font-weight:600;
  margin-right:10px;
  margin-bottom:10px;
}

.ash-btn-primary{
  background:var(--ash-green);
  color:#fff;
}

.ash-btn-primary:hover{
  background:#1a3820;
}

.ash-btn-secondary{
  background:var(--ash-orange);
  color:#fff;
}

.ash-btn-secondary:hover{
  background:#af4721;
}

/* BOOK PANEL */
.ash-book-panel{
  background:#fff;
  padding:40px;
  border-radius:8px;
  border-left:6px solid var(--ash-green);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* SECTION HEADING */
.ash-section-heading{
  margin-bottom:40px;
}

/* TRIPS */
.ash-trip-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.ash-card{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

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

.ash-card-content{
  padding:25px;
}

.ash-card-link{
  display:inline-block;
  margin-top:20px;
  color:var(--ash-orange);
  text-decoration:none;
  font-weight:600;
}

/* FEATURES */
.ash-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.ash-feature{
  background:#fff;
  padding:30px;
  border-radius:8px;
  border-top:4px solid var(--ash-gold);
}

/* GALLERY */
.ash-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.ash-gallery-item{
  height:240px;
  border-radius:8px;
}

/* CTA */
.ash-cta-box{
  background:var(--ash-gold);
  padding:50px 30px;
  border-radius:10px;
  text-align:center;
}

.ash-cta-box .ash-heading-secondary{
  color:#fff;
}

.ash-cta-box .ash-text-body{
  color:#f4f4f4;
  max-width:700px;
  margin:0 auto 25px;
}

/* PLACEHOLDER IMAGES */
.ash-placeholder-image{
  background:
    linear-gradient(
      135deg,
      #d8d2c2,
      #ece6d8
    );
}

/* MOBILE */
@media(max-width:900px){

  .ash-heading-primary{
    font-size:42px;
  }

  .ash-trip-grid{
    grid-template-columns:1fr;
  }

  .ash-feature-grid{
    grid-template-columns:1fr;
  }

  .ash-gallery-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .ash-section{
    padding:50px 0;
  }

  .ash-heading-primary{
    font-size:34px;
  }

  .ash-heading-secondary{
    font-size:28px;
  }

  .ash-book-panel{
    padding:25px;
  }

  .ash-hero{
    min-height:80vh;
  }

  .ash-hero-buttons{
    display:flex;
    flex-direction:column;
  }

  .ash-btn{
    width:100%;
    text-align:center;
    margin-right:0;
  }

}

/* ADD TO EXISTING style.css */

/* SUB HERO */
.ash-subhero{
  padding:120px 0 70px;
  background:#efe9dc;
}

.ash-dark-heading{
  color:var(--ash-green);
}

.ash-subhero-text{
  max-width:700px;
  line-height:1.8;
  color:#555;
}

/* GUIDE */
.ash-guide-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.ash-guide-image{
  min-height:450px;
  border-radius:8px;
}

/* GEAR */
.ash-gear-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* FORMS */
.ash-booking-form,
.ash-contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.ash-form-group{
  display:flex;
  flex-direction:column;
}

.ash-form-group label{
  margin-bottom:10px;
  color:var(--ash-green);
  font-weight:600;
}

.ash-form-group input,
.ash-form-group textarea,
.ash-form-group select{
  padding:14px;
  border:1px solid #d8d2c2;
  border-radius:6px;
  background:#fff;
  font-family:'Montserrat',sans-serif;
}

/* CONTACT */
.ash-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

/* FAQ */
.ash-faq-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.ash-faq-item{
  background:#fff;
  padding:30px;
  border-radius:8px;
  border-left:4px solid var(--ash-gold);
}

/* TRIP META */
.ash-trip-meta{
  margin-top:20px;
  margin-bottom:20px;
  padding-left:18px;
  color:#555;
  line-height:1.8;
}

/* MOBILE */
@media(max-width:900px){

  .ash-guide-grid{
    grid-template-columns:1fr;
  }

  .ash-gear-grid{
    grid-template-columns:1fr;
  }

  .ash-contact-grid{
    grid-template-columns:1fr;
  }

}