:root {
  --primary-color: #1F2937;
  --primary-light: #374151;
  --secondary-color: #E5E7EB;
  --accent-color: #8B5A3C;
  --accent-light: #A67C52;
  --accent-gold: #D4AF37;
  --dark-bg: #0F1320;
  --light-bg: #F7F7F5;
  --text-dark: #111827;
  --music-burgundy: #722F37;
  --music-mahogany: #5D4037;
  --music-gold: #B8860B;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, .display-4, .display-3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Better touch targets for mobile */
@media (max-width: 991.98px) {
  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }
  .nav-link {
    padding: 12px 16px !important;
  }
  a, button {
    min-height: 44px;
  }
  
  /* Improve readability */
  p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Image optimization */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Reduce animation on mobile for performance */
  * {
    animation-duration: 0.5s !important;
  }
}

.navbar {
  background: #fff;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(139, 90, 60, 0.1);
  transition: var(--transition);
  padding: 0.75rem 0;
}
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .navbar-collapse {
    background: #fff;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav {
    gap: 0.5rem;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.navbar:hover {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
}
.logo-img {/* border-radius: 10px; *//* box-shadow: 0 2px 10px rgba(139, 90, 60, 0.15); */transition: var(--transition);}
.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.3);
}
.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover::after {
  width: 70%;
}
.nav-link:hover { color: var(--accent-color) !important; }
.navbar-brand { color: var(--text-dark); letter-spacing: -0.01em; transition: var(--transition); }
.navbar-brand:hover { transform: translateY(-1px); }

.hero-section {
  background:
    radial-gradient(circle at 20% 50%, rgba(114, 47, 55, 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(93, 64, 55, 0.2), transparent 50%),
    linear-gradient(135deg, #2C1810 0%, #3d2317 30%, #5D4037 70%, #722F37 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.5) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-btn {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--music-gold) 100%);
  color: #2C1810;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
  border: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}
.hero-btn:hover::before {
  left: 100%;
}
.hero-btn:hover {
  background: linear-gradient(135deg, var(--music-gold) 0%, var(--accent-gold) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
  color: #2C1810;
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 2.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--music-mahogany), var(--accent-gold));
  margin: 16px auto 0;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(139, 90, 60, 0.3);
}

.modern-card {
  background: #fff;
  border: 2px solid rgba(139, 90, 60, 0.12);
  border-radius: 24px;
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--music-mahogany), var(--accent-gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.modern-card:hover::before {
  transform: scaleX(1);
}
.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.15);
  border-color: rgba(139, 90, 60, 0.3);
}
.card-icon-bg {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.15), rgba(166, 124, 82, 0.25));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--music-mahogany);
  font-size: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.2);
}
.modern-card:hover .card-icon-bg { 
  background: linear-gradient(135deg, var(--music-mahogany), var(--accent-gold)); 
  color: #fff;
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.4);
}

/* Teacher Showcase Section */
.teacher-showcase {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}
.teacher-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(139, 90, 60, 0.05), transparent 50%);
  pointer-events: none;
}

.teacher-image-wrapper {
  position: relative;
  z-index: 2;
}

.teacher-main-image {
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 3px solid rgba(212, 175, 55, 0.3);
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .teacher-main-image {
    border-width: 2px;
  }
}

.teacher-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 90, 60, 0.25) !important;
}

.decorative-circle-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.decorative-circle-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 90, 60, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(35px);
  z-index: 1;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-gold), var(--music-gold));
  color: #2C1810;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  z-index: 3;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
  }
}

.feature-box {
  transition: var(--transition);
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 90, 60, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.price-card {
  border: 2px solid rgba(139, 90, 60, 0.2);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(114, 47, 55, 0.03));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.price-card:hover::before {
  opacity: 1;
}
.price-card.featured {
  transform: scale(1.05);
  border: 3px solid #cea62d;
  /* border-image: linear-gradient(135deg, var(--accent-gold), var(--music-burgundy)) 1; */
  z-index: 2;
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}
.price-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 30px 70px rgba(139, 90, 60, 0.2);
}
.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 35px 80px rgba(212, 175, 55, 0.4);
}
.price-header {
  background: linear-gradient(135deg, #2C1810 0%, #5D4037 50%, #722F37 100%);
  padding: 45px 24px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}
.price-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--music-burgundy), var(--accent-gold));
  opacity: 0.8;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#fiyatlar {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
  position: relative;
}
#fiyatlar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(139, 90, 60, 0.06), transparent 40%);
  pointer-events: none;
}

.contact-section { 
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 90, 60, 0.05), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(114, 47, 55, 0.05), transparent 50%);
  pointer-events: none;
}
.contact-box {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(139, 90, 60, 0.12);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 90, 60, 0.3);
}

.contact-box .rounded-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  flex-shrink: 0;
}

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.floating-whatsapp:hover { 
  transform: scale(1.1) rotate(5deg); 
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }
}

footer { 
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2332 100%); 
  color: rgba(255, 255, 255, 0.7); 
  padding: 50px 0 24px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.border-end-md { border-right: none; }
@media (min-width: 768px) { .border-end-md { border-right: 1px solid rgba(0,0,0,0.06); } }

