/* =========================================
   AGAH SOUND - ELEGANT DARK THEME
   ========================================= */

   :root {
    --bg-deep: #000000;
    --bg-sec: #050505;
    
    --accent-gold: #cba153;
    --accent-champagne: #F7E7CE;
    
    --text-white: #ffffff;
    --text-silver: #a0a0a0;
    
    --glass-bg: rgba(20, 20, 22, 0.4);
    --glass-border: rgba(203, 161, 83, 0.2);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

img, svg {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= BACKGROUND DECOR ================= */
.music-wallpaper {
    position: fixed; inset: 0; z-index: -10;
    overflow: hidden; pointer-events: none;
    background: linear-gradient(150deg, #3d2f16 0%, #171107 25%, #050505 50%, #000000 100%);
}

.music-symbol {
    position: absolute;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    opacity: 0.03;
    animation: floatSymbol 40s linear infinite;
    user-select: none;
}

.symbol-1 { font-size: 15vw; top: 5%; left: 5%; animation-duration: 60s; }
.symbol-2 { font-size: 10vw; bottom: 15%; right: 10%; animation-duration: 45s; animation-direction: reverse; }
.symbol-3 { font-size: 12vw; top: 30%; right: 5%; animation-duration: 35s; }
.symbol-4 { font-size: 8vw; top: 60%; left: 10%; animation-duration: 70s; }
.symbol-5 { font-size: 14vw; top: 50%; right: 30%; animation-duration: 50s; animation-direction: reverse; }
.symbol-6 { font-size: 6vw; bottom: 10%; left: 40%; animation-duration: 30s; }

@keyframes floatSymbol {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.bg-staves {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; gap: 4vh;
    opacity: 0.02;
    transform: rotate(-5deg) scale(1.5);
}

.stave-line {
    width: 100%; height: 2px;
    background: var(--text-white);
}

/* ================= CENTRAL HEADER ================= */
.central-header {
    position: fixed; left: 0; top: 0; width: 100%;
    display: flex; flex-direction: column; align-items: center;
    padding-top: 30px; z-index: 1000;
    transition: var(--transition);
    pointer-events: none;
}
.central-header > * { pointer-events: auto; }

.central-header.scrolled {
    padding-top: 20px;
}

.logo-wrapper {
    margin-bottom: 25px;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.central-header.scrolled .logo-wrapper {
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(-20px);
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.main-logo {
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    transition: var(--transition);
}

.main-logo:hover {
    transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(203, 161, 83, 0.4));
}

.glass-oval {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex; gap: 30px;
    transition: var(--transition);
}

.central-header.scrolled .glass-oval {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-color: rgba(203, 161, 83, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    padding: 12px 35px;
}

/* ================= LANGUAGE SWITCHER ================= */
.lang-switcher {
    position: absolute; top: 15px; right: 5%; display: flex; align-items: center; gap: 15px;
    background: rgba(10, 10, 10, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 30px; padding: 8px 18px;
    transition: var(--transition); z-index: 1001; pointer-events: auto;
}
.lang-switcher a { font-size: 0.85rem; font-family: var(--font-sans); color: var(--text-silver); font-weight: 300; letter-spacing: 1px; }
.lang-switcher a.active { color: var(--accent-gold); font-weight: 600; }
.lang-switcher a:hover { color: var(--text-white); }
.lang-switcher span { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

.nav-links {
    display: flex; list-style: none; gap: 40px;
}

.nav-links a {
    font-size: 13px; font-weight: 300; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-silver);
    position: relative;
    padding: 5px 0;
}

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

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

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

/* MOBILE NAV */
.mobile-menu-btn {
    display: none; position: fixed; top: 22px; right: 25px; z-index: 1000;
    background: rgba(10,10,10,0.8); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; width: 50px; height: 50px; cursor: pointer; backdrop-filter: blur(10px);
}
.mobile-menu-btn .bar {
    width: 20px; height: 1px; background: var(--accent-gold);
    margin: 4px auto; transition: 0.3s;
}

.mobile-nav {
    position: fixed; inset: 0; background: rgba(0,0,0,0.98); z-index: 999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-nav.active { opacity: 1; pointer-events: auto; }
.mobile-nav-links { list-style: none; text-align: center; }
.mobile-nav-links li { margin: 30px 0; }
.mobile-nav-links a { font-family: var(--font-serif); font-size: 2rem; color: var(--text-white); }
.mobile-nav-links a:hover { color: var(--accent-gold); }

/* MOBILE LANG SWITCHER */
.mobile-lang-switcher {
    display: flex; justify-content: center; align-items: center; gap: 20px;
    margin-bottom: 40px !important; margin-top: 0 !important;
}
.mobile-lang-switcher a {
    font-family: var(--font-sans); font-size: 1.3rem; 
    color: var(--text-silver); font-weight: 300; letter-spacing: 2px;
}
.mobile-lang-switcher a.active { color: var(--accent-gold); font-weight: 600; }
.mobile-lang-switcher span { color: rgba(255,255,255,0.2); font-size: 1.2rem; }


/* ================= TYPOGRAPHY HELPERS ================= */
.calligraphy-text {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    margin-bottom: -15px;
    z-index: 2; position: relative;
}

.serif-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold);
}

/* ================= BUTTONS ================= */
.explore-btn {
    display: inline-flex; align-items: center; gap: 15px;
    margin-top: 40px; cursor: pointer;
}
.explore-btn span {
    font-family: var(--font-serif); font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent-gold);
}
.line-arrow {
    width: 50px; height: 1px; background: var(--accent-gold);
    position: relative; transition: var(--transition);
}
.line-arrow::after {
    content: ''; position: absolute; right: 0; top: -4px;
    width: 8px; height: 8px; border-right: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold); transform: rotate(-45deg);
}
.explore-btn:hover .line-arrow { width: 80px; }

/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding-top: 150px;
}
.hero-inner {
    display: flex; justify-content: space-between; align-items: center; gap: 50px;
    position: relative; z-index: 10;
}
.hero-content { flex: 1.2; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }

.hero-title {
    font-size: 5rem; font-family: var(--font-serif); font-weight: 300;
    text-transform: uppercase; line-height: 1.1; margin-bottom: 30px;
    display: flex; flex-direction: column;
}
.hero-desc {
    font-size: 1.1rem; color: var(--text-silver);
    max-width: 600px; font-weight: 300;
}

/* Vinyl Hero - True Vinyl Record Style */
.spinning-vinyl-hero {
    width: 380px; height: 380px;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.05) 100%),
        repeating-radial-gradient(circle at center, #111, #111 2px, #050505 3px, #050505 5px);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    position: relative; animation: spinVinyl 6s linear infinite;
    box-shadow: 0 0 60px rgba(0,0,0,0.9), inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 0 6px #030303;
}
.spinning-vinyl-hero::before {
    content: ''; position: absolute; width: 140px; height: 140px; border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
    z-index: 1;
}
.spinning-vinyl-hero::after {
    content: ''; position: absolute; width: 12px; height: 12px; border-radius: 50%;
    background: #000; z-index: 10;
    box-shadow: 0 0 3px rgba(255,255,255,0.5);
}
.spinning-vinyl-hero img { 
    width: 90px; height: 90px; border-radius: 50%; opacity: 0.9;
    object-fit: contain; z-index: 5; filter: brightness(0);
}

@keyframes spinVinyl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Base Audio Waves */
.hero-audio-waves {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 120px;
    display: flex; align-items: center; justify-content: center; gap: 5px; padding: 0 5%;
    opacity: 0.2; z-index: 5;
}
.hero-wave-bar {
    flex: 1; border-radius: 5px;
    background: linear-gradient(to top, transparent, var(--accent-gold) 50%, transparent);
    animation: eqPlay 1.5s ease-in-out infinite alternate;
}
@keyframes eqPlay { 0% { height: 10px; } 100% { height: 100px; } }

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 20; opacity: 0.6; transition: var(--transition);
}
.scroll-down-btn:hover { opacity: 1; transform: translateX(-50%) translateY(-5px); }
.scroll-down-btn span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-silver); }
.mouse-icon { width: 22px; height: 36px; border: 1px solid var(--accent-gold); border-radius: 12px; position: relative; }
.mouse-icon .wheel {
    width: 4px; height: 8px; background: var(--accent-gold); border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* ================= COMMON SECTIONS ================= */
.section { padding: 120px 0; }

.section-heading { text-align: center; margin-bottom: 70px; }
.heading-line { width: 60px; height: 1px; background: var(--accent-gold); margin: 20px auto 0; }
.heading-line.left { margin: 20px 0 30px 0; }

/* ================= WORKS & SPOTIFY ================= */
.works-section { position: relative; }

.spotify-centerpiece {
    display: flex; gap: 40px; align-items: center;
    background: var(--glass-bg); backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px; padding: 50px;
    position: relative; overflow: hidden;
}

.spotify-glass { flex: 1; z-index: 2; width: 100%; }
.spotify-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 30px; }
.spot-logo { width: 40px; }
.spotify-header h3 { font-family: var(--font-sans); font-weight: 300; font-size: 1.5rem; letter-spacing: 1px; }

