:root {
    --primary-gold: #d4a017;
    --font-main: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: #000;
    color: white;
}

/* TOP BAR */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    opacity: 0.8;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("background.jpg") center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--primary-gold) !important;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-title {
    font-size: clamp(32px, 8vw, 68px);
    font-weight: 900;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.description {
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--primary-gold) !important;
    color: white !important;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    font-size: 11px;
    letter-spacing: 1px;
    box-sizing: border-box;
    z-index: 10;
    text-transform: uppercase;
    opacity: 0.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
        background: rgba(0,0,0,0.2); /* Lekka poświata dla czytelności na małym ekranie */
    }

    .main-title {
        font-size: 40px;
    }

    .badge {
        font-size: 20px;
        padding: 15px 35px;
    }

    .description {
        font-size: 15px;
    }
}