/* Currenari Sounds Master Style */
:root {
    --bg_dark: #0a0a0a;
    --card_bg: #121214;
    --card_border: #22242a;
    --text_light: #f4f6fc;
    --text_muted: #9096a6;
    --gold: #f5b800;
    --gold_hover: #ffd033;
    --font_head: 'Syne', 'Coda', sans-serif;
    --font_body: 'Coda', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg_dark);
    color: var(--text_light);
    font-family: var(--font_body);
    line-height: 1.6;
}

body {
    background-color: var(--bg_dark);
    color: var(--text_light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.site_header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card_border);
    padding: 15px 0;
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand_logo {
    height: 42px;
    width: auto;
    display: block;
}

.main_nav {
    display: flex;
    gap: 25px;
}

.nav_item {
    color: var(--text_muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav_item:hover {
    color: var(--gold);
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-family: var(--font_head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn_gold {
    background-color: var(--gold);
    color: #FFFFFF !important;
    font-weight: 700;
    border-color: var(--gold);
}

.btn_gold:hover {
    background-color: var(--gold_hover);
    border-color: var(--gold_hover);
    color: #FFFFFF !important;
}

.btn_outline {
    background-color: transparent;
    color: var(--text_light);
    border-color: var(--card_border);
}

.btn_outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn_sm {
    padding: 6px 14px;
    font-size: 0.75rem;
}

/* Hero Section */
.hero_section {
    position: relative;
    padding: 100px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.hero_bg_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.80;
}

.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.60) 75%, #0a0a0a 100%);
}

.hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge_tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(245, 184, 0, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    margin-bottom: 20px;
}

.hero_logo_wrap {
    margin-bottom: 20px;
}

.hero_main_logo {
    max-width: 480px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero_subtitle {
    font-size: 1.1rem;
    color: var(--text_muted);
    margin-bottom: 30px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero_buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.platform_brand_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 25px;
}

.platform_brand_link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text_light);
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.brand_logo_img {
    display: block;
    width: auto;
    filter: url(#white_recolor);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.subvert_img {
    height: 14px;
}

.bandcamp_img {
    height: 12px;
}

.soundcloud_img {
    height: 13px;
}

.brand_icon_svg {
    height: 16px;
    width: 16px;
    display: block;
    fill: currentColor;
    transition: color 0.2s ease, transform 0.2s ease;
}

.platform_brand_link:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-2px);
}

.platform_brand_link:hover .brand_logo_img {
    filter: url(#gold_recolor);
}

/* Sections */
.main_content {
    padding-bottom: 80px;
}

.section_block {
    margin-top: 70px;
}

.section_header {
    margin-bottom: 35px;
}

.section_badge {
    color: var(--gold);
    font-size: 0.75rem;
    font-family: var(--font_head);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.section_title {
    font-family: var(--font_head);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 5px 0 10px 0;
    color: var(--text_light);
}

.section_desc {
    color: var(--text_muted);
    font-size: 0.95rem;
}

/* Audio Player List */
.player_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player_card {
    background-color: var(--card_bg);
    border: 1px solid var(--card_border);
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.2s ease;
}

.player_card:hover, .player_card.is_playing {
    border-color: var(--gold);
}

.play_btn {
    background-color: var(--gold);
    color: var(--bg_dark);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.play_btn:hover {
    background-color: var(--gold_hover);
    transform: scale(1.05);
}

.play_btn .icon_pause {
    display: none;
}

.player_card.is_playing .play_btn .icon_play {
    display: none;
}

.player_card.is_playing .play_btn .icon_pause {
    display: block;
}

.player_info {
    flex-grow: 1;
    min-width: 0;
}

.track_meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.cat_code {
    background-color: rgba(245, 184, 0, 0.12);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: var(--font_head);
}

.track_title {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress_wrap {
    width: 100%;
    cursor: pointer;
    padding: 4px 0;
}

.progress_bar {
    width: 100%;
    height: 6px;
    background-color: #22242a;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress_fill {
    width: 0%;
    height: 100%;
    background-color: var(--gold);
    transition: width 0.1s linear;
}

.player_controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.time_display {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text_muted);
}

/* Plugin Grid & Release Cards */
.plugin_grid, .release_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.plugin_card, .release_card {
    background-color: var(--card_bg);
    border: 1px solid var(--card_border);
    border-radius: 6px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.release_featured {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    grid-column: 1 / -1;
}

.release_art_wrap {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--card_border);
}

.release_cover_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release_body {
    flex-grow: 1;
}

.single_player_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card_border);
    border-radius: 4px;
    padding: 10px 14px;
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.single_player_card .player_info {
    flex-grow: 1;
}

.waveform_wrap {
    width: 100%;
    height: 34px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.waveform_canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.plugin_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.plugin_name, .release_title {
    font-family: var(--font_head);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text_light);
    margin-bottom: 6px;
}

.status_badge, .release_badge {
    display: inline-block;
    background-color: rgba(245, 184, 0, 0.15);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.badge_free {
    background-color: rgba(244, 246, 252, 0.1);
    color: var(--text_light);
}

.badge_muted {
    background-color: rgba(144, 150, 166, 0.15);
    color: var(--text_muted);
}

.plugin_desc, .release_desc {
    color: var(--text_muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plugin_footer, .release_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tech_spec {
    font-size: 0.75rem;
    color: var(--text_muted);
    font-family: monospace;
}

.coming_soon_tag {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
}

/* About Box */
.about_block {
    margin-top: 90px;
}

.about_box {
    background-color: var(--card_bg);
    border: 1px solid var(--card_border);
    border-radius: 6px;
    padding: 35px;
    box-sizing: border-box;
    width: 100%;
}

.about_grid {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
    box-sizing: border-box;
}

.about_img_wrap {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--card_border);
}

.about_profile_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_content {
    flex: 1 1 0%;
    min-width: 0;
}

.about_text {
    color: var(--text_muted);
    font-size: 1rem;
    margin-top: 15px;
}

/* Footer */
.site_footer {
    border-top: 1px solid var(--card_border);
    padding: 40px 0;
    margin-top: 80px;
}

.footer_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.footer_logo_text {
    font-family: var(--font_head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text_light);
    display: block;
    margin-bottom: 4px;
}

.footer_copy {
    color: var(--text_muted);
    font-size: 0.85rem;
}

.footer_note {
    color: var(--text_muted);
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 4px;
}

/* Contact Form Styling */
.contact_card {
    background-color: var(--card_bg);
    border: 1px solid var(--card_border);
    border-radius: 6px;
    padding: 30px;
    max-width: 640px;
    margin: 0 auto;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form_label {
    font-family: var(--font_accent);
    font-size: 0.82rem;
    color: var(--text_muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form_input {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card_border);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--text_light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form_input:focus {
    outline: none;
    border-color: var(--brand_gold);
    background-color: rgba(255, 255, 255, 0.07);
}

.btn_submit {
    align-self: flex-start;
    margin-top: 6px;
    cursor: pointer;
}

.form_status_msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.msg_success {
    background-color: rgba(245, 184, 0, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.msg_error {
    background-color: rgba(235, 77, 75, 0.12);
    border: 1px solid #eb4d4b;
    color: #eb4d4b;
}

/* Sleek Manchester Gold 3-Bar Hamburger Button */
.mobile_menu_toggle {
    display: none !important;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    padding: 0;
    margin: 0;
    z-index: 1100;
}

.hamburger_bar {
    display: block !important;
    width: 30px !important;
    height: 3px !important;
    background-color: #F5B800 !important;
    border-radius: 2px !important;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile_menu_toggle:hover .hamburger_bar {
    background-color: #FFC81A !important;
}

/* X Morph Transformation when Active */
.mobile_menu_toggle.is_active .hamburger_bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile_menu_toggle.is_active .hamburger_bar:nth-child(2) {
    opacity: 0;
}

.mobile_menu_toggle.is_active .hamburger_bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Responsive Rules */
@media (max-width: 768px) {
    .mobile_menu_toggle {
        display: flex !important;
    }

    .header_inner {
        position: relative;
    }

    .main_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #121214;
        border-bottom: 1px solid var(--card_border);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .main_nav.is_open {
        display: flex !important;
    }

    .main_nav .nav_item {
        font-size: 1.1rem;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .player_card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .player_controls {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .hero_buttons {
        flex-direction: column;
    }

    .release_featured {
        flex-direction: column;
        align-items: flex-start;
    }

    .release_art_wrap {
        width: 100%;
        height: 220px;
    }

    .about_block {
        margin-top: 40px;
    }

    .about_box {
        padding: 20px 16px;
        box-sizing: border-box;
        overflow: hidden;
        width: 100%;
    }

    .about_grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .about_img_wrap {
        width: 160px !important;
        height: 160px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }

    .about_content {
        width: 100% !important;
        min-width: 0 !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .about_text {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-top: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer_inner {
        flex-direction: column;
        text-align: center;
    }
}
