/* AviTell - Pure HTML & CSS */
:root {
  --primary: #8c2bee;
  --primary-30: rgba(140, 43, 238, 0.3);
  --primary-60: rgba(140, 43, 238, 0.6);
  --bg-dark: #0a0a0a;
  --bg-light: #f7f6f8;
  --white: #fff;
  --white-40: rgba(255,255,255,0.4);
  --white-50: rgba(255,255,255,0.5);
  --white-60: rgba(255,255,255,0.6);
  --white-70: rgba(255,255,255,0.7);
  --white-80: rgba(255,255,255,0.8);
  --white-90: rgba(255,255,255,0.9);
  --black-5: rgba(0,0,0,0.05);
  --white-5: rgba(255,255,255,0.05);
  --white-10: rgba(255,255,255,0.1);
  --max-w-2xl: 672px;
  --max-w-4xl: 896px;
  --max-w-5xl: 1024px;
  --max-w-7xl: 1280px;
}

* { box-sizing: border-box; }

/* Spacing for fixed header - first section clears the nav */
#home { padding-top: 8rem; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Assistant", sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  margin: 0;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Crect x='0' y='0' width='6' height='6' fill='%23fbc42c'/%3E%3Crect x='9' y='0' width='6' height='6' fill='%23fb4226'/%3E%3Crect x='18' y='0' width='6' height='6' fill='%231ea4d8'/%3E%3C/svg%3E") 12 4, auto;
}

* {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Crect x='0' y='0' width='6' height='6' fill='%23fbc42c'/%3E%3Crect x='9' y='0' width='6' height='6' fill='%23fb4226'/%3E%3Crect x='18' y='0' width='6' height='6' fill='%231ea4d8'/%3E%3C/svg%3E") 12 4, auto;
}

::selection { background: var(--primary-30); }

/* Layout utilities */
.container { width: 100%; max-width: var(--max-w-7xl); margin: 0 auto; }
.container-sm { max-width: var(--max-w-2xl); margin: 0 auto; }
.container-md { max-width: var(--max-w-4xl); margin: 0 auto; }
.container-lg { max-width: var(--max-w-5xl); margin: 0 auto; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.text-center { text-align: center; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-10 { padding: 2.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

/* Typography */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-em { letter-spacing: 0.3em; }

h1, h2, h3 { font-family: "Almoni DL Light", "Assistant", sans-serif; font-weight: 300 !important; }

.text-white { color: var(--white); }
.text-white-40 { color: var(--white-40); }
.text-white-50 { color: var(--white-50); }
.text-white-60 { color: var(--white-60); }
.text-white-70 { color: var(--white-70); }
.text-white-80 { color: var(--white-80); }
.text-white-90 { color: var(--white-90); }
.text-primary { color: var(--primary); }
.bg-dark { background-color: var(--bg-dark); }
.bg-black-5 { background-color: var(--black-5); }
.bg-white-5 { background-color: var(--white-5); }
.bg-white-10 { background-color: var(--white-10); }
.border-t { border-top: 1px solid var(--white-5); }

/* Links & Hover */
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
.hover\:underline:hover { text-decoration: underline; }
.transition { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease; }

/* Circular images */
.circular-image-container {
  border-radius: 50%;
  overflow: hidden;
  animation: breathe 4s ease-in-out infinite;
}
.circular-image-container img { width: 100%; height: 100%; object-fit: cover; }
.circular-sm { width: 224px; height: 224px; }
.circular-md { width: 288px; height: 288px; }
.circular-lg { width: 224px; height: 224px; }
@media (min-width:768px) {
  .circular-lg { width: 288px; height: 288px; }
}
@media (min-width:1024px) {
  .circular-lg { width: 320px; height: 320px; }
}
.circular-mask {
  -webkit-mask-image: radial-gradient(circle, black 45%, transparent 75%);
  mask-image: radial-gradient(circle, black 45%, transparent 75%);
}

/* Background */
.hero-gradient {
  background: radial-gradient(circle at 50% 50%, rgba(140, 43, 238, 0.15) 0%, var(--bg-dark) 70%);
}
.noise-overlay {
  background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuCp2hHeccIMSicpnnPGLB_3Fsb2hJ53zlaECpxtqoSHuC805pNy1jUamfLPvt70GoAe_utlRZnB-U3XPXalsvCPMYw0vVd-qckuvkStcYSHCAzErStY1O66bwSQ7sQFo2RGaJ3VKpmsJhldGG-Pr0HAuQnoDz4hte3BdKZQYS3th3mX-n5Qv33yG2Ab-4CjlgP3nFRLDVeG57Qagr7oDjQm284rfIEFLN-J3bAtwBVr2ppgEZ9wZvOHF18rimFfPMkwm80UYzbR4T4);
  opacity: 0.05;
}
.bg-blend { background-size: cover; background-position: center; mix-blend-mode: screen; opacity: 0.4; pointer-events: none; }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Nav */
.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.menu-dots {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: all 0.3s ease;
}
.menu-dots .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
}
.menu-dots .dot:nth-child(1) { background: #fbc42c; }
.menu-dots .dot:nth-child(2) { background: #fb4226; }
.menu-dots .dot:nth-child(3) { background: #1ea4d8; }
nav a:hover .menu-dots,
.menu-dots.active { opacity: 1; transform: translateX(-50%) scale(1); }

/* Mobile menu - Pure CSS checkbox hack */
.menu-toggle { display: none; position: absolute; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 51;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle:checked ~ .menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle:checked ~ .menu-btn span:nth-child(2) { opacity: 0; }
.menu-toggle:checked ~ .menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.menu-toggle:checked ~ .mobile-menu { display: flex; }

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--white-90);
  padding: 0.5rem 0;
}
.mobile-menu a:hover { color: var(--primary); }

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-80);
  cursor: pointer;
  font-size: 1.5rem;
}
.menu-close:hover { color: var(--white); }

/* Grid sections */
.section-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.section-grid [style*="order:2"] { order: 2; }
.section-grid [style*="order:1"] { order: 1; }

/* Prose / content */
.prose { max-width: 65ch; }
.prose p { margin-bottom: 1em; }
.prose-invert { color: var(--white-80); }
.max-w-none { max-width: none; }
.group { /* Tailwind group - no-op for pure CSS */ }

/* FAQ details */
details {
  background: var(--white-5);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  transition: background 0.3s ease;
}
details:hover { background: var(--white-10); }
details summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
details summary::-webkit-details-marker { display: none; }
details[open] summary { margin-bottom: 1rem; }

/* Space between elements */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Borders & shapes */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3); }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-inside { list-style-position: inside; }
.w-72 { width: 18rem; }
.h-72 { height: 18rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2.-translate-y-1\/2 { transform: translate(-50%, -50%); }
.opacity-40 { opacity: 0.4; }
.mix-blend-screen { mix-blend-mode: screen; }
.pointer-events-none { pointer-events: none; }

/* Footer gradient line */
.footer-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary-60), transparent);
}
.vertical-text {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5em;
  color: var(--white-10);
  display: block;
}
.lg\:block { display: none; }

