/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000; /* PEŁNA CZERŃ */
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAWIGACJA Z LOGO --- */
.navbar {
    background-color: #000000; /* Czarne tło nawigacji */
    padding: 20px 0;
    position: sticky; /* Przyklejona góra */
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222; /* Delikatna linia oddzielająca */
}

.nav-container {
    display: flex;
    flex-direction: column; /* Układ pionowy: Logo nad linkami */
    align-items: center;    /* Wyśrodkowanie */
    justify-content: center;
}

.logo-wrapper {
    display: block;
    margin-bottom: 15px; /* Odstęp logo od linków */
}

.site-logo {
    max-height: 80px; /* Maksymalna wysokość logo - dostosuj wg potrzeb */
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* --- HERO --- */
.hero {
    height: 80vh; /* Nieco niższe hero, skoro logo jest wyżej w menu */
    background-image: url('https://images.unsplash.com/photo-1514525253440-b393452e3383?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient od czerni do przezroczystości i z powrotem do czerni */
    background: linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0.6) 50%, #000000 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* --- PRZYCISKI --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #fff; /* Styl "Ghost button" - obramowanie */
    transition: all 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

.btn-submit {
    background-color: #fff;
    color: #000;
    border: none;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #ccc;
}

/* --- SEKCJE --- */
.section {
    padding: 80px 0;
    background-color: #000000; /* Upewnienie się, że tło jest czarne */
}

.section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

/* --- O MNIE --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 350px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- UTWORY --- */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.track-card {
    background: #050505; /* Minimalnie jaśniejsze od tła dla odróżnienia */
    padding: 25px;
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.track-card:hover {
    border-color: #666;
}

.track-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.track-card p {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

audio {
    width: 100%;
    height: 30px;
    filter: invert(100%) grayscale(100%); /* Biały odtwarzacz na czarnym tle */
    opacity: 0.8;
}

/* --- KONTAKT --- */
.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #aaa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #000;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

/* --- STOPKA --- */
footer {
    padding: 50px 0;
    text-align: center;
    background-color: #000;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.8rem;
}

.socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.socials a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .site-logo {
        max-height: 60px; /* Mniejsze logo na telefonie */
    }
}