@font-face
{
    font-family: 'Antonio-Bold';
    src: url('../fonts/antonio_bold/subset-Antonio-Bold.woff2') format('woff2'),
        url('../fonts/antonio_bold/subset-Antonio-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'Lato-Regular';
    src: url('../fonts/lato_regular/Lato-Regular.woff2') format('woff2'),
        url('../fonts/lato_regular/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




:root {
    --bg-body: #0b0b0b;
    --bg-card: #141414;
    --bg-element: #1c1c1c;
    --text-main: #eeeeee;
    --text-muted: #888888;
    --accent: #FD8C14; /* Muted Gold */
    --border: #2a2a2a;
    
    --font-head: 'Antonio-Bold', sans-serif;
    --font-body: 'Lato-Regular', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scroll for Anchor Links */
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: #333; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- Animated Navigation --- */
nav {
    position: fixed; top: 0; width: 100%; height: 80px;
    /* Start Transparent */
    background: rgba(11, 11, 11, 0); 
    border-bottom: 1px solid transparent;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 1000;
    transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
    
    /* Entrance Animation */
    transform: translateY(-100%);
    animation: slideDownNav 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

/* Scrolled State */
nav.scrolled {
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid var(--border);
    height: 70px;
    backdrop-filter: blur(10px);
}

@keyframes slideDownNav {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Brand / Logo Styling */
.brand {
    font-family: var(--font-head);
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
}

.logo-icon { width: 35px; height: 35px; fill: var(--text-main); transition: 0.3s; }
.brand:hover .logo-icon { transform: rotate(180deg); }
.brand:hover { color: var(--accent); }

.logo-logo
{
    height: 60px;
}

.logo-icon,
.logo-logo
{
    fill: #eeeeee;
}

.menu { display: flex; gap: 15px; }
.menu a {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
}

.menu a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--accent);
    transition: width 0.3s;
}
.menu a:hover::after { width: 100%; }

/* --- Hero --- */
header {
    height: 80vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 70%, var(--bg-body)), 
                url('../images/backwoodler_header.jpg');
    background-size: auto 105%; background-position: center top; background-repeat: no-repeat;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

h1 {
    color: #ffffff91;
    font-family: var(--font-head);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 1s;
}

.hero-sub {
    color: var(--accent);
    letter-spacing: 4px;
    font-size: 1rem;
    text-transform: uppercase;
    border-top: 1px solid var(--accent);
    padding-top: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 1.3s;
}

@keyframes fadeIn { to { opacity: 1; } }

/* --- Container --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-head {
    margin-bottom: 60px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

/* --- About --- */
.about-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    margin-bottom: 120px;
}

.textcontent
{
    margin-top: 100px;
}

.content-block {
    display: grid; grid-template-columns: 2fr 1fr; gap: 50px;
    margin-bottom: 120px;
}



.about-img {
    height: 600px; width: 100%;
    background: url('../images/about.png');
    background-size: cover; background-position: center;
    /*filter: grayscale(100%);*/
    border: 1px solid var(--border);
    transition: 0.5s;
}
/*.about-img:hover { filter: grayscale(0%); }*/

.about-text p { margin-bottom: 20px; font-size: 1.05rem; color: #ccc; text-align: justify; }

/* --- Music / Media Player --- */
.release-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    margin-bottom: 60px;
    height: 450px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.release-block:hover { transform: translateY(-5px); }

/* Cover Area (Square) */
.cover-area {
    flex: 0 0 450px; width: 450px;
    position: relative;
    border-right: 1px solid var(--border);
}

.cover-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.9); transition: 0.5s ease;
}
.release-block:hover .cover-img { filter: brightness(1.1); }

/* Interface Area */
.interface-area {
    flex: 1; display: flex; flex-direction: column; min-width: 0;
}

.interface-header {
    padding: 20px 30px;
    background: var(--bg-element);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: baseline;
}

.album-name { font-family: var(--font-head); font-size: 1.8rem; text-transform: uppercase; }
.album-details { color: var(--accent); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

.booklet-link {
    padding-right: 3px;
    font-size: 1.3em;
    text-decoration: none;
}

.track-scroller {
    flex: 1; overflow-y: auto; background: var(--bg-card);
}

.track-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 30px;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer; transition: all 0.2s; color: #999; font-size: 0.85rem;
}
.track-item:hover { background: #1a1a1a; color: #fff; padding-left: 35px; }
.track-item.amplitude-active-song-container {
    background: #111; color: var(--accent); border-left: 3px solid var(--accent); padding-left: 35px;
}

.controls-wrapper {
    padding: 15px 30px; background: var(--bg-element); border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: 20px;
}

.c-btn {
    background: transparent; border: 1px solid #444; color: #fff;
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s; font-size: 0.8rem;
}
.c-btn:hover { border-color: var(--accent); color: var(--accent); }

.c-play { width: 45px; height: 45px; font-size: 1rem; border-color: #fff; }
.c-play:hover { background: var(--accent); border-color: var(--accent); color: #000; }

.amplitude-play-pause.amplitude-playing .play-icon { display: none; }
.amplitude-play-pause.amplitude-paused .pause-icon { display: none; }

.progress-bar {
    flex: 1; height: 3px; background: #333; cursor: pointer; position: relative;
}
.amplitude-song-played-progress {
    position: absolute;
    height: 100%; background: #cccccc; width: 100%;
}
.amplitude-song-slider
{
    position: absolute;
    height: 100%; background: #cccccc; width: 100%;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    width: 100px;
}

.volume-icon {
    font-size: 16px;
    min-width: 20px;
}

.amplitude-volume-slider {
    flex: 1;
    width: 100%;
    height: 4px;
    background: #666;
    /*
    border-radius: 2px;
    -webkit-appearance: none;
    */
}

.amplitude-volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #1db954;
    border-radius: 50%;
    cursor: pointer;
}

/* Footer */
footer {
    border-top: 1px solid var(--border); padding: 50px; text-align: center;
    background: #080808; color: #555; font-size: 0.8rem;
}
.socials a { color: #888; margin: 0 10px; font-size: 1rem; }
.socials a:hover { color: var(--accent); }

/* Mobile */
@media (max-width: 900px) {
    .about-block { grid-template-columns: 1fr; }
    .release-block { flex-direction: column; height: auto; }
    .cover-area { width: 100%; height: auto; aspect-ratio: 1/1; flex: none; border-right: none; border-bottom: 1px solid var(--border); }
    .track-scroller { height: 300px; }
}

ul li
{
    margin-left: 13px;
}


/* Mobile */
@media (max-width: 490px)
{
    /* Navigation */
    nav {
        height: 60px;
        padding: 0 4%;
    }

    .brand {
        font-size: 1.2rem;
        gap: 6px;
    }

    .logo-logo {
        height: 40px;
    }

    .menu {
        margin-left: 25px;
        /* display: none; */
        /* Menü könnte als Burgermenü ersetzt werden */
    }
    .menu a {
        font-size: 0.9rem;
    }

    /* Hero Section */
    header {
        height: 60vh;
        background-position: center top;
        padding: 0 10px;
    }

    h1 {
        font-size: 2.3rem;
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* Allgemeine Container */
    .container {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-head {
        margin-bottom: 40px;
    }

    /* About Section */
    .about-block,
    .content-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }

    .about-img {
        height: 300px;
    }

    .textcontent {
        margin-top: 40px;
    }

    /* Release / Player */
    .release-block {
        flex-direction: column;
        height: auto;
    }

    .cover-area {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .album-name {
        font-size: 1.4rem;
    }

    .album-details {
        padding-left: 15px;
        text-align: right;
        font-size: 0.8rem;
    }

    .track-item {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .controls-wrapper {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        position: relative;
        padding: 15px 15px 25px 15px;;
    }

    .progress-bar {
        position: absolute;
        left: 25px;
        right: 25px;
        bottom: 0;
        width: auto;
    }

    .volume-control {
        width: 100%;
        justify-content: center;
        margin: 0px 5px 0px 5px;
    }

    /* Footer */
    footer {
        padding: 30px 10px;
        font-size: 0.7rem;
    }

    .socials a {
        font-size: 0.9rem;
        margin: 0 6px;
    }
}