/* Hiking Trail Guides - Main CSS */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-green: #2a4010;
  --primary-green-light: #467124;
  --primary-green-dark: #193210;
  
  --accent-orange: #cc5427;
  --accent-orange-light: #f7a64b;
  --accent-orange-dark: #9e3513;
  
  --nature-brown: #8f4d19;
  --nature-brown-light: #c87053;
  --nature-brown-dark: #4e3008;
  
  --sky-blue: #5693d8;
  --sky-blue-light: #82aff2;
  --sky-blue-dark: #4677a8;
  
  --earth-tan: #ccab65;
  --earth-tan-light: #ddba9f;
  --earth-tan-dark: #946d54;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--nature-brown));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), var(--earth-tan));
  --gradient-sky: linear-gradient(135deg, var(--sky-blue), var(--primary-green-light));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-green-dark);
  font-size: 21.00px;
}

/* Conservative font sizes */
h1 { font-size: 2.06rem; font-weight: 600; }
h2 { font-size: 1.57rem; font-weight: 500; }
h3 { font-size: 1.28rem; font-weight: 500; }
h4 { font-size: 1.17rem; font-weight: 500; }
h5 { font-size: 1.09rem; font-weight: 500; }
h6 { font-size: 0.95rem; font-weight: 500; }
p { font-size: 1.09rem; margin-bottom: 1.14rem; }

/* Header Styles */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: 1.28rem !important;
  font-weight: 600;
  color: white !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-orange-light) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-sky);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../LUB_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.13rem;
  color: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  color: var(--nature-brown);
  margin-bottom: 2.08rem;
  font-size: 1.17rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.10rem;
}

.service-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--accent-orange);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.15);
}

.service-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.14rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.10rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 17px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.14rem;
  border: 4px solid var(--primary-green-light);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1.14rem;
}

.faq-question {
  background: var(--primary-green-light);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 500;
}

.faq-answer {
  background: rgba(83, 123, 49, 0.10);
  padding: 1rem;
  border-radius: 0 0 10px 10px;
  margin-top: 5.00px;
  display: none;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.10rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid #cbcbcb;
  padding: 0.75rem 1rem;
  margin-bottom: 1.14rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(46, 71, 14, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Footer */
.footer {
  background: var(--primary-green-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--accent-orange-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-orange);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.10rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

/* Price Plans */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.10rem;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border-top: 4px solid var(--earth-tan);
}

.price-card:nth-child(2) {
  border-top-color: var(--accent-orange);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-5px);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.10rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.57rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Breadcrumb (image only, no text) */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.breadcrumb-item:hover img {
  filter: grayscale(0);
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