.iframe-container { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); width: 100%; }

/* YOUTUBE SECTION */
.yt-videos-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px;
}
.yt-video-card {
    border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    background: var(--glass-bg); border: 1px solid rgba(255,255,255,0.05);
}

.yt-channel-banner {
    display: flex; justify-content: center; text-align: center;
    background: var(--glass-bg); backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px; padding: 40px;
}
.yt-text-box h3 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 15px; }
.yt-text-box p { color: var(--text-silver); font-weight: 300; font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }


/* TICKER */
.platforms-wrapper { margin-top: 100px; text-align: center; }
.platforms-info { margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 20px; }
.platforms-title { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.platforms-desc { color: var(--text-silver); font-size: 1.15rem; line-height: 1.8; font-weight: 300; }
.platforms-desc strong { color: var(--text-white); font-weight: 600; text-shadow: 0 0 10px rgba(255,255,255,0.2); }

.platforms-glass-container {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 161, 83, 0.2);
    border-radius: 60px;
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(203, 161, 83, 0.05);
    overflow: hidden;
}
.platforms-glass-container::before, .platforms-glass-container::after {
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 5; pointer-events: none;
}
.platforms-glass-container::before { left: 0; background: linear-gradient(to right, rgba(10,10,10,0.9), transparent); border-radius: 60px 0 0 60px; }
.platforms-glass-container::after { right: 0; background: linear-gradient(to left, rgba(10,10,10,0.9), transparent); border-radius: 0 60px 60px 0; }