/* Logo hover */
.logo-link:hover img { transform: scale(1.05); }
.logo-link img { transition: transform 0.3s ease; }

/* Contact email */
.email-link:hover { transform: scale(1.05); }
.email-link { transition: transform 0.3s ease; }

/* Social icons */
.social-link {
  color: var(--white-40);
  transition: all 0.3s ease;
}
.social-link:hover {
  color: var(--primary);
  transform: scale(1.1);
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: 24px;
}
footer .social-link svg { width: 24px; height: 24px; }

/* Load-in animations (no JS - run on page load) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
.fade-scale-in {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-scale-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.animate-slide-left { animation: slideInLeft 0.6s ease-out forwards; }
.animate-slide-right { animation: slideInRight 0.6s ease-out forwards; }
.animate-scale { animation: scaleIn 0.6s ease-out forwards; }

/* Responsive */
.text-white-70 { color: var(--white-70); }
nav a:hover { color: var(--white); }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:hidden { display: none; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:items-center { align-items: center; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-5xl { font-size: 3rem; }
  .flex-1 { flex: 1; }
  .flex-shrink-0 { flex-shrink: 0; }
  .menu-btn { display: none !important; }
  .desktop-nav { display: flex !important; }
  .mobile-menu { display: none !important; }
  .logo-link img { height: 80px; }
  .section-grid { grid-template-columns: 1fr 1fr; }
  .py-12 { padding-top: 6rem; padding-bottom: 6rem; }
  .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .px-6 { padding-left: 3rem; padding-right: 3rem; }
  .circular-sm { width: 288px; height: 288px; }
  .circular-md { width: 288px; height: 288px; }
  .circular-lg { width: 320px; height: 320px; }
}

@media (max-width: 767px) {
  .desktop-nav { display: none !important; }
  .menu-btn { display: flex; }
  .logo-link img { height: 64px; }
  .text-4xl { font-size: 1.75rem; }
  .text-3xl { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block !important; }
  .lg\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:w-80 { width: 20rem; }
  .lg\:h-80 { height: 20rem; }
  .circular-lg { width: 320px; height: 320px; }
  .px-6 { padding-left: 5rem; padding-right: 5rem; }
}

/* Speech bubble (about page) */
.speech-bubble { position: relative; }
.speech-bubble-tail {
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.2));
  backdrop-filter: blur(12px);
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid var(--white-10);
}
@media (max-width:767px) {
  .speech-bubble-tail {
    right: auto; left: 50%; top: auto; bottom: -16px;
    transform: translateX(-50%);
    border-top: 16px solid var(--white-10);
    border-bottom: none;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
  }
}

/* Discography iframe */
#discography-iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 120px);
  border: 0;
  display: block;
}
