:root {
  --primary: #722f01;
  --secondary: #652806;
  --light: #fdf8e0;
  --white: #ffffff;
  --dark: #1a0b02;
  --text: #fdf8e0;
  --shadow: rgba(0, 0, 0, 0.35);
  --accent: #f1c27d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  background: #090301;
  color: var(--text);
  line-height: 1.6;
}


a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  inline-size: 100%;
  block-size: auto;
  display: block;
}

.container {
  inline-size: 90%;
  max-inline-size: 1200px;
  margin: auto;
}



.ss-header {
  background:
    linear-gradient(90deg, #1b0902, #3a1503, #1b0902);
  padding: 10px 0;
  position: sticky;
  inset-block-start: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  border-block-end: 1px solid rgba(241, 194, 125, 0.3);
}

.ss-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  inline-size: 70px;
  block-size: auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7));
}

.ss-nav {
  display: flex;
  gap: 24px;
}

.ss-nav a {
  color: #fdf8e0;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-block-end: 4px;
  transition: 0.3s ease;
}

.ss-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  inline-size: 0%;
  block-size: 2px;
  background: var(--accent);
  transition: 0.3s ease;
}

.ss-nav a:hover,
.ss-nav a.active {
  color: var(--accent);
}

.ss-nav a:hover::after,
.ss-nav a.active::after {
  inline-size: 100%;
}


.nav-toggle {
  display: none;                 
  align-items: center;
  justify-content: center;
  cursor: pointer;
  inline-size: 35px;
  block-size: 35px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  padding: 0;
}


.nav-toggle span {
  display: none;
}

.nav-toggle::before {
  content: "";
  inline-size: 14px;
  block-size: 14px;
  border-inline-start: 2px solid var(--accent);
  border-block-end: 2px solid var(--accent);
  transform: rotate(-45deg);        
  transition: 0.3s ease;
}


.nav-toggle.active::before {
  transform: rotate(135deg);        
}


/* mobile nav behavior */

@media (max-width: 768px) {
  .ss-nav {
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: 66px;
    inline-size: 100%;
    background: #120602;
    flex-direction: column;
    text-align: center;
    padding: 14px 0 20px;
    display: none;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.75);
  }

  .ss-nav.show {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}



.hero {
  padding: 80px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, #fdf8e015 0, transparent 40%),
    radial-gradient(circle at bottom right, #f1c27d20 0, transparent 45%),
    linear-gradient(135deg, #2b1300, #000000);
  position: relative;
  overflow: hidden;
}

/* Floating music notes background */
.hero::before,
.hero::after {
  content: "♪";
  position: absolute;
  font-size: 60px;
  color: rgba(253, 248, 224, 0.18);
  animation: floatNote 12s linear infinite;
}

.hero::before {
  inset-block-start: 10%;
  inset-inline-start: -5%;
}

.hero::after {
  inset-block-end: 5%;
  inset-inline-end: -2%;
  animation-duration: 16s;
  animation-direction: reverse;
}

@keyframes floatNote {
  0% {
    transform: translateY(40px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
  100% {
    transform: translateY(40px) rotate(0deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  position: relative;
}

.hero-text::before {
  content: "";
  position: absolute;
  inset-inline-start: -20px;
  inset-block-start: -15px;
  inline-size: 120px;
  block-size: 120px;
  background: radial-gradient(circle, rgba(241, 194, 125, 0.4), transparent 70%);
  filter: blur(6px);
  z-index: -1;
}

.hero-tagline {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fdf8e0;
  opacity: 0.95;
  margin-block-end: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  color: var(--white);
  line-height: 1.3;
}

.hero-text h1 span {
  color: var(--accent);
}


.hero-eq {
  display: flex;
  gap: 6px;
  margin: 18px 0;
}

.hero-eq span {
  inline-size: 4px;
  border-radius: 999px;
  background: var(--accent);
  animation: eqBounce 1s ease-in-out infinite;
}

.hero-eq span:nth-child(2) { animation-delay: 0.1s; }
.hero-eq span:nth-child(3) { animation-delay: 0.2s; }
.hero-eq span:nth-child(4) { animation-delay: 0.3s; }
.hero-eq span:nth-child(5) { animation-delay: 0.4s; }

@keyframes eqBounce {
  0%, 100% { block-size: 8px; }
  50%      { block-size: 24px; }
}

.hero-lead {
  margin: 10px 0 24px;
  font-size: 16px;
  color: #fbeed2;
}

/* Buttons */

.btn {
  padding: 12px 25px;
  display: inline-block;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset-inline-start: -40%;
  inset-block-start: 0;
  inline-size: 30%;
  block-size: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg) translateX(-100%);
  transition: 0.45s;
}

.btn:hover::after {
  transform: skewX(-20deg) translateX(350%);
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), #fdd9a2);
  color: #411a00;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #fdd9a2, var(--accent));
}

.ghost-btn {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  margin-inline-start: 10px;
}

.ghost-btn:hover {
  background: rgba(253, 217, 162, 0.08);
}

/* Hero meta cards */

.hero-meta {
  display: flex;
  gap: 14px;
  margin-block-start: 26px;
  flex-wrap: wrap;
}

.meta-card {
  background: rgba(0, 0, 0, 0.55);
  padding: 12px 16px;
  border-radius: 12px;
  min-inline-size: 150px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(241, 194, 125, 0.3);
}

.meta-card h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbe8c6;
}

.meta-card p {
  font-size: 14px;
}

/* Hero visual card */

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top, #fdf8e015, transparent 60%);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(241, 194, 125, 0.26);
}

.hero-bg-circle {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(241, 194, 125, 0.22), transparent 65%);
  z-index: -1;
}

.hero-main-image img {
  border-radius: 16px;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-block-start: 12px;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #fbe8c6;
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.hero-location {
  margin-block-start: 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fbeed2;
}


.info-strip {
  background: #1a0b02;
  color: var(--light);
  padding: 20px 0;
}

.info-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.info-item i {
  font-size: 24px;
  color: var(--accent);
}



.section-head {
  text-align: center;
  margin-block-end: 40px;
}

.section-head h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: var(--accent);
}

.section-head h2 span {
  color: var(--light);
}

.section-head p {
  max-inline-size: 700px;
  margin: 10px auto;
  color: #fbeed2;
}


.classes-overview {
  padding: 70px 0;
  background: #130702;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.class-card {
  background: #2a1404;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 4px 14px var(--shadow);
  border-inline-start: 5px solid var(--accent);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  color: var(--light);
}

.class-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -40px;
  inset-block-start: 40%;
  inline-size: 80px;
  block-size: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(241, 194, 125, 0.2);
}