.platforms-ticker { width: 100%; overflow: hidden; }
.ticker-track { display: flex; gap: 80px; align-items: center; width: max-content; animation: tikiScroll 40s linear infinite; padding: 0 40px; }
.platform-logo, .ticker-track img { height: 45px; display: flex; justify-content: center; align-items: center; }
.ticker-track img { filter: grayscale(100%) opacity(0.4); transition: var(--transition); }
.ticker-track img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.15) translateY(-5px); }

@keyframes tikiScroll { to { transform: translateX(-50%); } }

/* ================= ABOUT SECTION ================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-text-area p { color: var(--text-silver); font-weight: 300; margin-bottom: 25px; font-size: 1.05rem; }

.about-visual-area { display: flex; justify-content: center; align-items: center; }
.clean-logo-display {
    max-width: 300px;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(203, 161, 83, 0.15));
    transition: var(--transition);
}
.clean-logo-display:hover { filter: drop-shadow(0 0 50px rgba(203, 161, 83, 0.3)); transform: scale(1.05); }

/* ================= SOCIAL SECTION ================= */
.social-subtitle { color: var(--text-silver); font-weight: 300; margin-bottom: 10px; }
.email-direct a { color: var(--accent-gold); font-family: var(--font-serif); font-size: 1.5rem; }
.email-direct a:hover { color: var(--text-white); }

.super-social-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 25px;
    margin-top: 50px;
}

.social-mega-card {
    background: var(--glass-bg); border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px; border-radius: 20px; text-align: center;
    width:calc(33.333% - 20px); min-width: 250px;
    transition: var(--transition);
}

.social-icon { height: 60px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
.social-icon img, .social-icon svg { height: 45px; width: 45px; transition: var(--transition); opacity: 0.9; }

/* Individual Brand Customizations */
.social-mega-card.tw .social-icon img { filter: invert(1); } /* X is black natively, must invert */
.social-mega-card.yt svg { color: #ff0000; } /* YouTube Brand Red */

.social-mega-card h4 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 10px; font-weight: 400; }
.social-mega-card p { font-size: 0.85rem; color: var(--text-silver); text-transform: uppercase; letter-spacing: 1px; }

.social-mega-card:hover { border-color: var(--accent-gold); background: rgba(203, 161, 83, 0.05); transform: translateY(-10px); }
.social-mega-card:hover .social-icon img, .social-mega-card:hover .social-icon svg { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.social-mega-card.tw:hover .social-icon img { filter: invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.social-mega-card.yt:hover .social-icon svg { filter: drop-shadow(0 0 15px rgba(255,0,0,0.5)); }
.social-mega-card:hover h4 { color: var(--accent-gold); }

/* ================= FOOTER ================= */
.elegant-footer { padding: 80px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; }
.footer-logo img { height: 60px; opacity: 0.5; margin-bottom: 30px; }
.footer-quote { font-size: 2.5rem; margin-bottom: 30px; opacity: 0.7; }
.footer-bottom { color: var(--text-silver); font-size: 0.9rem; font-weight: 300; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero { min-height: 100vh; padding-bottom: 250px; }
    .hero-inner { flex-direction: column; text-align: center; padding-bottom: 0px; margin-top: 50px; }
    .hero-content, .hero-title, .hero-desc { text-align: center; align-items: center; margin: 0 auto; margin-bottom: 20px;}
    .hero-title { font-size: 3rem; }
    .hero-desc { font-size: 1rem; }
    .spinning-vinyl-hero { width: 250px; height: 250px; }
    .spinning-vinyl-hero::before { width: 80px; height: 80px; }
    .spinning-vinyl-hero img { width: 50px; height: 50px; }
    .scroll-down-btn { bottom: 150px; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .yt-videos-grid { grid-template-columns: 1fr; }
    .heading-line.left { margin: 20px auto 30px auto; }
    .spotify-centerpiece { flex-direction: column; }
    .spotify-decor { display: none; }
}

@media (max-width: 768px) {
    .central-header { padding-top: 20px; align-items: flex-start; padding-left: 25px; }
    .glass-oval { display: none; }
    .mobile-menu-btn { display: block; top: 27px; } /* Re-align with new logo size */
    .central-header .lang-switcher { display: none; } /* Hide floating button */
    .main-logo { height: 65px; } /* Resize logo */
    .hero-title { font-size: 2.8rem; }
    .serif-title { font-size: 2.5rem; }
    .social-mega-card { width: 100%; }
}
