/* AR Wildlife Book - Main CSS */
/* Bootstrap 5 Integration with Wildlife Theme */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --wildlife-sage: #9CAF88;
  --wildlife-terracotta: #C08552;
  --wildlife-slate: #5D737E;
  --wildlife-sand: #F4E4BC;
  --wildlife-forest: #2F4F2F;
  
  /* Light/Dark Shades */
  --sage-light: #B8C9A5;
  --sage-dark: #7A9971;
  --terracotta-light: #D4A075;
  --terracotta-dark: #A66D3E;
  --slate-light: #7A8D9A;
  --slate-dark: #495C67;
  --sand-light: #F8EDD6;
  --sand-dark: #E6D19F;
  --forest-light: #3F5F3F;
  --forest-dark: #1F2F1F;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.3rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --hero-height: 100vh;
}

/* Global Styles */
* {
  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(--forest-dark);
  background-color: #fff;
    overflow-x: hidden;
}

/* Conservative Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header */
.navbar {
  background-color: var(--wildlife-sage);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sage-light);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.navbar-nav .nav-link {
  color: var(--forest-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--wildlife-terracotta);
}

/* Hero Section */
.hero-section {
  min-height: var(--hero-height);
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--wildlife-terracotta);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 150px;
  height: 150px;
  background: var(--wildlife-slate);
  border-radius: 50%;
  opacity: 0.8;
}

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

.section-title {
  color: var(--wildlife-forest);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--slate-dark);
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--slate-dark);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--sand-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--sage-light);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  border-color: var(--wildlife-terracotta);
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wildlife-terracotta);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--sage-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  border: 2px solid var(--sage-light);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.price-card:hover {
  border-color: var(--wildlife-terracotta);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wildlife-terracotta);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--sand-light);
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

/* Reviews Section */
.reviews-section {
  background-color: white;
}

.review-card {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--wildlife-terracotta);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--slate-light);
  color: white;
}

.casestudy-section .section-title,
.casestudy-section .section-subtitle,
.casestudy-section .section-desc {
  color: white;
}

.casestudy-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  height: 100%;
}

/* Process Section */
.process-section {
  background-color: white;
}

.process-step {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  position: relative;
  height: 100%;
}

.process-number {
  background: var(--wildlife-terracotta);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--sage-light);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--wildlife-terracotta);
  height: 100%;
}

/* Career Section */
.career-section {
  background-color: white;
}

.career-card {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  height: 100%;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--sand-light);
}

.coreinfo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  height: 100%;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--wildlife-terracotta);
  box-shadow: 0 0 0 0.2rem rgba(192, 133, 82, 0.25);
}

.btn-primary {
  background-color: var(--wildlife-terracotta);
  border-color: var(--wildlife-terracotta);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background-color: var(--sage-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sage-light);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-card {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  margin-bottom: 1rem;
  height: auto;
}

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

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

/* Gallery Section */
.gallery-section {
  background-color: var(--slate-light);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

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

.footer a {
  color: var(--sand-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--wildlife-terracotta);
}

.footer-bottom {
  border-top: 1px solid var(--forest-light);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Animation Integration */
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .sal-animate {
    animation: none !important;
    transition: none !important;
  }
}

/* Utility Classes */
.text-wildlife-sage { color: var(--wildlife-sage); }
.text-wildlife-terracotta { color: var(--wildlife-terracotta); }
.text-wildlife-slate { color: var(--wildlife-slate); }
.text-wildlife-sand { color: var(--wildlife-sand); }
.text-wildlife-forest { color: var(--wildlife-forest); }

.bg-wildlife-sage { background-color: var(--wildlife-sage); }
.bg-wildlife-terracotta { background-color: var(--wildlife-terracotta); }
.bg-wildlife-slate { background-color: var(--wildlife-slate); }
.bg-wildlife-sand { background-color: var(--wildlife-sand); }
.bg-wildlife-forest { background-color: var(--wildlife-forest); }


.hero-section h1 {
    padding-top: 150px;
}


/* 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;
    }
}
