/* Eco-Tourism Itinerary Design Studio - Main CSS */
/* Bootstrap 5 imported from CDN - no custom overrides allowed */

:root {
  /* Eco-Tourism Color Palette - 5 primary colors with variations */
  --eco-forest: #2d5016;
  --eco-forest-light: #4a7a2b;
  --eco-forest-dark: #1a3009;
  
  --eco-sage: #87a96b;
  --eco-sage-light: #a6c088;
  --eco-sage-dark: #6b8a4e;
  
  --eco-earth: #8b6914;
  --eco-earth-light: #b8941e;
  --eco-earth-dark: #5e470e;
  
  --eco-sky: #4a90a4;
  --eco-sky-light: #6ba8bb;
  --eco-sky-dark: #2f6b7a;
  
  --eco-sand: #d4c5a9;
  --eco-sand-light: #e8dcc5;
  --eco-sand-dark: #b8a688;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --card-border-radius: 8px;
  --transition-base: 0.3s ease;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--eco-forest-dark);
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--eco-forest) !important;
}

/* Headings - Conservative Sizes */
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--eco-forest);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--eco-forest);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-forest-light);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--eco-earth);
  margin-bottom: 0.5rem;
}

/* Paragraph - Conservative Size */
p {
  font-size: var(--font-size-base);
  color: var(--eco-forest-dark);
  margin-bottom: 1rem;
}

/* Section Styling */
.section-padding {
  padding: var(--section-padding);
}

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

.bg-eco-primary {
  background-color: var(--eco-sage-light);
}

.bg-eco-dark {
  background-color: var(--eco-forest);
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--eco-sand-light) 0%, var(--eco-sage-light) 100%);
  position: relative;
}

.hero-decorative {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--eco-sky-light);
  opacity: 0.1;
  border-radius: 50%;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-base);
  border: 1px solid var(--eco-sand);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-earth);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--eco-sand);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--eco-sage);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--eco-earth);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--eco-forest);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--eco-forest-dark);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--eco-sand);
  border-radius: var(--card-border-radius);
  padding: 0.75rem;
  transition: border-color var(--transition-base);
}

.form-control:focus {
  border-color: var(--eco-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-eco-primary {
  background-color: var(--eco-earth);
  border-color: var(--eco-earth);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--card-border-radius);
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-eco-primary:hover {
  background-color: var(--eco-earth-dark);
  border-color: var(--eco-earth-dark);
  color: white;
}

/* Footer */
.footer {
  background-color: var(--eco-forest);
  color: white;
  padding: 3rem 0 2rem;
}

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

.footer a {
  color: var(--eco-sand);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

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

.gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

/* Responsive Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--eco-earth);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--eco-sand);
  position: relative;
  transition: all var(--transition-base);
}

.price-card:hover {
  border-color: var(--eco-sage);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--eco-earth);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--eco-earth);
  margin: 1rem 0;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--eco-sand);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.case-study-content {
  padding: 2rem;
}

/* Timeline Items */
.timeline-item {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--eco-sky);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--eco-sand);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.career-role {
  background-color: var(--eco-sage-light);
  color: var(--eco-forest-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-small);
  font-weight: 600;
  display: inline-block;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-content {
  padding: 1.5rem;
}

/* Core Info Grid */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.coreinfo-item {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--eco-sand);
}

/* Utility Classes */
.text-eco-primary {
  color: var(--eco-forest);
}

.text-eco-secondary {
  color: var(--eco-earth);
}

.text-eco-accent {
  color: var(--eco-sage);
}

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

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--eco-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--eco-forest);
  font-size: 1.5rem;
} 

.hero-content {
    padding-top: 125px;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
