/*=============================================
=            CSS VARIABLES & FONTS            =
=============================================*/

/* Color & Spacing Variables */
:root {
    --color-bg: #26272f;
    --color-bg-dark: #1c1c19;
    --color-accent: #f6eaea;
    --color-accent-light: #EDE6D5;
    --color-footer-divider: #181817;

    --header-height: 400px;
    --header-height-shrink: 70px;
    --nav-gap: 40px;
    --footer-padding: 60px 20px;
}

/* Custom Font */
@font-face {
    font-family: 'Firlest';
    src: url('assets/fonts/firlest-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/*=============================================
=                RESET & BASE                 =
=============================================*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Montserrat', 'Overpass', Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: var(--color-accent);
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6,
.nav, .nav a,
.learn-more, 
.footer, .footer a, .footer h3, .footer p {
    font-family: 'Poppins', 'Montserrat', 'Overpass', Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Utility Elements */
#sound-wave-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: spin 130s linear infinite;
    opacity: 0.2;
}

#sound-wave {
    display: block;
    margin: 0 auto;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #191915;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1000;
}

/*=============================================
=                 HEADER/LAYOUT               =
=============================================*/

.header {
    position: relative;
    top: 0;
    width: 100%;
    background-color: var(--color-bg);
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1000;
    box-shadow: none;
    transition: box-shadow 0.3s;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin: 0 auto !important;
}

.header-logo img {
    max-width: 160px;
    max-height: 160px;
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto !important;
}

.header-mic {
    width: 300px;
    margin: 0 auto;
}

.header-text {
    font-family: 'Firlest', serif;
    font-size: 24px;
    color: var(--color-accent-light);
    display: none;
}

/*=============================================
=                NAVIGATION                  =
=============================================*/

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--nav-gap);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 24px 0;
}

.nav a {
    position: relative;
    color: var(--color-accent-light);
    text-decoration: none;
    padding: 4px 0;
    font-size: inherit;
    transition: color 0.2s;
}

.nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.nav a:hover,
.nav a:focus {
    color: var(--color-accent);
}

.nav a:hover::after,
.nav a:focus::after {
    width: 100%;
}

/* Burger Menu (Mobile) */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 17px;
    right: 10px;
    z-index: 1100;
}

.burger-menu .line {
    width: 25px;
    height: 3px;
    background-color: var(--color-bg);
    margin: 3px 0;
    transition: 0.4s;
}

.burger-menu.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/*=============================================
=              MAIN CONTENT AREA             =
=============================================*/

/* Splash Screen / Hero */
.splash-screen {
    text-align: center;
    margin: 0 auto;
    flex: 1;
    border-radius: 12px;
}

/* Tagline (Home) */
.tagline {
    font-size: 21px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 20px;
    color: var(--color-accent);
    font-weight: 300;
    max-width: 580px;
    text-align: center;
}

/* Section Rows (About, Services, Productions) */
.section-row {
    display: flex;
    gap: 4vw;
    padding: 40px 80px;
    background-size: cover;
    max-width: 90vw;
    margin: 0 auto;
}

.section-box {
    flex: 1;
    background: rgb(28, 28, 25);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--color-accent-light);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.section-box h2 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--color-accent);
}

.section-box p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.section-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.learn-more {
    display: block;
    width: 40%;
    margin: 0 auto;
    padding: 8px 12px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
    line-height: 1.5em;
    transition: background-color 0.3s, color 0.3s;
}

.learn-more:hover {
    background-color: #3c352c;
    color: #eae5de;
}

/* Page Content (Generic "Page" class for articles/text blocks) */
.page {
    max-width: 800px;
    margin: 40px auto 40px;
    padding: 20px;
    background-color: var(--color-bg-dark);
    color: var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: justify;
    line-height: 1.8;
}

.page h2 {
    font-size: 26px;
    color: var(--color-accent);
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page p {
    font-size: 18px;
    color: var(--color-accent);
}

.page p em {
    font-style: normal;
    color: var(--color-accent);
}

.page a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: bold;
}

.page a:hover {
    color: var(--color-accent-light);
}

.page img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}

.page ul,
.page ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.page ul li,
.page ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page .cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.page .cta-button:hover {
    background-color: #3c352c;
    color: #eae5de;
}

.page blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 4px solid var(--color-accent);
    background-color: #2a2a28;
    color: var(--color-accent);
    font-style: italic;
}

/*=============================================
=                  FOOTER                     =
=============================================*/

.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-accent);
    padding: var(--footer-padding);
    width: 100%;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.footer-left h3,
