@charset "UTF-8";

/* ==========================================================================
   Hero Split Screen - Horizontal Style
   ========================================================================== */

:root {
  --split-acoustic-primary: #d4a574;
  --split-acoustic-secondary: #8b6914;
  --split-acoustic-glow: rgba(212, 165, 116, 0.4);
  --split-electric-primary: #fca5a5;
  --split-electric-secondary: #b91c1c;
  --split-electric-glow: rgba(185, 28, 28, 0.4);
  --split-transition-duration: 0.7s;
  --split-transition-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Main Container */
.hero-split {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

/* Panel Base Styles */
.hero-split__panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--split-transition-duration) var(--split-transition-ease);
}

.hero-split__panel:hover {
  flex: 1.4;
}

.hero-split__panel:not(:hover) ~ .hero-split__panel,
.hero-split__panel:has(~ .hero-split__panel:hover) {
  flex: 0.8;
}

/* Background Images */
.hero-split__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--split-transition-ease),
              filter 0.8s var(--split-transition-ease);
  transform: scale(1.05);
}

.hero-split__panel:hover .hero-split__bg {
  transform: scale(1);
  filter: brightness(1.1) saturate(1.2);
}

.hero-split__panel--acoustic .hero-split__bg {
  background-image: url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?w=1920&auto=format&fit=crop&q=85');
}

.hero-split__panel--electric .hero-split__bg {
  background-image: url('https://images.unsplash.com/photo-1516924962500-2b4b3b99ea02?w=1920&auto=format&fit=crop&q=85');
}

/* Overlay Gradients */
.hero-split__overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
}

.hero-split__panel--acoustic .hero-split__overlay {
  background: linear-gradient(
    135deg,
    rgba(139, 105, 20, 0.85) 0%,
    rgba(45, 35, 15, 0.9) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-split__panel--electric .hero-split__overlay {
  background: linear-gradient(
    225deg,
    rgba(127, 29, 29, 0.85) 0%,
    rgba(60, 15, 15, 0.9) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-split__panel:hover .hero-split__overlay {
  opacity: 0.75;
}

/* Particle Effects */
.hero-split__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-split__panel:hover .hero-split__particles {
  opacity: 1;
}

.hero-split__particles::before,
.hero-split__particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-split__panel--acoustic .hero-split__particles::before {
  background: var(--split-acoustic-glow);
  top: 20%;
  left: 10%;
}

.hero-split__panel--acoustic .hero-split__particles::after {
  background: rgba(255, 200, 100, 0.3);
  bottom: 20%;
  right: 10%;
  animation-delay: -4s;
}

.hero-split__particles--neon::before {
  background: var(--split-electric-glow);
  top: 10%;
  right: 10%;
}

.hero-split__particles--neon::after {
  background: rgba(153, 27, 27, 0.3);
  bottom: 10%;
  left: 10%;
  animation-delay: -4s;
}

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

/* Content Container */
.hero-split__content {
  position: relative;
  z-index: 10;
  padding: 3rem 2.5rem;
  max-width: 480px;
  text-align: center;
}

/* Logo */
.hero-split__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--split-transition-ease);
  transform: translateY(0);
}

.hero-split__logo-img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  transition: all 0.5s var(--split-transition-ease);
}

.hero-split__panel:hover .hero-split__logo {
  transform: translateY(-8px) scale(1.08);
}

.hero-split__panel:hover .hero-split__logo-img {
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
}

/* Label */
.hero-split__label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  transition: all 0.5s var(--split-transition-ease);
}

