:root {
  /* Indoor Jungle Color Palette - 5 primary colors */
  --jungle-green: #356c42;
  --forest-deep: #1a372e;
  --leaf-bright: #73c77b;
  --earth-brown: #97561d;
  --soft-cream: #e6e8c4;
  
  /* Light/Dark shades */
  --jungle-green-light: #4c905a;
  --jungle-green-dark: #172b1c;
  --forest-deep-light: #2b4e3a;
  --forest-deep-dark: #14311f;
  --leaf-bright-light: #95d197;
  --leaf-bright-dark: #53a745;
  --earth-brown-light: #b97427;
  --earth-brown-dark: #7e4a27;
  --soft-cream-light: #fefefe;
  --soft-cream-dark: #e3e1c6;
  
  /* Conservative font sizes */
  --font-base: 16px;
  --font-small: 14px;
  --font-large: 11px;
  --font-xl: 24px;
  --font-xxl: 36px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  font-size: var(--font-base);
  line-height: 1.6;
  color: var(--forest-deep);
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--soft-cream-dark) 100%);
}

.container {
  width: 100%;
  padding-right: 18px;
  padding-left: 19px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 18px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  background: linear-gradient(90deg, var(--jungle-green) 0%, var(--forest-deep) 100%);
  padding: 0.75rem 0;
  box-shadow: 0 5px 11px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-large) !important;
  font-weight: bold;
  color: var(--soft-cream) !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--soft-cream) !important;
  font-size: var(--font-base);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--leaf-bright) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--jungle-green) 0%, var(--forest-deep) 50%, var(--leaf-bright-dark) 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('../LUM_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--soft-cream);
}

.hero-title {
  font-size: var(--font-xxl);
  font-weight: bold;
  margin-bottom: 1.06rem;
}

.hero-subtitle {
  font-size: var(--font-xl);
  margin-bottom: 1.06rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-base);
  margin-bottom: 2.16rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section-title {
  font-size: var(--font-xl);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.06rem;
  color: var(--jungle-green);
}

.section-subtitle {
  font-size: var(--font-large);
  text-align: center;
  margin-bottom: 1.06rem;
  color: var(--forest-deep);
}

.section-desc {
  font-size: var(--font-base);
  text-align: center;
  margin-bottom: 3.21rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--forest-deep-light);
}

/* About Section */
.about-section {
  background: linear-gradient(45deg, var(--soft-cream) 0%, var(--soft-cream-light) 100%);
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 13px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2.16rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-name {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 1.06rem;
  color: var(--jungle-green);
}

.feature-desc {
  font-size: var(--font-base);
  color: var(--forest-deep-light);
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--leaf-bright-light) 0%, var(--jungle-green-light) 100%);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.16rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-name {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 1.06rem;
  color: var(--jungle-green);
}

.service-desc {
  font-size: var(--font-base);
  margin-bottom: 1.06rem;
  color: var(--forest-deep-light);
}

.service-features {
  font-size: var(--font-small);
  margin-bottom: 1.66rem;
  color: var(--forest-deep);
}

.service-price {
  font-size: var(--font-xl);
  font-weight: bold;
  color: var(--earth-brown);
}

/* Team Section */
.team-section {
  background: var(--soft-cream);
}

.team-card {
  text-align: center;
  margin-bottom: 2.16rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--leaf-bright);
}

.team-name {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 0.55rem;
  color: var(--jungle-green);
}

.team-role {
  font-size: var(--font-base);
  color: var(--forest-deep-light);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(45deg, var(--jungle-green-light) 0%, var(--forest-deep-light) 100%);
  color: var(--soft-cream);
}

.review-card {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2.16rem;
  backdrop-filter: blur(10px);
}

.review-text {
  font-size: var(--font-base);
  margin-bottom: 1.06rem;
  font-style: italic;
}

.review-author {
  font-size: var(--font-base);
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  background: var(--soft-cream-light);
}

.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.66rem;
}

.form-control {
  border: 2px solid var(--leaf-bright-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-base);
}

.form-control:focus {
  border-color: var(--jungle-green);
  box-shadow: 0 0 0 0.2rem rgba(42, 89, 59, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--jungle-green) 0%, var(--leaf-bright) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: var(--font-base);
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, var(--jungle-green-dark) 0%, var(--leaf-bright-dark) 100%);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--jungle-green-dark) 100%);
  color: var(--soft-cream);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: var(--font-large);
  margin-bottom: 1.06rem;
  color: var(--leaf-bright);
}

.footer p, .footer a {
  font-size: var(--font-base);
  color: var(--soft-cream-dark);
}

.footer a:hover {
  color: var(--leaf-bright);
  text-decoration: none;
}

/* Blog Section */
.blog-section {
  background: var(--soft-cream);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2.16rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-title {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 1.06rem;
  color: var(--jungle-green);
}

.blog-excerpt {
  font-size: var(--font-base);
  color: var(--forest-deep-light);
  margin-bottom: 1.06rem;
}

/* FAQ Section */
.faq-section {
  background: var(--soft-cream-light);
}

.faq-item {
  background: white;
  margin-bottom: 1.06rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--leaf-bright-light);
  padding: 1rem;
  font-size: var(--font-base);
  font-weight: bold;
  color: var(--forest-deep);
  cursor: pointer;
}

.faq-answer {
  padding: 1rem;
  font-size: var(--font-base);
  color: var(--forest-deep-light);
}

/* Gallery Section */
.gallery-section {
  background: var(--jungle-green-light);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2.16rem; }
.mt-4 { margin-top: 2.16rem; }
.p-4 { padding: 2rem; }

/* Space Page */
#space {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--leaf-bright-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xl);
  color: var(--jungle-green);
}

/* Breadcrumb */
.breadcrumb-img {
  max-height: 40px;
  margin: 1rem 0;
} 