/* about.css – corrected version */

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

/* ----- GLOBAL & NAVBAR (unchanged, but cleaned duplicates) ----- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f0ebe2;  /* warm limestone */
  color: #1e1c15;
  line-height: 1.5;
  min-height: 100vh;    /* keeps background full height */
  /* removed flex centering – navbar and content now flow naturally */
}

h1, h2, h3, h4, .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2D5A27;
}

a {
  text-decoration: none;
}

/* ===== NAVBAR (your original styles, kept intact) ===== */
.navbar {
  background-color: #2D5A27;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #F5F0E6;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li a {
  color: #F5F0E6;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links li a:hover {
  border-bottom-color: #B86F52;
}

.menu-toggle {
  display: none;
  color: #F5F0E6;
  font-size: 2rem;
  cursor: pointer;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    color: #F5F0E6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn.active {
    color: #B86F52;
    font-weight: 700;
}

.lang-divider {
    color: #6A8D92;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

.btn-plan {
  background-color: #B86F52;
  color: #F5F0E6;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #B86F52;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-plan:hover {
  background-color: #9e5e45;
  border-color: #9e5e45;
  transform: translateY(-2px);
}

/* ----- ABOUT PAGE CONTENT (adjusted for proper centering) ----- */
.about-page {
  max-width: 1000px;
  width: 100%;
  margin: 3rem auto 4rem;        /* top margin creates gap below navbar, auto centers horizontally */
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 3rem;
  box-shadow: 0 30px 50px -20px rgba(20, 20, 10, 0.3);
  padding: 3.5rem 3rem;
  border: 1px solid #e6daca;
}

/* header with trails identity */
.trails-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px dashed #d4c4ae;
  padding-bottom: 1.2rem;
}



.brand-word {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #4a3f32;
  text-transform: uppercase;
  font-style: italic;
}

/* main title */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  color: #2b261d;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(190, 160, 120, 0.25);
  z-index: -1;
  border-radius: 4px;
}

/* decorative wave */
.wave-line {
  height: 4px;
  width: 120px;
  background: repeating-linear-gradient(
    90deg,
    #b09b80 0px,
    #b09b80 6px,
    transparent 6px,
    transparent 12px
  );
  margin: 1.5rem 0 2.2rem 0;
}

/* about content typography */
.about-content {
  max-width: 780px;
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 1.6rem;
  color: #2f2a21;
  font-weight: 300;
}

.about-content p.dropcap:first-child {
  font-size: 1.6rem;
  font-weight: 400;
  color: #3d3529;
}

.about-content p.dropcap:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  color: #7c5f42;
  font-weight: 600;
  text-shadow: 2px 2px 0 #ede3d6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a2f2a;
    color: #F5F0E6;
    margin-top: 0;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(106, 141, 146, 0.3);
}

.footer-col h3 {
    font-size: 1.2rem;
    color: #F5F0E6;
    margin-bottom: 1.2rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #B86F52;
    margin-top: 0.5rem;
}

.footer-logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #F5F0E6;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    color: #C0C8D0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(245, 240, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F0E6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #B86F52;
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #C0C8D0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #B86F52;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #B86F52;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #C0C8D0;
    margin-bottom: 1rem;
}

.footer-contact li i {
    width: 20px;
    color: #B86F52;
    font-size: 1rem;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #F5F0E6;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: #C0C8D0;
    margin-bottom: 1rem;
}

.newsletter-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 40px;
    font-family: inherit;
    background: rgba(245, 240, 230, 0.1);
    color: #F5F0E6;
    outline: none;
    transition: all 0.3s;
}

.newsletter-group input:focus {
    background: rgba(245, 240, 230, 0.2);
}

.newsletter-group input::placeholder {
    color: #8A9A9A;
}

.newsletter-group button {
    background: #B86F52;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #F5F0E6;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-group button:hover {
    background: #9e5e45;
    transform: translateX(3px);
}

.newsletter-note {
    font-size: 0.7rem;
    margin-top: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom-content p {
    color: #8A9A9A;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #8A9A9A;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #B86F52;
}

.newsletter-success {
    background: rgba(184, 111, 82, 0.2);
    border: 1px solid #B86F52;
    padding: 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.newsletter-success.show {
    display: block;
}

/* simple interactive hover */
.trails-badge {
  transition: all 0.2s ease;
}

.trails-badge:hover .mountain-icon {
  transform: scale(1.05);
}

/* responsiveness */
@media (max-width: 600px) {
  .about-page {
    padding: 2.2rem 1.5rem;
    border-radius: 2rem;
    margin: 2rem auto;          /* smaller margin on mobile */
  }
  
  .page-title {
    font-size: 3rem;
  }
  
  .about-content p {
    font-size: 1.1rem;
  }
}

/* optional mobile menu styles (you can add later if needed) */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* you'll handle this with JS later */
  }
  .menu-toggle {
    display: block;
  }
}