.hero-split__panel--acoustic .hero-split__label {
  background: rgba(212, 165, 116, 0.15);
  color: var(--split-acoustic-primary);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.hero-split__panel--electric .hero-split__label {
  background: rgba(252, 165, 165, 0.15);
  color: #fecaca;
  border: 1px solid rgba(252, 165, 165, 0.4);
}

.hero-split__panel:hover .hero-split__label {
  transform: translateY(-4px);
  letter-spacing: 0.25em;
}

/* Title */
.hero-split__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #ffffff;
  transition: all 0.6s var(--split-transition-ease);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-split__title em {
  font-style: normal;
  display: block;
  transition: all 0.5s var(--split-transition-ease);
}

.hero-split__panel--acoustic .hero-split__title em {
  background: linear-gradient(135deg, var(--split-acoustic-primary), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-split__panel--electric .hero-split__title em {
  background: linear-gradient(135deg, #fca5a5, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-split__panel:hover .hero-split__title {
  transform: translateY(-6px);
}

.hero-split__panel:hover .hero-split__title em {
  letter-spacing: 0.02em;
}

/* Description */
.hero-split__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  transition: all 0.5s var(--split-transition-ease);
  opacity: 0.8;
}

.hero-split__panel:hover .hero-split__desc {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

/* Tags */
.hero-split__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0.7;
  transform: translateY(0);
  transition: all 0.6s var(--split-transition-ease);
  transition-delay: 0.1s;
}

.hero-split__panel:hover .hero-split__tags {
  opacity: 1;
  transform: translateY(-4px);
}

.hero-split__tag {
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-split__panel--acoustic .hero-split__tag {
  background: rgba(212, 165, 116, 0.2);
  color: var(--split-acoustic-primary);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.hero-split__panel--electric .hero-split__tag {
  background: rgba(252, 165, 165, 0.15);
  color: #fecaca;
  border: 1px solid rgba(252, 165, 165, 0.4);
}

.hero-split__tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.hero-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s var(--split-transition-ease);
  opacity: 0.85;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-split__panel:hover .hero-split__cta {
  opacity: 1;
  transform: translateY(-4px) scale(1.02);
}

.hero-split__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-split__panel--acoustic .hero-split__cta {
  background: linear-gradient(135deg, var(--split-acoustic-primary), var(--split-acoustic-secondary));
  color: #1a1a0a;
  box-shadow: 0 8px 30px var(--split-acoustic-glow);
  position: relative;
  overflow: hidden;
}

.hero-split__panel--electric .hero-split__cta {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  box-shadow: 0 8px 30px var(--split-electric-glow);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on buttons */
.hero-split__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-split__panel:hover .hero-split__cta::before {
  left: 100%;
}

.hero-split__cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-split__cta:hover svg {
  transform: translateX(6px);
}

/* Corner Decorations */
.hero-split__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.15;
  transition: all 0.6s var(--split-transition-ease);
  pointer-events: none;
}

.hero-split__panel:hover .hero-split__corner {
  opacity: 0.6;
  width: 100px;
  height: 100px;
}

.hero-split__corner--tl {
  top: 40px;
  left: 40px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.hero-split__corner--br {
  bottom: 40px;
  right: 40px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-split__panel--acoustic .hero-split__corner {
  color: var(--split-acoustic-primary);
}

.hero-split__panel--electric .hero-split__corner {
  color: #fca5a5;
}

/* Center Divider */
.hero-split__divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.hero-split__divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.hero-split__divider-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-split__divider-circle span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Badge */
.hero-badge {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  animation: badgeFadeIn 1s ease-out 0.5s both;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-badge__inner {
  padding: 0.75rem 1.75rem;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge__text {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.hero-badge__sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
  .hero-split {
    flex-direction: column;
  }

  .hero-split__panel {
    min-height: 50vh;
    min-height: 50dvh;
  }

  .hero-split__panel:hover {
    flex: 1.3;
  }

  .hero-split__divider {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: row;
    height: auto;
    width: 100%;
  }

  .hero-split__divider-line {
    flex: 1;
    height: 1px;
    width: auto;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3),
      transparent
    );
  }

  .hero-split__divider-circle {
    width: 50px;
    height: 50px;
  }

  .hero-badge {
    top: 80px;
  }

  .hero-split__corner--tl {
    top: 20px;
    left: 20px;
  }

  .hero-split__corner--br {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-split__content {
    padding: 2rem 1.5rem;
  }

  .hero-split__logo {
    width: 140px;
    margin-bottom: 1rem;
  }

  .hero-split__logo-img {
    max-height: 90px;
  }

  .hero-split__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-split__desc {
    font-size: 0.9rem;
  }

  .hero-split__tags {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-split__cta {
    opacity: 1;
    transform: translateY(0);
    padding: 0.875rem 1.5rem;
  }

  .hero-badge__inner {
    padding: 0.625rem 1.25rem;
  }

  .hero-badge__text {
    font-size: 0.8rem;
  }

  .hero-badge__sub {
    font-size: 0.65rem;
  }

  .hero-split__corner {
    width: 50px;
    height: 50px;
  }
}

/* ==========================================================================
   Page Load Animations
   ========================================================================== */

.hero-split__panel {
  animation: panelSlideIn 1s var(--split-transition-ease) both;
}

.hero-split__panel--acoustic {
  animation-delay: 0.1s;
}

.hero-split__panel--electric {
  animation-delay: 0.2s;
}

@keyframes panelSlideIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-split__content > * {
  animation: contentFadeUp 0.8s var(--split-transition-ease) both;
}

.hero-split__content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-split__content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-split__content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-split__content > *:nth-child(4) { animation-delay: 0.6s; }
.hero-split__content > *:nth-child(5) { animation-delay: 0.7s; }
.hero-split__content > *:nth-child(6) { animation-delay: 0.8s; }

@keyframes contentFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure smooth scrolling doesn't break layout */
html {
  scroll-behavior: smooth;
}

/* Hide default scrollbar for cleaner look during animation */
.hero-split::-webkit-scrollbar {
  display: none;
}
