/* ================================================
   RUMAH ORKESTRA JOGJA — Modern Design System
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ====== CSS Custom Properties ====== */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);

  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8922F;
  --teal: #5BC0BE;
  --teal-light: #7FD4D2;
  --teal-dark: #3A9896;

  --text-primary: #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.7);
  --text-muted: rgba(245, 240, 232, 0.4);
  --text-accent: var(--gold);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(212, 168, 83, 0.2);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1200px;
  --gap: clamp(16px, 2vw, 32px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Effects */
  --glass-blur: blur(20px);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(212, 168, 83, 0.1);
}

/* ====== Reset & Base ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ====== Utility Classes ====== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  font-style: italic;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ====== Navigation ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-medium);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: var(--glass-blur);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: right var(--transition-medium);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* ====== Hero Pin (Sticky Scroll) ====== */
.hero-pin-wrapper {
  position: relative;
  height: 280vh;
  /* scroll through 2.8x viewport before releasing */
}

.hero-pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ====== Hero Section ====== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.5) 50%,
      rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  opacity: 1;
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.5s forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.hero-cta:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.3), 0 0 60px rgba(212, 168, 83, 0.1);
}

.hero-cta:hover::before {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ====== Page Hero (for inner pages) ====== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

.page-hero .hero-bg::after {
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.7) 60%,
      rgba(10, 10, 10, 1) 100%);
}

.page-hero .hero-content {
  text-align: left;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ====== Quote Section ====== */
.quote-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-primary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.quote-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ====== Featured Event ====== */
.featured-event {
  position: relative;
}

.featured-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.featured-event-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.featured-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-event-image:hover img {
  transform: scale(1.05);
}

.featured-event-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  pointer-events: none;
}

.featured-event-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.featured-event-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.event-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-meta-item .icon {
  color: var(--gold);
  font-size: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-medium), box-shadow var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.3), 0 0 60px rgba(212, 168, 83, 0.1);
}

.btn-outline:hover::before {
  width: 100%;
}

/* ====== Testimonials ====== */
.testimonials {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 83, 0.08);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ====== Member Testimonials (Apa Kata Anggota Komunitas) ====== */
.member-testimonials {
  background: var(--bg-primary);
}

.member-testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.member-testimonial-row:last-child {
  margin-bottom: 0;
}

.member-testimonial-row.reverse {
  direction: rtl;
}

.member-testimonial-row.reverse>* {
  direction: ltr;
}

.member-testimonial-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.member-testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.member-testimonial-img:hover img {
  transform: scale(1.05);
}

.member-testimonial-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  pointer-events: none;
}

.member-testimonial-content {
  padding: clamp(16px, 3vw, 32px);
}

.member-testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.9;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.member-testimonial-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  padding-left: 24px;
}

/* ====== Team Grid ====== */
.team-section {
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 48px;
}

.team-card {
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.team-photo-outer {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}

.team-photo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      var(--gold),
      var(--teal),
      var(--gold-dark),
      var(--teal-dark),
      var(--gold));
  opacity: 0.6;
  transition: opacity var(--transition-medium);
  animation: ringRotate 8s linear infinite;
}

.team-card:hover .team-photo-ring {
  opacity: 1;
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.5px;
}

/* ====== Personel by Instrument ====== */
.personel-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.personel-instrument-group {
  margin-bottom: 48px;
}

.personel-instrument-group:last-child {
  margin-bottom: 0;
}

.personel-instrument-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.personel-instrument-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.personel-instrument-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.personel-instrument-count {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
}

.personel-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.personel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  padding: 0 16px 24px;
  border-radius: 12px;
  transition: all var(--transition-medium);
  cursor: default;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.personel-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transition: transform var(--transition-medium);
}

.personel-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.4) 50%,
      rgba(10, 10, 10, 0.95) 100%);
}

/* Golden border frame */
.personel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(160deg,
      rgba(212, 168, 83, 0.4),
      rgba(212, 168, 83, 0.08) 40%,
      rgba(91, 192, 190, 0.08) 60%,
      rgba(212, 168, 83, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  z-index: 2;
}

.personel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 83, 0.08);
}

.personel-card:hover .personel-card-photo {
  transform: scale(1.05);
}

.personel-card:hover::before {
  background: linear-gradient(160deg,
      rgba(212, 168, 83, 0.7),
      rgba(212, 168, 83, 0.2) 40%,
      rgba(91, 192, 190, 0.2) 60%,
      rgba(212, 168, 83, 0.7));
}