.class-card:hover {
  transform: translateY(-8px);
}

.class-card h3 {
  color: var(--accent);
  font-size: 20px;
  margin-block-end: 8px;
}

.class-link {
  margin-block-start: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--light);
  font-weight: 600;
}

/* Instruments */

.instruments {
  padding: 70px 0;
  background: #1a0b02;
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.instrument-card {
  background: #2a1404;
  padding: 24px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 4px 14px var(--shadow);
  position: relative;
  overflow: hidden;
  color: var(--light);
  border: 1px solid rgba(241, 194, 125, 0.26);
}

.instrument-card img {
  inline-size: 130px;
  margin: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.instrument-card h4 {
  margin: 15px 0 6px;
  color: var(--accent);
}

/* Spotlight */

.spotlight {
  padding: 70px 0;
  background: #130702;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.spotlight-image img {
  border-radius: 14px;
  box-shadow: 0 5px 16px var(--shadow);
}

.spotlight-text h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: var(--accent);
}

/* Mini about */

.mini-about {
  background: linear-gradient(90deg, #3a1503, #1b0902);
  color: var(--light);
  padding: 50px 0;
}

.mini-about-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}



.site-footer {
  background: #0b0401;
  color: var(--light);
  padding: 45px 0 20px;
  margin-block-start: 60px;
  border-block-start: 1px solid rgba(241, 194, 125, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.footer-logo {
  inline-size: 80px;
  margin-block-end: 12px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}

.footer-col h4 {
  margin-block-end: 8px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  margin-block-start: 8px;
}

.footer-links li {
  margin: 4px 0;
}

.footer-links a {
  color: #fbeed2;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Social icons */

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fbeed2;
  font-size: 14px;
  margin: 4px 0;
  padding: 4px 0;
  transition: 0.25s ease;
}

.footer-social i {
  font-size: 18px;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  margin-block-start: 18px;
  font-size: 13px;
  color: #e0ceb1;
}



.fade-in-up {
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.float-up {
  animation: floatUp 1.3s ease forwards;
  opacity: 0;
  transform: translateY(26px);
}

.zoom-in {
  animation: zoomIn 0.9s ease forwards;
  opacity: 0;
  transform: scale(0.9);
}

.hover-rise:hover {
  transform: translateY(-6px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/*  RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .mini-about-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .info-strip-inner {
    flex-direction: column;
  }
}



body,
* {
  cursor: none !important;
}


.cursor-core,
.cursor-ring {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999999;
}


.cursor-core {
  inline-size: 12px;
  block-size: 12px;
  background: radial-gradient(circle, #f1c27d 0%, #fff2d5 40%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(241, 194, 125, 0.9);
  animation: coreGlow 1.3s ease-in-out infinite;
}


.cursor-ring {
  inline-size: 34px;
  block-size: 34px;
  border-radius: 50%;
  border: 2px solid rgba(241, 194, 125, 0.7);
  box-shadow: 0 0 12px rgba(241, 194, 125, 0.4);
  opacity: 0.9;
  transition: transform 0.12s ease-out, opacity 0.12s ease-out;
}


@keyframes coreGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 12px rgba(241, 194, 125, 0.9);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow: 0 0 22px rgba(241, 194, 125, 1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 12px rgba(241, 194, 125, 0.9);
  }
}


.cursor-ring.click-pulse {
  animation: ringPulse 0.4s ease-out forwards;
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0;
  }
}


.cursor-note {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #f1c27d;
  text-shadow: 0 0 8px rgba(241, 194, 125, 0.8);
  pointer-events: none;
  z-index: 999998;
  opacity: 0;
  animation: noteFloat 0.7s ease-out forwards;
}


@keyframes noteFloat {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-24px);
  }
}
.center-btn{
  margin-block-start: 20px;
}
.btn{
  margin-block-start: 10px;
}