:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-color: #8B7355; /* Warm brown for instruments */
  --primary-light: #B5966A;
  --primary-dark: #6B5B47;
  
  --secondary-color: #5D8AA8; /* Soft blue */
  --secondary-light: #7BA4C2;
  --secondary-dark: #4A6B84;
  
  --accent-color: #D4A574; /* Golden brass */
  --accent-light: #E8C095;
  --accent-dark: #B8925F;
  
  --neutral-color: #F5F3F0; /* Off-white */
  --neutral-light: #FFFFFF;
  --neutral-dark: #E8E5E2;
  
  --text-color: #2C2520; /* Dark brown */
  --text-light: #5A524A;
  --text-dark: #1A1612;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--neutral-color);
}

/* Conservative Typography */
h1, .h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.875rem;
}

h3, .h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--secondary-dark);
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5, .h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

/* Conservative navbar brand size */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-dark);
}

/* Hero Section - Fullscreen */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-color) 0%, var(--neutral-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  bottom: 20%;
  left: 15%;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.service-card, .feature-card, .team-card, .review-card {
  background: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .feature-card:hover, .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--accent-color);
}

/* Team Images */
.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--accent-light);
}

/* Form Styles */
.form-control {
  border: 2px solid var(--neutral-dark);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--text-dark); /* Using the darkest text color for better contrast */
  color: var(--neutral-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--neutral-light);
  line-height: 1.7;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* Footer disclaimer section */
.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer .disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.footer .copyright {
  font-weight: 500;
}

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

/* FAQ Cards */
.faq-card {
  background: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-color);
  margin-bottom: 0;
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--neutral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 auto 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

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

/* Space page */
#space {
  min-height: 70vh;
  background-color: var(--neutral-color);
  border: 2px dashed var(--neutral-dark);
  border-radius: 8px;
  margin: 2rem 0;
} 