.personel-card-info {
  position: relative;
  z-index: 1;
}

.personel-card-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  word-break: break-word;
  hyphens: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.personel-card-instrument {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--teal);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ====== Events Page ====== */
.events-grid {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 48px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.event-card:nth-child(even) {
  direction: rtl;
}

.event-card:nth-child(even)>* {
  direction: ltr;
}

.event-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.event-card-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.event-card-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.event-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ====== About Page ====== */
.about-content {
  max-width: 800px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  margin-top: 48px;
}

.stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-medium);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ====== Contact Section ====== */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap);
  margin-top: 48px;
}

.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-medium);
}

.contact-card:hover {
  border-color: var(--border-glow);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--teal);
}

/* ====== Footer ====== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
}

/* ====== Nav 360 Badge ====== */
.nav-360 {
  padding: 4px 12px;
  border: 1px solid var(--gold) !important;
  border-radius: 16px;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  color: var(--gold) !important;
  transition: all 0.3s ease;
}

.nav-360:hover {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
}

/* ====== 360° Promo Section ====== */
.experience-360-promo {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.promo-360-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: clamp(40px, 5vw, 64px);
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(212, 168, 83, 0.06) 0%,
      rgba(91, 164, 164, 0.04) 50%,
      rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid var(--border-glow);
  overflow: hidden;
}

.promo-360-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}

.promo-360-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.promo-360-content {
  position: relative;
  z-index: 1;
}

.promo-360-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.promo-360-title span {
  color: var(--gold);
}

.promo-360-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

.promo-360-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-360-sphere {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-360-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: conic-gradient(from 0deg,
      var(--gold),
      var(--teal),
      var(--gold-dark),
      rgba(91, 164, 164, 0.3),
      var(--gold)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: ringRotate 8s linear infinite;
}

.promo-360-icon {
  font-size: 3rem;
  z-index: 1;
}

@media (max-width: 768px) {
  .promo-360-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-360-desc {
    max-width: 100%;
  }

  .promo-360-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
  }

  .promo-360-visual {
    order: -1;
  }

  .promo-360-sphere {
    width: 100px;
    height: 100px;
  }

  .promo-360-icon {
    font-size: 2rem;
  }
}

/* ====== Animations ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .featured-event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .member-testimonial-row {
    grid-template-columns: 1fr;
  }

  .member-testimonial-row.reverse {
    direction: ltr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-photo-outer {
    width: 140px;
    height: 140px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    min-height: 40vh;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-photo-outer {
    width: 160px;
    height: 160px;
  }
}

/* ====== Loading ====== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: loaderPulse 1.2s infinite ease-in-out;
  margin: 0 4px;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loaderPulse {

  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.3;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ====== Home Gallery Section ====== */
.home-gallery-section {
  background: var(--bg-primary);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* ====== Gallery Page — Masonry Grid ====== */
.gallery-page-grid {
  columns: 4;
  column-gap: 10px;
}

.gallery-page-grid .home-gallery-item {
  aspect-ratio: unset;
  /* Let photos keep their natural height */
  break-inside: avoid;
  margin-bottom: 10px;
  display: block;
}

.gallery-page-grid .home-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .gallery-page-grid {
    columns: 3;
  }
}

@media (max-width: 640px) {
  .gallery-page-grid {
    columns: 2;
  }
}



.home-gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.85);
}

.home-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.home-gallery-item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-gallery-item:hover::after {
  opacity: 1;
}

/* Hidden extras */
.gallery-extra {
  display: none;
}

.gallery-extra.gallery-shown {
  display: block;
  animation: galleryFadeIn 0.4s ease forwards;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ====== Stats Widget Bar (Homepage) ====== */

.stats-widget-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: clamp(28px, 4vw, 48px) 0;
  position: relative;
  overflow: hidden;
}

.stats-widget-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
  opacity: 0.6;
}

.stats-widget-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-widget-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
}

.stats-widget-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stats-widget-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats-widget-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats-widget-divider {
    display: none;
  }

  .stats-widget-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 16px;
  }

  .stats-widget-item:nth-child(odd) {
    border-right: 1px solid var(--border-subtle);
  }
}

/* ====== Community Page — Personel by Instrument ====== */

.personel-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}


/* ====== Personel Accordion ====== */
.personel-accordion-group {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--transition-medium);
}

