/* ===== BIKE TOURING TEMPLATE - MAIN STYLES ===== */

/* Bootstrap 5 CDN Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.5/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-forest: #1d450d;
  --primary-earth: #954b1d;
  --primary-sky: #4584a4;
  --primary-sunset: #c04316;
  --primary-sage: #9fb08b;
  
  /* Light Shades */
  --light-forest: #549438;
  --light-earth: #af5a1b;
  --light-sky: #83b8e3;
  --light-sunset: #df9d4d;
  --light-sage: #beccaa;
  
  /* Dark Shades */
  --dark-forest: #192d0c;
  --dark-earth: #703b17;
  --dark-sky: #1d4954;
  --dark-sunset: #ae5f2a;
  --dark-sage: #669a55;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #616d7b;
  --dark-gray: #292f34;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-earth) 0%, var(--primary-sunset) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-sky) 0%, var(--light-sky) 100%);
}

/* ===== GLOBAL 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(--dark-gray);
  overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 2.54rem; font-weight: 700; color: var(--primary-forest); }
h2 { font-size: 2.09rem; font-weight: 600; color: var(--primary-earth); }
h3 { font-size: 1.61rem; font-weight: 600; color: var(--primary-sky); }
h4 { font-size: 1.37rem; font-weight: 500; }
h5 { font-size: 1.24rem; font-weight: 500; }
h6 { font-size: 1.15rem; font-weight: 500; }

p { font-size: 1.15rem; margin-bottom: 1.22rem; }
.lead { font-size: 1.24rem; color: var(--gray); }

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: var(--gradient-primary) !important;
  padding: 1rem 0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.61rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--white) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-sage) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-primary);
  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('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.62rem;
  font-weight: 700;
  margin-bottom: 1.68rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.42rem;
  margin-bottom: 2.24rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.24rem;
  margin-bottom: 2.68rem;
  opacity: 0.8;
}

/* ===== DECORATIVE SHAPES ===== */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.1;
  z-index: 1;
}

.blob-1 { width: 300px; height: 300px; top: 10%; right: 10%; }
.blob-2 { width: 200px; height: 200px; bottom: 20%; left: 15%; }

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.22rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 1.22rem;
}

.section-desc {
  text-align: center;
  margin-bottom: 3.10rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--light-gray);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 7px 17px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.24rem;
}

.feature-item:hover {
  transform: translateY(-9px);
}

.feature-icon {
  font-size: 3.02rem;
  color: var(--primary-sky);
  margin-bottom: 1.22rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.24rem;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-sage);
  box-shadow: 0 24px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.68rem;
}

.service-price {
  font-size: 2.09rem;
  font-weight: 700;
  color: var(--primary-earth);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  margin: 0.5rem 0;
  color: var(--gray);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-sage);
  margin-right: 0.5rem;
}

/* ===== PRICE PLANS ===== */
.priceplan-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.priceplan-section .section-title,
.priceplan-section .section-subtitle {
  color: var(--white);
}

.price-card {
  background: var(--white);
  color: var(--dark-gray);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 2.24rem;
  position: relative;
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-sage);
}

.price-value {
  font-size: 3.02rem;
  font-weight: 700;
  color: var(--primary-earth);
  margin: 1.5rem 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: var(--light-gray);
}

.team-member {
  text-align: center;
  margin-bottom: 2.24rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-sage);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.65rem;
}

.team-role {
  color: var(--gray);
  font-style: italic;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--white);
}

.swiper-slide {
  padding: 2rem;
}

.review-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.68rem;
  font-size: 1.24rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
}

.review-stars {
  color: var(--primary-sunset);
  margin-bottom: 1.22rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.24rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.42rem;
  font-weight: 600;
  margin-bottom: 1.22rem;
  color: var(--primary-forest);
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.22rem;
}

.blog-link {
  color: var(--primary-sky);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-sky);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white);
}

.faq-item {
  margin-bottom: 1.22rem;
}

.faq-question {
  background: var(--light-gray);
  border: none;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-sage);
  color: var(--white);
}

.faq-answer {
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: none;
  border-radius: 0 0 10px 10px;
  display: none;
}

.faq-question.active + .faq-answer {
  display: block;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--dark-gray);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  color: var(--dark-gray);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.22rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(182, 194, 161, 0.25);
}

.btn-submit {
  background: var(--gradient-secondary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  color: var(--white);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.contact-info {
  color: var(--white);
}

.contact-info p {
  margin-bottom: 1.22rem;
  font-size: 1.24rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--light-sage);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2.24rem;
}

.footer-section h5 {
  color: var(--primary-sage);
  margin-bottom: 1.22rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1.15rem;
  text-align: center;
}

.footer-bottom small {
  color: var(--gray);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gradient-accent);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-accent);
}

.btn-secondary {
  background: var(--primary-earth);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-secondary:hover {
  background: var(--dark-earth);
  transform: translateY(-2px);
}

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary-forest) !important; }
.text-secondary { color: var(--primary-earth) !important; }
.bg-primary { background: var(--gradient-primary) !important; }
.bg-secondary { background: var(--gradient-secondary) !important; }

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rounded-custom {
  border-radius: 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
