/* 
  TrekVista.website — Los Angeles Travel & Tourism
  Unique visual identity: "SoCal Nomad"
  Branding: sunshine, ocean, adventure, warmth, clarity—modern, approachable, nature-inspired
*/

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

:root {
  /* Brand-inspired variables */
  --sunburst: #ffbe5c;       /* highlight, button, accents (SoCal sun) */
  --pacific: #0078a3;        /* main action, links (ocean) */
  --canyon: #7b5836;         /* deep accent, icons (LA canyons) */
  --sand: #faf6ed;           /* light background (beach sand) */
  --mist: #f2efe3;           /* section backgrounds */
  --palmtree: #25795e;       /* secondary action, hover */
  --haze: #efedea;           /* cards, inputs */
  --text-main: #262729;      /* headings, readable */
  --text-muted: #414548;     /* body text */
  --white: #fff;
  --border: #e2d9c7;
  --border-radius: 18px;
  --shadow: 0 3px 24px rgba(39, 61, 50, 0.07);
  --container-max: 1100px;
  --nav-height: 72px;
}

/* RESET & BASICS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--sand);
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-muted);
  background: var(--sand);
  line-height: 1.65;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.8rem;
  margin-top: 0;
  margin-bottom: 10px;
}

h2 {
  font-size: 2.1rem;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.1;
}

h3 {
  font-size: 1.23rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--text-muted);
}

a {
  color: var(--pacific);
  text-decoration: none;
  transition: color .18s;
}

a:hover {
  color: var(--palmtree);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

ul,
ol {
  padding-left: 22px;
  margin-top: 0;
}

/* CONTAINER */
.container {
  max-width: var(--container-max);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.site-header {
  height: var(--nav-height);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(39,61,50,0.05);
  position: sticky;
  top: 0;
  z-index: 19;
}

.header-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--sunburst);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-logo svg {
  margin-right: 10px;
  vertical-align: bottom;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 6px 2px;
  color: var(--canyon);
  border-bottom: 2.5px solid transparent;
  transition: border-bottom-color .17s, color .17s;
}

.main-nav a.active, .main-nav a:hover {
  color: var(--pacific);
  border-bottom-color: var(--sunburst);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 10px;
}

.burger svg {
  width: 32px;
  height: 32px;
  fill: var(--canyon);
}

/* HERO */
.hero-section {
  min-height: 54vh;
  background: url('images/hero.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(85deg, rgba(254,217,144,0.40) 0%, rgba(39,120,163,0.34) 100%);
  z-index: 1;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 54px 0;
  color: var(--text-main);
  max-width: 560px;
}

.hero-content h1 {
  color: var(--canyon);
  text-shadow: 0 2px 16px rgba(250, 246, 237, 0.77);
}

.hero-content p {
  font-size: 1.19rem;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--sunburst), var(--pacific) 84%);
  color: var(--white);
  font-family: 'Montserrat',sans-serif;
  font-size: 1.13rem;
  font-weight: bold;
  border: none;
  border-radius: var(--border-radius);
  padding: 15px 46px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 18px rgba(252,190,92,0.18);
  cursor: pointer;
  text-shadow: 0 2px 14px rgba(39,120,163,0.18);
  transition: background .18s, box-shadow .16s;
  outline: none;
}

.hero-cta:hover {
  background: linear-gradient(90deg, var(--pacific), var(--sunburst) 80%);
  box-shadow: 0 3px 24px rgba(37,121,94,0.10);
}

/* SERVICES */
.services-section {
  background: var(--mist);
  padding: 64px 0 44px 0;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
}

.service-card {
  background: var(--haze);
  border-radius: var(--border-radius);
  padding: 36px 32px 28px 32px;
  box-shadow: 0 2px 15px rgba(123,88,54,0.06);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 278px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .17s;
  border: 1.8px solid transparent;
}

.service-card:hover {
  border-color: var(--sunburst);
  box-shadow: 0 6px 34px rgba(254,217,144,0.13);
}

.service-icon {
  margin-bottom: 18px;
}
.service-icon svg {
  width: 48px;
  height: 48px;
}

/* SPLIT SECTION */
.split-section {
  padding: 70px 0 66px 0;
  background: var(--white);
}

.split-inner {
  display: flex;
  align-items: center;
  gap: 54px;
  flex-wrap: wrap;
}

