/* Virtual Camp Template - Main CSS */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors */
  --primary-forest: #2c5b3d;
  --primary-golden: #ffb441;
  --primary-sky: #5983bd;
  --primary-coral: #d07b62;
  --primary-sage: #a6bf9f;
  
  /* Light Shades */
  --light-forest: #447e57;
  --light-golden: #eebf70;
  --light-sky: #94b9f7;
  --light-coral: #ff8174;
  --light-sage: #98b298;
  
  /* Dark Shades */
  --dark-forest: #255132;
  --dark-golden: #c76c26;
  --dark-sky: #447acf;
  --dark-coral: #ce6441;
  --dark-sage: #899c81;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #78828a;
  --dark-gray: #272f35;
  --black: #2b2d30;
  
  /* 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: 20px;
}

/* 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.07rem; }
h2 { font-size: var(--font-size-2xl); font-weight: 600; margin-bottom: 0.99rem; }
h3 { font-size: var(--font-size-xl); font-weight: 600; margin-bottom: 0.81rem; }
h4 { font-size: var(--font-size-lg); font-weight: 500; margin-bottom: 0.79rem; }
h5 { font-size: var(--font-size-base); font-weight: 500; margin-bottom: 0.62rem; }
h6 { font-size: var(--font-size-sm); font-weight: 500; margin-bottom: 0.62rem; }

p { margin-bottom: 1.07rem; }

/* 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(48, 84, 65, 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.71rem;
}

#hero .lead {
  color: var(--light-gray);
  font-size: var(--font-size-lg);
  margin-bottom: 2.09rem;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3.13rem;
}

.section-title h2 {
  color: var(--primary-forest);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-golden);
}

/* Services Cards */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.09rem;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-13px);
  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.07rem;
}

.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.09rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-coral);
  margin-bottom: 1.07rem;
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.09rem;
}

.team-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 110px 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.62rem;
}

.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: 4rem;
  color: var(--primary-golden);
  line-height: 1;
}

.testimonial-item .author {
  font-weight: 600;
  color: var(--primary-forest);
  margin-top: 1.18rem;
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--light-sage);
  margin-bottom: 0.62rem;
  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.07rem;
  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.07rem;
}

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.07rem;
}

.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.09rem;
}

.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.07rem;
}

.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.09rem;
  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.07rem;
}

.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.13rem;
  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.09rem;
}

.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.09rem;
  border-left: 5px solid var(--primary-coral);
}

.case-study-card h4 {
  color: var(--primary-forest);
  margin-bottom: 1.07rem;
}

/* Career Cards */
.career-card {
  background: var(--white);
  border: 1px solid var(--light-sage);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.07rem;
  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.71rem;
  border-top: 3px solid var(--primary-sky);
}

.info-card h5 {
  color: var(--primary-forest);
  margin-bottom: 0.81rem;
}

/* 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.62rem;
  color: var(--light-gray);
}

/* Site Copyright */
#site-copyright {
  color: var(--medium-gray);
  font-size: var(--font-size-xs);
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
