/* Musical Instruments Store - Main Styles */

:root {
  /* Primary Color Palette */
  --primary-burgundy: #8B0000;
  --primary-gold: #DAA520;
  --primary-charcoal: #36454F;
  --primary-cream: #F5F5DC;
  --primary-copper: #B87333;
  
  /* Light/Dark Shades */
  --burgundy-light: #CD5C5C;
  --burgundy-dark: #5C0000;
  --gold-light: #FFD700;
  --gold-dark: #B8860B;
  --charcoal-light: #708090;
  --charcoal-dark: #2F4F4F;
  --cream-light: #FFFEF7;
  --cream-dark: #F0E68C;
  --copper-light: #CD853F;
  --copper-dark: #8B4513;
  
  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* 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.875rem;
  --font-size-4xl: 2.25rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--charcoal-dark);
  background-color: var(--cream-light);
}

/* Respect 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;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-burgundy) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--charcoal-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-burgundy) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-copper) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TRA_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--cream-light);
  font-size: var(--font-size-4xl);
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--cream-light);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--charcoal-light);
  font-size: var(--font-size-lg);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1rem 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--cream-light);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-copper) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--copper-dark) 100%);
}

/* FAQ Accordion */
.faq-item {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--primary-gold);
  color: var(--charcoal-dark);
  padding: 1rem 1.5rem;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Reviews Slider */
.reviews-slider {
  background: var(--primary-charcoal);
  padding: 4rem 0;
  margin: 3rem 0;
}

.review-item {
  background: var(--cream-light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 0 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

.review-author {
  font-weight: 600;
  color: var(--primary-burgundy);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--primary-charcoal) 100%);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Step Numbers */
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-gold) 100%);
  color: var(--cream-light);
  font-size: var(--font-size-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-copper) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
} 