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

/* CSS Variables for Premium Theme Design */
:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  /* Color Palette: Warm Dark, Bamboo Gold, Soft Emerald Green */
  --bg-primary: #120c06;
  --bg-secondary: #1a120b;
  --bg-tertiary: #251b11;
  --accent-gold: #cca43b;
  --accent-gold-hover: #e5ad35;
  --accent-green: #4b8e51;
  --accent-green-hover: #5f9e65;
  
  --text-primary: #f4f1ea;
  --text-secondary: #b5ae9f;
  --text-muted: #827b6e;
  
  --border-color: rgba(204, 164, 59, 0.15);
  --border-color-active: rgba(204, 164, 59, 0.4);
  --glass-bg: rgba(26, 18, 11, 0.65);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  --header-height: 80px;
}

/* V-Cloak to prevent uncompiled template flashing */
[v-cloak] {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-primary);
}

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

/* Custom Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--accent-gold);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* Premium Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 45px;
  width: auto;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-gold-hover);
}

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

/* Actions in Navbar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
}

.lang-switch:hover {
  border-color: var(--accent-gold);
  background-color: rgba(204, 164, 59, 0.05);
  color: var(--accent-gold);
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0;
  line-height: 1;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    gap: 2rem;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  }

  .nav-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hero Carousel */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.carousel-slide.active .slide-img {
  transform: scale(1);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(18, 12, 6, 0.4) 0%,
    rgba(18, 12, 6, 0.6) 50%,
    rgba(18, 12, 6, 0.95) 100%
  );
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 50px;
}

.slide-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-title {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
  line-height: 1.1;
}

.slide-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.carousel-slide.active .slide-subtitle,
.carousel-slide.active .slide-title,
.carousel-slide.active .slide-desc {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }
  .slide-desc {
    font-size: 1rem;
  }
}

