/* Virtual Camp Template - Main CSS */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors */
  --primary-forest: #336e44;
  --primary-golden: #fea055;
  --primary-sky: #5098e7;
  --primary-coral: #f48280;
  --primary-sage: #8db288;
  
  /* Light Shades */
  --light-forest: #437456;
  --light-golden: #f19d4c;
  --light-sky: #6ea8e3;
  --light-coral: #e77c6d;
  --light-sage: #a2d2a2;
  
  /* Dark Shades */
  --dark-forest: #2f5037;
  --dark-golden: #d2752b;
  --dark-sky: #609ad3;
  --dark-coral: #e35344;
  --dark-sage: #88a47d;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #707a81;
  --dark-gray: #34383b;
  --black: #16181a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-forest), var(--primary-golden));
  --gradient-secondary: linear-gradient(135deg, var(--primary-sky), var(--primary-coral));
  --gradient-tertiary: linear-gradient(135deg, var(--primary-sage), var(--light-golden));
  
  /* Conservative Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.75rem;
  --font-size-4xl: 2rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 17px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Prefers Reduced Motion */
@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 - Conservative Sizes */
h1 { font-size: var(--font-size-3xl); font-weight: 600; margin-bottom: 1.18rem; }
h2 { font-size: var(--font-size-2xl); font-weight: 600; margin-bottom: 1.07rem; }
h3 { font-size: var(--font-size-xl); font-weight: 600; margin-bottom: 0.83rem; }
h4 { font-size: var(--font-size-lg); font-weight: 500; margin-bottom: 0.71rem; }
h5 { font-size: var(--font-size-base); font-weight: 500; margin-bottom: 0.66rem; }
h6 { font-size: var(--font-size-sm); font-weight: 500; margin-bottom: 0.66rem; }

p { margin-bottom: 1.18rem; }

/* Header & Navigation */
.navbar-brand {
  font-size: var(--font-size-xl) !important; /* Conservative size for logo */
  font-weight: 600;
  color: var(--primary-forest) !important;
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--dark-gray) !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-golden) !important;
}

/* Hero Section - Fullscreen */
#hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 89, 54, 0.10);
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  color: var(--white);
  font-size: var(--font-size-3xl);
  margin-bottom: 1.60rem;
}

#hero .lead {
  color: var(--light-gray);
  font-size: var(--font-size-lg);
  margin-bottom: 2.12rem;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3.19rem;
}

.section-title h2 {
  color: var(--primary-forest);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-golden);
}

/* Services Cards */
.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.12rem;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-110px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-golden);
}

.service-card h3 {
  color: var(--primary-forest);
  margin-bottom: 1.18rem;
}

.service-card .price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-golden);
  margin: 1rem 0;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2.12rem;
}

.feature-item i {
  font-size: 3.11rem;
  color: var(--primary-coral);
  margin-bottom: 1.18rem;
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.12rem;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card .card-body {
  padding: 1.5rem;
  text-align: center;
}

.team-card h5 {
  color: var(--primary-forest);
  margin-bottom: 0.66rem;
}

.team-card .role {
  color: var(--primary-golden);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

/* Testimonials */
.testimonial-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin: 1rem;
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4.05rem;
  color: var(--primary-golden);
  line-height: 1;
}

.testimonial-item .author {
  font-weight: 600;
  color: var(--primary-forest);
  margin-top: 1.07rem;
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--light-sage);
  margin-bottom: 0.66rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background: var(--light-gray);
  border: none;
  color: var(--primary-forest);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-sage);
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--gradient-tertiary);
  padding: 3rem;
  border-radius: 15px;
  color: var(--white);
}

.contact-form .form-control {
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.18rem;
  background: rgba(255,255,255,0.9);
}

.contact-form .btn-primary {
  background: var(--primary-forest);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: var(--dark-forest);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: var(--primary-forest);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--primary-golden);
  margin-bottom: 1.18rem;
}

footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-golden);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.18rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.12rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card h5 {
  color: var(--primary-forest);
  margin-bottom: 1.18rem;
}

.blog-card .btn-link {
  color: var(--primary-golden);
  text-decoration: none;
  font-weight: 500;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.12rem;
  border: 3px solid transparent;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-golden);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pricing-card .price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-golden);
  text-align: center;
  margin: 1rem 0;
}

.pricing-card h3 {
  text-align: center;
  color: var(--primary-forest);
  margin-bottom: 1.18rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-card ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-sage);
  margin-right: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-golden);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3.19rem;
  width: 45%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  left: 55%;
  text-align: left;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--primary-golden);
  border: 3px solid var(--white);
  border-radius: 50%;
  top: 0;
}

.timeline-item:nth-child(odd)::before {
  right: -9px;
}

.timeline-item:nth-child(even)::before {
  left: -9px;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2.12rem;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Case Studies */
.case-study-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.12rem;
  border-left: 5px solid var(--primary-coral);
}

.case-study-card h4 {
  color: var(--primary-forest);
  margin-bottom: 1.18rem;
}

/* Career Cards */
.career-card {
  background: var(--white);
  border: 1px solid var(--light-sage);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.18rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-golden);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.career-card .role {
  color: var(--primary-coral);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Core Info */
.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 1.60rem;
  border-top: 3px solid var(--primary-sky);
}

.info-card h5 {
  color: var(--primary-forest);
  margin-bottom: 0.83rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Utilities */
.text-primary-forest { color: var(--primary-forest) !important; }
.text-primary-golden { color: var(--primary-golden) !important; }
.text-primary-sky { color: var(--primary-sky) !important; }
.text-primary-coral { color: var(--primary-coral) !important; }
.text-primary-sage { color: var(--primary-sage) !important; }

.bg-primary-forest { background-color: var(--primary-forest) !important; }
.bg-primary-golden { background-color: var(--primary-golden) !important; }
.bg-primary-sky { background-color: var(--primary-sky) !important; }
.bg-primary-coral { background-color: var(--primary-coral) !important; }
.bg-primary-sage { background-color: var(--primary-sage) !important; }

.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }
.bg-gradient-tertiary { background: var(--gradient-tertiary) !important; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Contact Info */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.66rem;
  color: var(--light-gray);
}

/* Site Copyright */
#site-copyright {
  color: var(--medium-gray);
  font-size: var(--font-size-xs);
}


/* 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;
    }
}
