/* Musical Instruments Store - Main Styles */

:root {
  /* Primary Color Palette */
  --primary-gold: #d4af37;
  --primary-gold-light: #e8c66f;
  --primary-gold-dark: #b8941f;
  
  --primary-deep-blue: #1a2332;
  --primary-deep-blue-light: #2a3442;
  --primary-deep-blue-dark: #0f1822;
  
  --primary-burgundy: #8b2635;
  --primary-burgundy-light: #a13645;
  --primary-burgundy-dark: #721f2a;
  
  --primary-forest: #2d5a27;
  --primary-forest-light: #3d6a37;
  --primary-forest-dark: #1d4a17;
  
  --primary-cream: #f8f6f0;
  --primary-cream-light: #fdfcf8;
  --primary-cream-dark: #e6e2d8;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-burgundy) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-forest) 100%);
  --gradient-accent: linear-gradient(45deg, var(--primary-gold-light) 0%, var(--primary-gold-dark) 100%);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-deep-blue);
  background-color: var(--primary-cream);
}

/* 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;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-deep-blue);
}

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 & Navigation */
.navbar {
  background: var(--gradient-secondary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--primary-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-gold);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-gold);
}

/* Reviews Slider */
.reviews-slider {
  background: var(--gradient-secondary);
  color: white;
}

.reviews-slider .swiper-container {
  position: relative;
  padding: 0 50px;
}

.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
  color: var(--primary-gold);
  font-weight: 700;
}

.reviews-slider .swiper-button-next:after,
.reviews-slider .swiper-button-prev:after {
  font-size: 24px;
}

.reviews-slider .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.reviews-slider .swiper-pagination-bullet {
  background: var(--primary-cream);
  opacity: 0.5;
}

.reviews-slider .swiper-pagination-bullet-active {
  background: var(--primary-gold);
  opacity: 1;
}

.review-item {
  text-align: center;
  padding: 3rem 2rem;
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-deep-blue);
  border-bottom: 1px solid var(--primary-cream);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-deep-blue);
  opacity: 0.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--primary-cream-dark);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: var(--primary-deep-blue);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--primary-cream);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--primary-deep-blue-light);
  padding-top: 1rem;
  text-align: center;
}

/* Price Plans */
.price-plan {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-gold);
}

.price-plan:hover {
  transform: translateY(-5px);
}

.price-plan .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1rem 0;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  max-height: 20px;
  width: auto;
}
