/* MENAYARI MUSIC — Grayscale Dark Theme */

:root {
    --bg1: #0a0a0a;
    --bg2: #0f0f0f;
    --card: rgba(255, 255, 255, 0.03);
    --card-h: rgba(255, 255, 255, 0.06);
    --text1: #f0f0f0;
    --text2: #888;
    --text3: #444;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #fff;
    --glow: rgba(255, 255, 255, 0.06);
    --glow-s: rgba(255, 255, 255, 0.12);
    --font: 'Inter', -apple-system, sans-serif;
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --t-f: 0.2s cubic-bezier(.4, 0, .2, 1);
    --t-b: 0.3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--bg1);
    color: var(--text1);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-f)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--t-b)
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo img {
    height: 38px;
    border-radius: 50%;
    transition: transform var(--t-f)
}

.logo:hover img {
    transform: scale(1.05)
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    color: var(--text2);
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    transition: color var(--t-f)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--t-b)
}

.nav-links a:hover {
    color: var(--text1)
}

.nav-links a:hover::after {
    width: 100%
}

/* Nav button — Outline */
.btn-nav-outline {
    background: transparent !important;
    color: var(--text2) !important;
    border: 1px solid var(--border) !important;
    padding: 8px 20px !important;
    font-size: .78rem !important;
    border-radius: var(--r-sm);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all var(--t-f)
}

.btn-nav-outline:hover {
    color: var(--text1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px)
}

.btn-nav-outline::after {
    display: none !important
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text1);
    border-radius: 2px;
    transition: all var(--t-f)
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, .02) 0%, transparent 60%);
    animation: hp 14s ease-in-out infinite alternate
}

@keyframes hp {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08)
    }
}

#waveCanvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    z-index: 0;
    opacity: .25
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px
}

@keyframes pu {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fu .8s ease-out .4s forwards
}

.hero h1 .accent {
    color: var(--accent)
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text2);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fu .8s ease-out .6s forwards
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fu .8s ease-out .8s forwards
}

@keyframes fu {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: all var(--t-b);
    text-transform: uppercase
}

.btn-primary {
    background: var(--accent);
    color: #0a0a0a
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--text1);
    border: 1px solid var(--border)
}

.btn-outline:hover {
    border-color: var(--accent);
    transform: translateY(-2px)
}

/* Sections */
.section-padding {
    padding: 120px 0
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text2);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px
}

.section-description {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* About */
.about {
    background: var(--bg2)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center
}

.about-image img {
    max-width: 300px;
    opacity: .9
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 24px
}

.about-text p {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 44px 36px;
    transition: all var(--t-b);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity var(--t-b)
}

.service-card:hover {
    background: var(--card-h);
    border-color: rgba(255, 255, 255, .12);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5)
}

.service-card:hover::before {
    opacity: 1
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glow);
    border-radius: var(--r-md);
    font-size: 1.8rem;
    margin-bottom: 24px
}

.service-icon svg {
    width: 32px;
    height: 32px
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px
}

.service-card p {
    color: var(--text2);
    font-size: .92rem;
    line-height: 1.7
}

/* Equalizer bars */
.eq-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 24px;
    margin-top: 20px
}

.eq-bars span {
    width: 4px;
    background: #666;
    border-radius: 2px;
    animation: eq 1.2s ease-in-out infinite
}

.eq-bars span:nth-child(1) {
    height: 40%;
    animation-delay: 0s
}

.eq-bars span:nth-child(2) {
    height: 70%;
    animation-delay: .15s
}

.eq-bars span:nth-child(3) {
    height: 50%;
    animation-delay: .3s
}

.eq-bars span:nth-child(4) {
    height: 85%;
    animation-delay: .45s
}

.eq-bars span:nth-child(5) {
    height: 60%;
    animation-delay: .6s
}

.eq-bars span:nth-child(6) {
    height: 30%;
    animation-delay: .75s
}

@keyframes eq {

    0%,
    100% {
        transform: scaleY(.4)
    }

    50% {
        transform: scaleY(1)
    }
}

/* Contact */
.contact-section {
    background: var(--bg2)
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 64px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.contact-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px
}

.contact-card p {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px
}

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.contact-actions .btn {
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 0
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 48px;
    padding-bottom: 48px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.footer-brand img {
    height: 36px;
    width: auto;
    opacity: .9
}

.footer-name {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text1)
}

.footer-tagline {
    display: block;
    font-size: .75rem;
    color: var(--text3);
    margin-top: 2px
}

.footer-links {
    display: flex;
    gap: 56px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col h4 {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text1);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 4px
}

.footer-col a {
    font-size: .82rem;
    color: var(--text2);
    transition: color var(--t-f)
}

.footer-col a:hover {
    color: var(--text1)
}

.footer-social h4 {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text1);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text2);
    transition: all var(--t-f)
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0a;
    transform: translateY(-3px)
}

.social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center
}

.footer-bottom span {
    font-size: .78rem;
    color: var(--text3)
}

/* Responsive */
@media(max-width:768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, .98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s cubic-bezier(.4, 0, .2, 1),
            visibility 0.4s cubic-bezier(.4, 0, .2, 1),
            transform 0.4s cubic-bezier(.4, 0, .2, 1)
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.3s ease, transform 0.3s ease, color var(--t-f)
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateY(0)
    }

    .nav-links.open a:nth-child(1) {
        transition-delay: .08s
    }

    .nav-links.open a:nth-child(2) {
        transition-delay: .14s
    }

    .nav-links.open a:nth-child(3) {
        transition-delay: .20s
    }

    .nav-links.open a:nth-child(4) {
        transition-delay: .26s
    }

    .btn-nav-outline {
        font-size: .9rem !important;
        padding: 12px 32px !important;
        margin-top: 8px
    }

    .menu-toggle {
        display: flex;
        z-index: 1001
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px
    }

    #waveCanvas {
        height: 160px
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .about-image {
        order: -1
    }

    .about-image img {
        max-width: 200px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .contact-card {
        padding: 40px 24px
    }

    .section-padding {
        padding: 80px 0
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px
    }

    .footer-brand {
        justify-content: center
    }

    .footer-links {
        justify-content: center
    }

    .footer-social {
        text-align: center
    }

    .social-links {
        justify-content: center
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: .95rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        max-width: 280px
    }
}