.split-img {
  flex: 1 1 350px;
  min-width: 260px;
  max-width: 420px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split-content {
  flex: 2 1 360px;
  min-width: 260px;
}
.secondary-cta {
  display: inline-block;
  background: var(--palmtree);
  color: var(--white);
  font-family: 'Montserrat',sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 36px;
  margin-top: 12px;
  box-shadow: 0 2px 11px rgba(37,121,94,.11);
  cursor: pointer;
  text-shadow: 0 1.5px 10px rgba(39,120,163,.08);
  transition: background .15s;
  outline: none;
}

.secondary-cta:hover {
  background: var(--pacific);
}

/* BENEFITS */
.benefits-section {
  background: var(--mist);
  padding: 54px 0 44px 0;
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.benefit-item {
  background: var(--haze);
  border-radius: var(--border-radius);
  box-shadow: 0 0 12px rgba(37,121,94,.04);
  padding: 38px 26px 28px 26px;
  text-align: center;
  flex: 1 1 180px;
  min-width: 185px;
  max-width: 230px;
  border: 2px solid var(--border);
}

.benefit-number {
  font-size: 2.15rem;
  font-family: 'Montserrat',sans-serif;
  color: var(--pacific);
  font-weight: bold;
  margin-bottom: 6px;
}

/* INFO BLOCK */
.info-section {
  background: var(--white);
  padding: 60px 0 44px 0;
}

.info-section .container {
  max-width: 840px;
}

.info-section h3 {
  color: var(--sunburst);
  margin-top: 22px;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--mist);
  padding: 60px 0 40px 0;
}

.testimonials-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 1.6px 23px rgba(39,120,163,0.04);
  padding: 32px 26px 20px 26px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  color: var(--palmtree);
  font-family: 'Montserrat',sans-serif;
  font-size: 1.13rem;
  margin-bottom: 2px;
}

.testimonial-date {
  color: #857659;
  font-size: .98rem;
  margin-bottom: 8px;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.09rem;
}

/* BLOG PREVIEW */
.blog-preview-section {
  background: var(--white);
  padding: 62px 0 36px 0;
}

.blog-list {
  display: flex;
  gap: 37px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-card {
  background: var(--mist);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 17px rgba(123,88,54,0.04);
  overflow: hidden;
  max-width: 332px;
  min-width: 205px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  transition: box-shadow .16s, border-color .17s;
}

.blog-card:hover {
  border-color: var(--pacific);
  box-shadow: 0 8px 27px rgba(0,120,163,0.13);
}

.blog-img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-card-content {
  flex: 1 1 auto;
  padding: 18px 22px 19px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blog-card-content h3 {
  font-size: 1.28rem;
  margin-bottom: 7px;
}
.read-more {
  margin-top: 16px;
  color: var(--palmtree);
  font-weight: 600;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.01rem;
  letter-spacing: 0.018em;
  display: inline-block;
  transition: color .16s;
}

.read-more:hover {
  color: var(--sunburst);
}

/* FAQ */
.faq-section {
  background: var(--mist);
  padding: 62px 0 42px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 22px;
  border: 1.6px solid var(--border);
  box-shadow: 0 2px 18px rgba(254,217,144,0.06);
  transition: box-shadow .17s, border-color .17s;
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--sunburst);
  box-shadow: 0 6px 30px rgba(254,217,144,0.11);
}

.faq-question {
  cursor: pointer;
  padding: 18px 32px 18px 32px;
  font-size: 1.11rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  color: var(--palmtree);
  font-family: 'Montserrat',sans-serif;
}
.faq-question svg {
  margin-left: auto;
  transform: rotate(0deg);
  transition: transform 0.19s;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--haze);
  padding: 0 32px;
  transition: max-height 0.33s cubic-bezier(.86,0,.07,1);
  font-size: 1.04rem;
}
.faq-item.active .faq-answer {
  padding: 16px 32px 24px 32px;
  max-height: 360px;
}

/* CONTACT */
.contact-section {
  background: var(--white);
  padding: 58px 0 40px 0;
}

.contact-inner {
  display: flex;
  gap: 52px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form-wrapper {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 440px;
}

.contact-details-wrapper {
  flex: 1 1 260px;
  min-width: 215px;
  max-width: 390px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  background: var(--haze);
  padding: 32px 22px;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 16px rgba(0,120,163,0.05);
  border: 1.3px solid var(--border);
}

#contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1.09rem;
  color: var(--canyon);
}

#contact-form input,
#contact-form textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius);
  padding: 10px 12px;
  font-size: 1.07rem;
  font-family: inherit;
  background: #fff;
  resize: vertical;
  box-shadow: none;
  margin-bottom: 2px;
  transition: border-color .13s;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--palmtree);
  outline: none;
}