/* Carousel Controls & Indicators */
.carousel-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.carousel-btn {
  background: rgba(18, 12, 6, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}

.carousel-indicators {
  position: absolute;
  bottom: 3.5rem;
  left: 4rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.indicator-dot {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator-dot.active {
  background-color: var(--accent-gold);
}

@media (max-width: 768px) {
  .carousel-controls {
    right: 2rem;
    bottom: 1.5rem;
  }
  .carousel-indicators {
    left: 2rem;
    bottom: 2.5rem;
  }
}

/* General Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-family: var(--font-body);
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 0 20px rgba(204, 164, 59, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background-color: rgba(204, 164, 59, 0.05);
}

/* About/Edu Section */
.about-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.source-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  border-left: 2px solid var(--accent-gold);
  padding-left: 0.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Beautiful Interactive Bamboo Illustration / Decoration */
.about-deco {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  background-color: rgba(26, 18, 11, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-deco-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-deco:hover .about-deco-img {
  transform: scale(1.02);
}

/* Video Showcase Section */
.video-section {
  background-color: var(--bg-primary);
  text-align: center;
}

.video-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: center;
}

.video-player-container {
  position: relative;
  background-color: #000;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

/* Video Placeholder & Thumbnail */
.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.video-placeholder:hover .video-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Play Button */
.play-button {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button:hover svg circle {
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.play-button:hover svg polygon {
  fill: var(--accent-gold);
}

/* YouTube Embed */
.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Info Section */
.video-info {
  margin-top: 2rem;
  padding: 0 1rem;
}

.video-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* YouTube Link */
.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(204, 164, 59, 0.15) 0%, rgba(75, 142, 81, 0.15) 100%);
  border: 1px solid var(--border-color-active);
  border-radius: 4px;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.youtube-link:hover {
  background: linear-gradient(135deg, rgba(204, 164, 59, 0.25) 0%, rgba(75, 142, 81, 0.25) 100%);
  border-color: var(--accent-gold);
  transform: translateX(4px);
}

.youtube-link svg {
  width: 16px;
  height: 16px;
}

.youtube-link .arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.youtube-link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .video-wrapper {
    margin: 2rem auto 0;
  }

  .youtube-link {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Legacy video-container support */
.video-container {
  max-width: 900px;
  margin: 3rem auto 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
  background-color: #000;
  aspect-ratio: 16/9;
}

/* Seka & Sanggar Directory Section */
.locations-section {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.places-grid:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

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

.place-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.place-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-active);
  box-shadow: var(--shadow-premium);
}

.place-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.place-desc {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.place-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

.place-actions .btn {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .place-actions {
    gap: 0.5rem;
  }
  
  .place-actions .btn {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0px;
  }
}

/* Premium Footer */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

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

/* Scroll Reveal Animations (Triggered by JS) */
.reveal-element, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-element {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal-element.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Interactive Bamboo Soundboard */
.soundboard-container {
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  background: rgba(37, 27, 17, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  overflow: visible; /* Prevent glow box-shadow clipping */
}

.soundboard-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.soundboard-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bamboo-keys-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.75rem;
  height: 250px;
  padding: 1.5rem 0;
  overflow: visible; /* Prevent glow clipping on mobile/desktop */
  max-width: 100%;
}

.bamboo-key {
  position: relative;
  width: 45px;
  background: linear-gradient(to bottom, #cca43b, #8a6421);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px 22px 10px 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
  user-select: none;
}

/* Elegant gold bindings on modern bamboo tubes */
.bamboo-key::before,
.bamboo-key::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, var(--accent-gold) 50%, #8a6421 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.bamboo-key::before {
  top: 15%;
}

.bamboo-key::after {
  bottom: 15%;
}

.bamboo-key:hover {
  filter: brightness(1.15);
  box-shadow: 0 10px 25px rgba(204, 164, 59, 0.55), inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

/* Bamboo key vibration animation on click */
.bamboo-key.active-playing {
  animation: vibrate 0.15s linear infinite;
  transform: scale(0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  filter: brightness(0.9);
}

@keyframes vibrate {
  0% { transform: translate(1px, 1px) rotate(0deg) scale(0.95); }
  10% { transform: translate(-1px, -1px) rotate(-1deg) scale(0.95); }
  20% { transform: translate(-2px, 0px) rotate(1deg) scale(0.95); }
  30% { transform: translate(0px, 2px) rotate(0deg) scale(0.95); }
  40% { transform: translate(1px, -1px) rotate(1deg) scale(0.95); }
  50% { transform: translate(-1px, 2px) rotate(-1deg) scale(0.95); }
  60% { transform: translate(-2px, 1px) rotate(0deg) scale(0.95); }
  70% { transform: translate(2px, 1px) rotate(-1deg) scale(0.95); }
  80% { transform: translate(-1px, -1px) rotate(1deg) scale(0.95); }
  90% { transform: translate(2px, -2px) rotate(0deg) scale(0.95); }
  100% { transform: translate(1px, 1px) rotate(-1deg) scale(0.95); }
}

/* Custom heights for the scales to look like a real Jegog */
.key-note-1 { height: 100%; }
.key-note-2 { height: 90%; }
.key-note-3 { height: 80%; }
.key-note-4 { height: 70%; }
.key-note-5 { height: 60%; }
.key-note-6 { height: 50%; }

/* Instagram Activities Section Styling */
.instagram-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instagram-banner {
  max-width: 900px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, #1e150d 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

/* Subtle glow design element inside the banner */
.instagram-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(204, 164, 59, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.instagram-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.instagram-icon-wrapper {
  color: var(--accent-gold);
  background: rgba(204, 164, 59, 0.08);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(204, 164, 59, 0.2);
  transition: var(--transition-smooth);
}

.instagram-banner:hover .instagram-icon-wrapper {
  transform: translateY(-5px) scale(1.05);
  background: rgba(204, 164, 59, 0.12);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(204, 164, 59, 0.2);
}

.instagram-banner-title {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.instagram-banner-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-instagram:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 6px 22px rgba(204, 164, 59, 0.4);
  transform: translateY(-2px);
}

.btn-instagram svg {
  transition: transform 0.3s ease;
}

.btn-instagram:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .instagram-banner {
    padding: 3rem 1.5rem;
  }
  .instagram-banner-title {
    font-size: 1.75rem;
  }
  .instagram-banner-desc {
    font-size: 1rem;
  }
}