/* Mobile First Responsive Design */
/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
  body { font-size: 15px; }
  
  /* Hero Section */
  .hero-section { 
    background-attachment: scroll; 
    padding: 100px 0 60px; 
  }
  .display-3 { 
    font-size: 1.75rem; 
    letter-spacing: -0.02em;
    line-height: 1.3;
  }
  .hero-section .lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero-section .d-flex {
    flex-direction: column;
  }
  .hero-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .btn-outline-light {
    width: 100%;
    padding: 10px;
  }
  
  /* Logo */
  .logo-img {height: 70px;}
  .navbar-brand .fs-4 { font-size: 1.1rem !important; }
  
  /* Stats Section */
  .fw-bold.fs-2 { font-size: 1.5rem !important; }
  .small { font-size: 0.8rem !important; }
  
  /* About Section */
  #hakkimda .display-6 {
    font-size: 1.5rem;
  }
  #hakkimda img {
    margin-bottom: 2rem;
  }
  
  /* Cards */
  .modern-card { 
    padding: 24px 18px;
    margin-bottom: 1rem;
  }
  .card-icon-bg { 
    width: 56px; 
    height: 56px; 
    font-size: 1.5rem; 
  }
  .modern-card h3 {
    font-size: 1.25rem;
  }
  .modern-card ul {
    font-size: 0.9rem;
  }
  
  /* Teacher Showcase */
  .teacher-showcase .display-5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .teacher-showcase .lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  .teacher-main-image {
    margin-bottom: 2rem;
  }
  .decorative-circle-1,
  .decorative-circle-2 {
    display: none;
  }
  .floating-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
    bottom: 10px;
    left: 10px;
  }
  .feature-box {
    margin-bottom: 1rem;
    padding: 1rem !important;
  }
  .feature-box h5 {
    font-size: 1rem;
  }
  .feature-box .small {
    font-size: 0.85rem !important;
  }
  .teacher-showcase .btn {
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  .teacher-showcase .d-flex {
    flex-direction: column;
  }
  
  /* Pricing */
  .price-card { 
    margin-bottom: 1.5rem;
  }
  .price-card.featured { 
    transform: scale(1);
    margin-top: 0;
  }
  .price-amount { 
    font-size: 2.2rem !important; 
  }
  .price-header {
    padding: 30px 16px;
  }
  .price-header h4 {
    font-size: 1.1rem;
  }
  .price-card ul li {
    font-size: 0.9rem;
  }
  #fiyatlar .rounded-pill {
    font-size: 0.75rem !important;
  }
  
  /* Contact */
  .contact-box {
    padding: 24px;
    margin-bottom: 2rem;
  }
  .contact-box h3 {
    font-size: 1.5rem;
  }
  .contact-box .rounded-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
  .contact-box .fs-5 {
    font-size: 1.1rem !important;
  }
  .contact-box .fs-6 {
    font-size: 0.95rem !important;
  }
  .contact-section iframe {
    height: 300px !important;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 1.75rem !important;
  }
  .section-title::after {
    width: 60px;
    height: 4px;
  }
  
  /* WhatsApp Button */
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
  
  /* Footer */
  footer {
    padding: 40px 0 20px;
  }
  footer h3 {
    font-size: 1.25rem;
  }
  footer .fs-4 {
    font-size: 1.5rem !important;
  }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section { padding: 120px 0 70px; }
  .display-3 { font-size: 2.2rem; }
  .logo-img { height: 40px; }
  .price-card.featured { transform: scale(1); }
  .teacher-showcase .display-5 { font-size: 1.75rem; }
  .decorative-circle-1,
  .decorative-circle-2 {
    width: 120px;
    height: 120px;
  }
  .modern-card { padding: 28px 22px; }
  .card-icon-bg { width: 64px; height: 64px; font-size: 1.7rem; }
  .price-amount { font-size: 2.5rem !important; }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section { padding: 140px 0 90px; }
  .display-3 { font-size: 2.5rem; }
  .logo-img { height: 42px; }
  .modern-card { padding: 32px 24px; }
  .card-icon-bg { width: 68px; height: 68px; font-size: 1.9rem; }
  .price-amount { font-size: 2.8rem !important; }
  .teacher-showcase .display-5 { font-size: 2rem; }
  .price-card.featured { transform: scale(1.02); }
  .contact-box { padding: 28px; }
  .feature-box { padding: 1.25rem !important; }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section { padding: 180px 0 130px; }
  .price-amount { font-size: 3.2rem !important; }
  .modern-card { padding: 44px 36px; border-radius: 24px; }
  .card-icon-bg { width: 80px; height: 80px; font-size: 2.2rem; }
  .logo-img {/* height: 45px; */}
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container { max-width: 1140px; }
  .hero-section { padding: 200px 0 140px; }
  .display-3 { font-size: 3.5rem; }
  .teacher-showcase .display-5 { font-size: 2.5rem; }
}
.btn-outline-primary { 
  border-color: var(--music-mahogany); 
  color: var(--music-mahogany);
  border-width: 2px;
  transition: var(--transition);
}
.btn-outline-primary:hover { 
  background: linear-gradient(135deg, var(--music-mahogany), var(--music-burgundy));
  color: #fff; 
  border-color: var(--music-mahogany);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(93, 64, 55, 0.3);
}
.btn-warning { 
  background: linear-gradient(135deg, var(--accent-gold), var(--music-gold));
  border: none;
  color: #2C1810;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.btn-warning:hover {
  background: linear-gradient(135deg, var(--music-gold), var(--accent-gold));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
  color: #2C1810;
}
.text-primary {color: #caa637 !important;}
.btn { 
  border-radius: 999px; 
  font-weight: 600; 
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.btn-outline-light {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  transition: var(--transition);

}
.btn-outline-light:hover { 
  background: rgba(255, 255, 255, 0.95); 
  color: var(--music-mahogany);
  border-color: #fff;
  transform: translateY(-2px);
}
.display-3.fw-bold { font-weight: 600 !important; }
