/* ===============================================
   ECO-TOURISM ITINERARY DESIGN STUDIO TEMPLATE
   Main Stylesheet - Bootstrap 5 Based
   =============================================== */

/* Import Bootstrap 5 from CDN */
@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/lightbox2/2.11.4/css/lightbox.min.css');

/* ===============================================
   CSS VARIABLES - ECO-TOURISM COLOR PALETTE
   =============================================== */
:root {
  /* Primary Colors - Pastel High-Contrast Eco-Tourism Theme */
  --eco-green: #7CB342;        /* Primary eco green */
  --nature-blue: #4FC3F7;      /* Sky blue */
  --earth-brown: #8D6E63;      /* Earth brown */
  --sunset-orange: #FFB74D;    /* Warm sunset */
  --forest-dark: #2E7D32;      /* Deep forest */
  
  /* Light Shades */
  --eco-green-light: #C5E1A5;
  --nature-blue-light: #B3E5FC;
  --earth-brown-light: #D7CCC8;
  --sunset-orange-light: #FFE0B2;
  --forest-dark-light: #81C784;
  
  /* Dark Shades */
  --eco-green-dark: #558B2F;
  --nature-blue-dark: #0288D1;
  --earth-brown-dark: #5D4037;
  --sunset-orange-dark: #F57C00;
  --forest-dark-darker: #1B5E20;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #9E9E9E;
  --dark-gray: #424242;
  --black: #212121;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 80px 0;
  --content-max-width: 1200px;
  
  /* Border Radius */
  --border-radius-base: 12px;
  --border-radius-large: 20px;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===============================================
   GLOBAL STYLES
   =============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Conservative typography sizing */
h1, .h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.875rem;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-green-dark);
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--eco-green-dark);
  margin-bottom: 0.625rem;
}

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-light);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--eco-green);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-green-light) 0%, var(--nature-blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--sunset-orange-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

.hero-title {
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--eco-green-dark);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--dark-gray);
  margin-bottom: 2.5rem;
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn-eco {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius-base);
  transition: all 0.3s ease;
}

.btn-eco:hover {
  background-color: var(--eco-green-dark);
  border-color: var(--eco-green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-eco {
  background-color: transparent;
  border-color: var(--eco-green);
  color: var(--eco-green);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius-base);
  transition: all 0.3s ease;
}

.btn-outline-eco:hover {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===============================================
   SECTION STYLES
   =============================================== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--eco-green-dark);
  margin-bottom: 1.5rem;
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================================
   CARD STYLES
   =============================================== */
.eco-card {
  background-color: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

.eco-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.eco-card .card-body {
  padding: 2rem;
}

.eco-card .card-title {
  color: var(--forest-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.eco-card .card-text {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.service-item {
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 3rem;
  color: var(--eco-green);
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-top: 1rem;
}

/* ===============================================
   TEAM SECTION
   =============================================== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--eco-green-light);
  transition: all 0.3s ease;
}

.team-photo:hover {
  border-color: var(--eco-green);
  transform: scale(1.05);
}

.team-member-name {
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--eco-green-dark);
  font-style: italic;
}

/* ===============================================
   TESTIMONIALS/REVIEWS SECTION
   =============================================== */
.review-card {
  background-color: var(--light-gray);
  border-radius: var(--border-radius-large);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--eco-green);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: 600;
  color: var(--forest-dark);
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  background-color: var(--eco-green-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-base);
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius-base);
  color: var(--dark-gray);
}

/* ===============================================
   CONTACT FORM
   =============================================== */
.contact-form {
  background-color: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius-large);
}

.form-control {
  border-radius: var(--border-radius-base);
  border: 2px solid var(--eco-green-light);
  padding: 12px 16px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

.form-check-input:checked {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
  background-color: var(--forest-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--eco-green-light);
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--eco-green-light);
}

.footer-bottom {
  border-top: 1px solid var(--eco-green-dark);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===============================================
   GALLERY SECTION
   =============================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--border-radius-base);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===============================================
   RESPONSIVE UTILITIES
   =============================================== */
@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;
  }
}

/* ===============================================
   MISC UTILITIES
   =============================================== */
.text-eco {
  color: var(--eco-green);
}

.bg-eco {
  background-color: var(--eco-green);
}

.border-eco {
  border-color: var(--eco-green);
}

.icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.icon-medium {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-divider {
  height: 2px;
  background: linear-gradient(to right, var(--eco-green), var(--nature-blue));
  width: 100px;
  margin: 2rem auto;
  border-radius: 1px;
} 



.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);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}



/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
