/* Campfire Story Archive - Main CSS */
:root {
  /* Primary Color Palette - Campfire Theme */
  --fire-orange: #ff6b35;
  --fire-orange-light: #ff8a5c;
  --fire-orange-dark: #e55a2b;
  
  --ember-red: #d73527;
  --ember-red-light: #e56b5a;
  --ember-red-dark: #b22b1e;
  
  --forest-green: #2c5530;
  --forest-green-light: #4a7c50;
  --forest-green-dark: #1f3b23;
  
  --smoke-gray: #6c757d;
  --smoke-gray-light: #868e96;
  --smoke-gray-dark: #495057;
  
  --night-blue: #2c3e50;
  --night-blue-light: #34495e;
  --night-blue-dark: #1a252f;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.6;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--night-blue);
  background-color: #f8f9fa;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--fire-orange) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--night-blue) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--fire-orange) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--night-blue) 0%, var(--forest-green) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../INH_images/hero-campfire.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Section Styling */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--night-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--smoke-gray);
  margin-bottom: 2rem;
}

.section-description {
  color: var(--smoke-gray-dark);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--night-blue);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fire-orange);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--smoke-gray-dark);
  font-size: var(--font-size-small);
}

/* About Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--fire-orange);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--night-blue);
  margin-bottom: 0.75rem;
}

/* Team Section */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--fire-orange);
}

.team-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--night-blue);
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--smoke-gray);
  font-size: var(--font-size-small);
}

/* Testimonials Slider */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--smoke-gray-dark);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--night-blue);
}

/* Blog Section */
#Blog {
  background-color: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden !important;
  padding: 1.5rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--night-blue);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--smoke-gray-dark);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--fire-orange);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--fire-orange-dark);
  text-decoration: underline;
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--night-blue);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--smoke-gray-dark);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-item {
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--ember-red) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--fire-orange-dark) 0%, var(--ember-red-dark) 100%);
}

/* Footer */
.footer {
  background: var(--night-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--fire-orange);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--fire-orange);
}

.footer .contact-info {
  color: #adb5bd;
  margin-bottom: 0.5rem;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: #f8f9fa;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fire-orange);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--fire-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--fire-orange);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-item h4 {
  color: var(--night-blue);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

.career-card h4 {
  color: var(--night-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.career-role {
  color: var(--fire-orange);
  font-weight: 600;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

.casestudy-card h4 {
  color: var(--night-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Core Info Grid */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.coreinfo-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.coreinfo-card h4 {
  color: var(--night-blue);
  margin-bottom: 1rem;
}

/* Utility Classes */
.text-fire-orange { color: var(--fire-orange); }
.bg-fire-orange { background-color: var(--fire-orange); }
.text-ember-red { color: var(--ember-red); }
.bg-ember-red { background-color: var(--ember-red); }
.text-forest-green { color: var(--forest-green); }
.bg-forest-green { background-color: var(--forest-green); }
.text-smoke-gray { color: var(--smoke-gray); }
.bg-smoke-gray { background-color: var(--smoke-gray); }
.text-night-blue { color: var(--night-blue); }
.bg-night-blue { background-color: var(--night-blue); }

.rounded-lg { border-radius: 12px; }
.shadow-lg { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); } 