#contact-form button[type="submit"] {
  background: var(--sunburst);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 14px 0;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 13px rgba(254,217,144,0.11);
}

#contact-form button[type="submit"]:hover {
  background: var(--pacific);
}

#form-success {
  margin-top: 17px;
  background: var(--palmtree);
  color: var(--white);
  padding: 13px 10px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1.09rem;
  display: none;
  text-align: center;
}

.contact-details {
  background: var(--haze);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  border: 1.3px solid var(--border);
  font-size: 1.04rem;
  margin-bottom: 14px;
}

.contact-details h3 {
  color: var(--palmtree);
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 18px;
}

/* ADDRESS, EMAIL, HOURS */
.contact-line {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.contact-line svg {
  margin-right: 11px;
  flex-shrink: 0;
  color: var(--sunburst);
  width: 23px;
  height: 23px;
}

/* FOOTER */
.site-footer {
  background: var(--mist);
  box-shadow: 0 -2px 24px rgba(0,120,163,0.04);
  padding-top: 44px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 44px;
  padding-bottom: 18px;
}

.footer-left {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.38rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  color: var(--sunburst);
  text-decoration: none;
  margin-bottom: 7px;
}

.footer-logo svg {
  margin-right: 9px;
  vertical-align: bottom;
}

.footer-tagline {
  color: var(--palmtree);
  font-size: 1.04rem;
  margin-bottom: 9px;
}

.footer-email {
  color: var(--text-muted);
  font-size: .99rem;
  margin-bottom: 2px;
}

.footer-right {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.04rem;
  align-items: flex-end;
}

.footer-nav a {
  color: var(--canyon);
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color .16s;
}
.footer-nav a:hover {
  color: var(--pacific);
}

.footer-bottom {
  border-top: 1.9px solid var(--border);
  padding-top: 13px;
  text-align: left;
  color: #a8997d;
  font-family: 'Roboto',sans-serif;
  font-size: 1.01rem;
  margin-top: 19px;
}

@media (max-width: 1030px) {
  .split-inner,
  .contact-inner,
  .footer-main {
    flex-direction: column;
    gap: 33px;
    align-items: stretch;
  }
  .footer-right,
  .footer-left {
    align-items: flex-start;
  }
}

@media (max-width: 715px) {
  .features-list, .services-list, .benefits-list, .testimonials-list, .blog-list {
    flex-direction: column;
    gap: 23px;
  }
  .split-inner, .contact-inner {
    gap: 22px;
  }
  .header-inner {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 2.17rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  body {
    font-size: 1.04rem;
  }
  .hero-content {
    padding: 27px 0 33px 0;
  }
  .split-section,
  .services-section,
  .benefits-section,
  .info-section,
  .testimonials-section,
  .blog-preview-section,
  .faq-section,
  .contact-section {
    padding-top: 35px;
    padding-bottom: 24px;
  }
  .footer-main {
    flex-direction: column;
    gap: 15px;
  }
}

/* MOBILE NAV */
@media (max-width: 650px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    min-width: 180px;
    border-radius: 0 0 0 var(--border-radius);
    box-shadow: 0 6px 34px rgba(39,120,163,0.08);
    z-index: 39;
    border-top: 2px solid var(--border);
    overflow: hidden;
    padding: 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 15px 24px;
    width: 100%;
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    background: none;
    color: var(--palmtree);
    font-size: 1.08rem;
  }
  .main-nav a:last-child {
    border-bottom: none;
  }
  .burger {
    display: block;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 0; right: 0; bottom: 0;
  background: var(--canyon);
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(37,121,94,.13);
  padding: 20px 16px 17px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.cookie-banner a {
  color: var(--sunburst);
  text-decoration: underline;
}

.cookie-banner button {
  margin-left: 15px;
  border: none;
  border-radius: var(--border-radius);
  background: var(--sunburst);
  color: var(--canyon);
  font-weight: bold;
  font-family: 'Montserrat',sans-serif;
  padding: 7px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .13s, color .13s;
}

.cookie-banner button:hover {
  background: var(--pacific);
  color: var(--white);
}

.cookie-banner button#cookie-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--sunburst);
  margin-left: 7px;
}

.cookie-banner button#cookie-decline:hover {
  background: var(--sunburst);
  color: var(--canyon);
}

/* UTILITIES */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.clearfix::after { content: ""; display: table; clear: both; }
.hide { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }