/* --- CSS Variables & Reset --- */
:root {
  --primary-color: #d4af37; /* Muted Gold */
  --accent-color: #fff8e7; /* Light Cream */
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-light: #1a1a1a;
  --text-light: #f0f0f0;
  --text-dim: #a0a0a0;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1514119412350-e174d90d280e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80")
      no-repeat center center/cover;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero h1 span {
  color: var(--primary-color);
  font-style: italic;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.3s backwards;
}

.btn {
  padding: 15px 40px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
}

.btn:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-filled {
  background: var(--primary-color);
  color: var(--bg-dark);
}

.btn-filled:hover {
  background: transparent;
  color: var(--primary-color);
}

/* --- General Section Styles --- */
.section {
  padding: 100px 10%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* --- YouTube Highlight Section --- */
.youtube-banner {
  background: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 60px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.yt-text {
  flex: 1;
  min-width: 300px;
}

.yt-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.yt-stats {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.yt-icon {
  font-size: 1.5rem;
}

.yt-preview {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.yt-preview img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* --- Shop Section --- */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 15px;
  border-bottom: 2px solid transparent;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.product-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.product-cover {
  height: 200px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.product-card:hover .preview-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.product-info {
  padding: 20px;
}

.product-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.product-instrument {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
}

.btn-buy {
  padding: 8px 20px;
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid var(--text-dim);
  color: var(--text-light);
  cursor: pointer;
  transition: 0.3s;
}

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

/* --- Footer --- */
footer {
  padding: 60px 10% 30px;
  background: #0a0a0a;
  text-align: center;
}

.footer-social {
  margin-bottom: 30px;
}

.footer-social a {
  font-size: 1.5rem;
  margin: 0 15px;
  color: var(--text-dim);
  transition:
    color 0.3s,
    transform 0.3s;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .youtube-banner {
    flex-direction: column;
    text-align: center;
  }
}