.personel-accordion-group:hover,
.personel-accordion-group[data-open="true"] {
  border-color: var(--border-glow);
}

.personel-accordion-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition-fast);
  text-align: left;
}

.personel-accordion-header:hover {
  background: rgba(212, 168, 83, 0.06);
}

.personel-accordion-group[data-open="true"] .personel-accordion-header {
  background: rgba(212, 168, 83, 0.05);
  border-bottom: 1px solid var(--border-subtle);
}

.personel-accordion-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.personel-instrument-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.personel-instrument-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--gold);
  margin: 0;
}

.personel-instrument-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2px 10px;
}

.personel-accordion-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color var(--transition-fast);
  display: flex;
  align-items: center;
}

.personel-accordion-group[data-open="true"] .personel-accordion-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Collapsible body */
.personel-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.personel-accordion-body .personel-members-grid {
  padding: 24px;
}

.personel-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}



.personel-card {
  text-align: center;
  transition: transform var(--transition-medium), filter var(--transition-medium);
}

.personel-card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 12px 32px rgba(212, 168, 83, 0.15));
}

.personel-card-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: radial-gradient(ellipse at 50% 30%, #1a1817 0%, #111010 60%, #0a0a0a 100%);
}

/* Animated border ring */
.personel-card-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: conic-gradient(from 0deg,
      var(--gold),
      var(--teal),
      var(--gold-dark),
      rgba(91, 164, 164, 0.3),
      var(--gold));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity var(--transition-medium);
  animation: ringRotate 12s linear infinite;
  z-index: 2;
}

.personel-card:hover .personel-card-photo-wrapper::before {
  opacity: 1;
}

/* Corner ornament accents */
.personel-card-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 83, 0.12);
  pointer-events: none;
  z-index: 2;
  transition: border-color var(--transition-medium);
}

.personel-card:hover .personel-card-photo-wrapper::after {
  border-color: rgba(212, 168, 83, 0.3);
}

.personel-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: grayscale(20%);
  transition: filter var(--transition-medium), transform var(--transition-slow);
  position: relative;
  z-index: 1;
}

/* For transparent PNG photos — use contain and align to bottom */
.personel-card-photo[src$=".png"] {
  object-fit: contain;
  object-position: center bottom;
}

.personel-card:hover .personel-card-photo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.personel-card-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ====== Event Gallery ====== */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.event-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform var(--transition-medium);
  cursor: pointer;
}

.event-gallery img:hover {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
}

/* ====== Cookie Consent Banner ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glow);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 4vw, 40px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--gold);
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--bg-primary);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.cookie-btn-decline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

/* ====== Easter Egg: Secret Credit Toast ====== */
.easter-egg-toast {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(100% + 40px));
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  pointer-events: none;
}

.easter-egg-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.easter-egg-toast-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 168, 83, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: toastGlow 2s ease-in-out infinite alternate;
}

@keyframes toastGlow {
  from {
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(212, 168, 83, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  to {
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.5),
      0 0 50px rgba(212, 168, 83, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
}

.easter-egg-icon {
  font-size: 2rem;
  line-height: 1;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-4px) rotate(-5deg);
  }

  75% {
    transform: translateY(2px) rotate(3deg);
  }
}

.easter-egg-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.easter-egg-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.easter-egg-credit {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
}

.easter-egg-credit strong {
  color: var(--gold-light);
}

.easter-egg-role {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ====== Easter Egg: Long-Hover Copyright Reveal ====== */
#footer-copyright {
  position: relative;
  cursor: default;
  transition: color 0.4s ease;
}

#footer-copyright::after {
  content: 'Designed & Developed by Ega Ariasatya ✦';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  font-size: inherit;
  font-family: inherit;
}

#footer-copyright.reveal-credit::after {
  opacity: 1;
  transform: translateY(0);
}

#footer-copyright.reveal-credit {
  color: transparent;
}

/* ====== Easter Egg: Progress Bar on Footer Hover ====== */
#footer-copyright::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--teal));
  border-radius: 2px;
  transition: width 5s linear;
}

#footer-copyright:hover::before {
  width: 100%;
}

#footer-copyright.reveal-credit::before {
  width: 100%;
  background: var(--gold);
  transition: none;
}

@media (max-width: 768px) {
  .easter-egg-toast.visible {
    right: 16px;
    left: 16px;
  }

  .easter-egg-toast-inner {
    padding: 16px 20px;
  }
}