.footer-right p {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
}

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.footer-nav a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 18px;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-right a {
    font-size: 16px;
    margin-right: 15px;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2em;
}

.footer-right a:hover {
    color: #f1c40f;
}

.footer-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--color-footer-divider);
    margin: 40px auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    font-size: 14px;
}

.footer-left-bottom,
.footer-right-bottom {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 8px;
}

.footer-right-bottom .social-links {
    display: flex;
    gap: 15px;
    margin-top: -20px;
}

.footer-right-bottom .social-links a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-right-bottom .social-links a:hover {
    color: var(--color-accent);
}

/* Footer site credit and address (centered, full width) */
/* Old centered footer address (kept for backwards compat if used) */
.footer-address { max-width: 1200px; margin: 10px auto 0; text-align: center; line-height: 1.45; opacity: 0.92; }
.footer-address p { margin: 2px 0; }
.footer-address a { color: var(--color-accent); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-address a:hover { color: #fff; border-bottom-color: #fff; }
.site-credit { margin: 0; }

/* New left-column address block */
.footer-address-block { text-align: left; line-height: 1.5; display: flex; flex-direction: row; align-items: flex-start; gap: 12px; }
.footer-address-title { font-weight: 700; margin-bottom: 6px; color: #ffffff !important; }
.footer-logo-small { width: 90px; height: auto; opacity: 0.95; margin-bottom: 0; }
.copyright-line { margin: 0; text-align: left; }
.copyright-line .dot { opacity: 0.6; margin: 0 6px; }
.site-credit-inline a { color: var(--color-accent); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.site-credit-inline a:hover { color: #fff; border-bottom-color: #fff; }
/* Inline site credit placed above copyright */
.site-credit-line { margin: 0 0 6px 0; font-size: 13px; opacity: 0.85; text-align: left; }
.site-credit-line a { color: var(--color-accent); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.site-credit-line a:hover { color: #fff; border-bottom-color: #fff; }

@media (max-width: 768px) {
  .footer-address-block { flex-direction: column; align-items: center; text-align: center; }
}

/* QR Code Container (Full Viewport Centering) */
#qr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#qr img {
    max-width: 80%;
}

/*=============================================
=             SOCIAL ICONS/STYLING            =
=============================================*/

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
    color: #ffffff;
}

.social-links a .icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: transform 0.3s ease, fill 0.3s;
    margin-bottom: 5px;
}

.social-links a:hover .icon svg,
.social-links a:focus .icon svg {
    transform: scale(1.1);
    fill: #fff;
}

/*=============================================
=         PARALLAX & BACKGROUND ELEMENTS       =
=============================================*/

.parallax-bg,
.parallax-dagger,
.parallax-c {
    width: 100%;
    min-height: 220px;
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    opacity: .2;
}

@media (max-width: 1024px) {
    .parallax-bg,
    .parallax-dagger,
    .parallax-c {
        background-attachment: scroll;
        min-height: 120px;
    }
}

/* Assign Parallax Images */
.parallax-bg {
    background-image: url('https://www.felbrynstudios.com/assets/img/bg.png');
}
.parallax-dagger {
    background-image: url('https://www.felbrynstudios.com/assets/img/dbg.png');
}
.parallax-c {
    background-image: url('https://www.felbrynstudios.com/assets/img/fbg.png');
}

/*=============================================
=                 MEDIA QUERIES               =
=============================================*/

/*------------------------
  Tablet & Below (≤1024px)
-------------------------*/
@media (max-width: 1024px) {
    /* Header Adjustments */
    .header-logo {
        flex-direction: row;
        justify-content: space-between;
    }
    .header-mic {
        width: 95%;
        margin-top: -8px;
        margin-left: -20px;
    }
    .header-text {
        font-size: 24px;
        display: block;
        margin-left: 10px;
    }

    /* Navigation */
    .nav {
        gap: 15px;
        justify-content: center;
    }
    .nav a {
        font-size: 18px;
    }

    /* Tagline */
    .tagline {
        font-size: 24px;
        max-width: 95%;
        line-height: 1.6;
    }

    /* Section Boxes */
    .section-row {
        flex-direction: column;
        gap: 25px;
        padding: 0;
    }
    .section-box {
        max-width: 85%;
        padding: 20px;
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* Footer Layout */
    .footer-content {
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    .social-links {
        gap: 15px;
    }

    /* About Section */
    .about-content {
        padding: 25px;
    }
    .about-section h2 {
        font-size: 28px;
    }
    .about-section p {
        font-size: 18px;
    }

    /* Splash Screen */
    .splash-screen {
        text-align: center;
        padding: 10px 20px 20px;
        margin: 0 auto;
        flex: 1;
    }
}

/*------------------------
  iPhone Pro & Below (≤844px)
-------------------------*/
@media (max-width: 844px) {
    .header-logo {
        flex-direction: column;
        align-items: center;
    }
    .header-mic {
        width: 95%;
        margin-top: -8px;
        margin-left: -20px;
    }
    .header-text {
        font-size: 20px;
        display: block;
        margin-top: 8px;
    }
    .nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 15px;
    }
    .nav a {
        font-size: 18px;
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .tagline {
        font-size: 20px;
        width: 100%;
        padding: 15px;
        line-height: 1.5;
    }
    .section-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0;
    }
    .section-box {
        width: 100%;
        padding: 20px;
        font-size: 16px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        margin-bottom: 25px;
    }
    .learn-more {
        padding: 8px 12px;
        font-size: 18px;
    }
    .footer-content {
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .social-links {
        justify-content: center;
        gap: 10px;
    }
    .about-content {
        padding: 20px;
    }
    .about-section h2 {
        font-family: "Merriweather", serif;
        font-size: 24px;
    }
    .about-section p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .splash-screen {
        padding: 10px 20px 20px;
        border-radius: 8px;
    }
}

/*------------------------
  Mobile & Below (≤768px)
-------------------------*/
@media (max-width: 768px) {
    /* Header becomes column */
    .header {
        flex-direction: column;
        height: auto;
        padding: 100px 20px;
    }

    .header-logo img {
        max-width: 500px;
        max-height: 500px;
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0 auto;
        margin-top: 50px;
    }
    
    .header-logo {
        margin-bottom: 0;
    }
    .header-text {
        font-size: 18px;
        display: block;
        margin-top: 5px;
    }
    /* Show burger menu, hide nav by default */
    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav {
        display: none;
        position: absolute;
        top: var(--header-height-shrink);
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        margin-top: 0;
    }
    .nav.active {
        display: flex;
    }
    .nav a {
        font-size: 18px;
        color: var(--color-accent-light);
        text-decoration: none;
        padding: 10px;
        transition: color 0.3s;
    }
    .nav a:hover {
        color: var(--color-accent);
    }

    /* Splash Screen on Mobile */
    .splash-screen {
        text-align: center;
        padding: 10px 20px 20px;
        margin: 0 auto;
        flex: 1;
        border-radius: 8px;
    }

    .tagline {
        font-size: 21px;
        margin: 0 auto;
        line-height: 1.6;
        padding: 20px;
        color: var(--color-accent);
        font-weight: 300;
        max-width: 580px;
    }

    .section-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    .section-box {
        width: 100%;
        max-width: 95%;
        padding: 15px;
        font-size: 14px;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
    }
    .learn-more {
        padding: 6px 10px;
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .social-links {
        justify-content: center;
        gap: 8px;
    }


    .team-member.reverse-on-desktop {
        flex-direction: column !important;
    }

    .about-section {
        margin-top: 100px;
        color: var(--color-accent);
    }
}

/*------------------------
  Small Mobile (≤480px)
-------------------------*/
@media (max-width: 480px) {
    .section-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    .section-box {
        width: 100%;
        max-width: 95%;
        padding: 15px;
        font-size: 14px;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
    }
    .learn-more {
        padding: 6px 10px;
        font-size: 16px;
    }
    .about-section {
        margin-top: 100px;
        color: var(--color-accent);
    }
}

/* === ABOUT PAGE ULTIMATE DESIGN === */

#about-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 420px;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(120deg, #23232a 60%, #1c1c19 100%);
}
#audio-waves-canvas {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 420px;
  display: block;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
#particles-js {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 420px;
  z-index: 2;
  pointer-events: none;
}

.about-hero {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding-top: 60px;
  background: none;
}
.about-hero-inner {
  text-align: center;
  color: var(--color-accent-light);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}
.about-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #f6eaea;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px #1c1c19cc;
}
.about-hero .tagline {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: #EDE6D5;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.about-media {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.about-media audio, .about-media video {
  border-radius: 12px;
  background: #19191f;
  box-shadow: 0 2px 16px #0008;
  max-width: 90vw;
}

/* Parallax About */
.parallax-about {
  min-height: 120px;
  opacity: 0.18;
  background-blend-mode: overlay;
}

/* About Main Layout */
.about-main {
  background: linear-gradient(120deg, #23232a 60%, #1c1c19 100%);
  padding: 0 0 60px 0;
  position: relative;
  z-index: 2;
}
.about-main-inner {
  display: flex;
  flex-direction: row;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 0 24px;
}
.about-main-left, .about-main-right {
  flex: 1 1 0;
  min-width: 0;
}
.about-text {
  background: rgba(28,28,25,0.85);
  border-radius: 18px;
  box-shadow: 0 4px 32px #0005;
  padding: 36px 32px;
  color: var(--color-accent-light);
  font-family: 'Merriweather', serif;
  font-size: 1.18rem;
  line-height: 1.85;
  margin-bottom: 32px;
  backdrop-filter: blur(2.5px);
}
.about-text h2 {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #f3c987;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.about-text p {
  font-size: 1.08em;
  color: #f6eaea;
  margin-bottom: 1.2em;
}

/* Team Bios */
.staff-bios {
  margin-top: 0;
  background: none;
}
.staff-bios h2 {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 2rem;
  color: #f3c987;
  margin-bottom: 24px;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.bios-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.bio-card {
  background: rgba(28,28,25,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 32px #0007;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.bio-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 48px #000a;
}
.bio-card h3 {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #f3c987;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bio-image {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 16px #0007;
  background: #23232a;
  cursor: pointer;
}
.bio-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.5s cubic-bezier(.4,2,.6,1);
}
.bio-img-main { opacity: 1; z-index: 1; }
.bio-img-hover { opacity: 0; z-index: 2; }
.bio-image:hover .bio-img-main { opacity: 0; }
.bio-image:hover .bio-img-hover { opacity: 1; }
.bio-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(0deg, #19191f 90%, transparent 100%);
  color: #f3c987;
  text-align: center;
  padding: 18px 0 8px 0;
  z-index: 3;
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.01em;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bio-soundwave {
  display: block;
  width: 48px;
  height: 16px;
  margin: 0 auto;
  background: url('data:image/svg+xml;utf8,<svg width="48" height="16" viewBox="0 0 48 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="6" width="4" height="4" rx="2" fill="%23f3c987"/><rect x="10" y="2" width="4" height="12" rx="2" fill="%23f3c987"/><rect x="18" y="4" width="4" height="8" rx="2" fill="%23f3c987"/><rect x="26" y="1" width="4" height="14" rx="2" fill="%23f3c987"/><rect x="34" y="4" width="4" height="8" rx="2" fill="%23f3c987"/><rect x="42" y="6" width="4" height="4" rx="2" fill="%23f3c987"/></svg>') center/contain no-repeat;
  opacity: 0.7;
  transition: opacity 0.3s, filter 0.3s;
  filter: drop-shadow(0 0 6px #f3c98788);
}
.bio-image:hover .bio-soundwave {
  opacity: 1;
  filter: drop-shadow(0 0 16px #f3c987cc);
}
.bio-info {
  font-family: 'Merriweather', serif;
  color: #f6eaea;
  font-size: 1.05em;
  text-align: left;
  margin-top: 8px;
  line-height: 1.7;
}

.about-community {
  margin-top: 48px;
  background: rgba(28,28,25,0.85);
  border-radius: 14px;
  box-shadow: 0 2px 16px #0005;
  padding: 24px 20px;
  color: #f3c987;
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.1em;
  text-align: center;
}
.about-community-text {
  color: #f6eaea;
  font-size: 1em;
  margin-top: 8px;
}

/* Scroll Fade-in Animation */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}
.scroll-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .about-main-inner {
    flex-direction: column;
    gap: 36px;
    padding: 32px 8vw 0 8vw;
  }
  .bios-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-text {
    padding: 28px 18px;
    font-size: 1.05rem;
  }
}
@media (max-width: 700px) {
  #about-hero-bg, #audio-waves-canvas, #particles-js {
    height: 260px !important;
    min-height: 0;
  }
  .about-hero {
    min-height: 180px;
    padding-top: 30px;
  }
  .about-hero-inner h1 {
    font-size: 2rem;
  }
  .about-main-inner {
    padding: 16px 2vw 0 2vw;
  }
  .about-text {
    padding: 18px 8px;
    font-size: 1em;
  }
  .bio-image {
    width: 100px; height: 100px;
  }
}
@media (max-width: 480px) {
  .about-hero-inner h1 {
    font-size: 1.3rem;
  }
  .about-hero .tagline {
    font-size: 1rem;
  }
  .about-main-inner {
    gap: 18px;
  }
  .bio-card {
    padding: 18px 6px 12px 6px;
  }
}
