/* Handmade Musical Instruments - Main CSS */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - 5 colors */
  --primary-amber: #d79217;
  --primary-amber-light: #ec7d0b;
  --primary-amber-dark: #b95d1b;
  
  --primary-forest: #0d8858;
  --primary-forest-light: #1fb98d;
  --primary-forest-dark: #007049;
  
  --primary-slate: #354154;
  --primary-slate-light: #394558;
  --primary-slate-dark: #23334a;
  
  --primary-cream: #fff1d6;
  --primary-cream-light: #f4f4f3;
  --primary-cream-dark: #fad17d;
  
  --primary-terracotta: #c51328;
  --primary-terracotta-light: #e75555;
  --primary-terracotta-dark: #be3122;
  
  /* Typography */
  --font-size-base: 14px;
  --font-size-small: 12px;
  --font-size-large: 16px;
  --font-size-h1: 28px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;
  --font-size-h5: 16px;
  --font-size-h6: 14px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  
  /* Spacing */
  --section-padding: 60px 0;
  --container-max-width: 1200px;
  
  /* Shadows & Effects */
  --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 32px rgba(0,0,0,0.2);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-slate);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* 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: var(--font-weight-bold);
  color: var(--primary-slate-dark);
  margin-bottom: 20.00px;
}

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: 20.00px;
  color: var(--primary-slate);
  font-size: var(--font-size-base);
}

a {
  color: var(--primary-amber);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-amber-dark);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-slate-dark), var(--primary-slate));
  padding: 12px 0;
  box-shadow: var(--shadow-medium);
}

.navbar-brand {
  font-size: 20.00px !important; /* Conservative logo size */
  font-weight: var(--font-weight-bold);
  color: var(--primary-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-cream) !important;
  font-weight: var(--font-weight-medium);
  margin: 0 8px;
  transition: var(--transition);
  font-size: var(--font-size-base);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-amber-light) !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-amber-light), var(--primary-terracotta-light));
  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('../JUR_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 23.00px;
}

.hero-section p {
  color: var(--primary-cream);
  font-size: var(--font-size-large);
  margin-bottom: 26.00px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 52.00px;
}

.section-title h2 {
  color: var(--primary-slate-dark);
  margin-bottom: 20.00px;
}

.section-title p {
  color: var(--primary-slate);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(135deg, var(--primary-cream-light), var(--primary-cream));
}

.feature-item {
  text-align: center;
  padding: 32px 16px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 26.00px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.feature-item i {
  font-size: 36.00px;
  color: var(--primary-amber);
  margin-bottom: 20.00px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: white;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 32px 24px;
  margin-bottom: 26.00px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-amber-light);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 23.00px;
}

.service-price {
  font-size: 24.00px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-terracotta);
  margin-top: 17.00px;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: linear-gradient(135deg, var(--primary-forest-light), var(--primary-forest));
  color: white;
}

.team-section .section-title h2,
.team-section .section-title p {
  color: white;
}

.team-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  margin-bottom: 26.00px;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20.00px;
  border: 4px solid var(--primary-amber-light);
}

.team-card h5 {
  color: var(--primary-slate-dark);
  margin-bottom: 10.00px;
}

.team-role {
  color: var(--primary-amber);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--primary-cream-light);
}

.review-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 26.00px;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 51.00px;
  color: var(--primary-amber-light);
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: serif;
}

.review-text {
  font-style: italic;
  margin-bottom: 20.00px;
  padding-left: 32px;
}

.review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-slate-dark);
  text-align: right;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: white;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  margin-bottom: 26.00px;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card h5 {
  margin-bottom: 14.00px;
  color: var(--primary-slate-dark);
}

.blog-card p {
  color: var(--primary-slate);
  font-size: var(--font-size-small);
  margin-bottom: 20.00px;
}

.blog-link {
  color: var(--primary-amber);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: linear-gradient(135deg, var(--primary-slate-light), var(--primary-slate));
  color: white;
}

.faq-section .section-title h2,
.faq-section .section-title p {
  color: white;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 20.00px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  background: var(--primary-amber);
  color: white;
  padding: 16px 20px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  margin: 0;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--primary-amber-dark);
}

.faq-answer {
  padding: 20px;
  color: var(--primary-slate);
  background: white;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, var(--primary-terracotta-light), var(--primary-terracotta));
  color: white;
}

.contact-section .section-title h2,
.contact-section .section-title p {
  color: white;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

.contact-form .form-control {
  border: 2px solid var(--primary-cream);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-size: var(--font-size-base);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-amber);
  box-shadow: 0 0 0 0.2rem rgba(217, 111, 15, 0.25);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-amber), var(--primary-amber-dark));
  border: none;
  padding: 12px 32px;
  font-weight: var(--font-weight-medium);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-amber-dark), var(--primary-amber));
  transform: translateY(-2px);
}

.contact-info {
  color: white;
}

.contact-info h5 {
  color: var(--primary-cream);
  margin-bottom: 20.00px;
}

.contact-info p {
  color: var(--primary-cream-light);
  margin-bottom: 14.00px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--primary-slate-dark), #182237);
  color: var(--primary-cream);
  padding: 48px 0 24px;
}

.footer h5 {
  color: var(--primary-amber-light);
  margin-bottom: 23.00px;
}

.footer p {
  color: var(--primary-cream);
  font-size: var(--font-size-small);
}

.footer a {
  color: var(--primary-cream);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary-amber-light);
}

.footer-bottom {
  border-top: 1px solid var(--primary-slate);
  margin-top: 33.00px;
  padding-top: 28.00px;
  text-align: center;
}

.footer-bottom small {
  color: var(--primary-cream);
  font-size: var(--font-size-small);
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--primary-cream-light);
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 41.00px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: var(--primary-slate-dark);
  padding: 20px 0;
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== ADDITIONAL PAGES ===== */
.additional-section {
  padding: 60px 0;
}

.additional-section:nth-child(even) {
  background: var(--primary-cream-light);
}

.additional-item {
  background: white;
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 23.00px;
  transition: var(--transition);
}

.additional-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== SPACE PAGE ===== */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-cream-light), var(--primary-amber-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29.00px;
  color: var(--primary-slate-dark);
  text-align: center;
}

/* ===== SWIPER STYLES ===== */
.swiper {
  width: 100%;
  height: 400px;
}

.swiper-slide {
  text-align: center;
  font-size: 20.00px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--primary-amber);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-amber);
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-amber) !important; }
.text-forest { color: var(--primary-forest) !important; }
.text-slate { color: var(--primary-slate) !important; }
.text-cream { color: var(--primary-cream) !important; }
.text-terracotta { color: var(--primary-terracotta) !important; }

.bg-primary { background-color: var(--primary-amber) !important; }
.bg-forest { background-color: var(--primary-forest) !important; }
.bg-slate { background-color: var(--primary-slate) !important; }
.bg-cream { background-color: var(--primary-cream) !important; }
.bg-terracotta { background-color: var(--primary-terracotta) !important; }

.shadow-custom { box-shadow: var(--shadow-medium); }
.rounded-custom { border-radius: var(--border-radius); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 767.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 70vh;
    text-align: center;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
