/* Zmienne i Reset */
:root {
    --primary-gold: #d4a017;
    --gold-hover: #e5b028;
    --font-main: 'Montserrat', sans-serif;
    --bg-dark: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    opacity: 0.9;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    background: url("background.jpg") center 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.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.subtitle {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-title {
    font-size: clamp(36px, 10vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
}

.description {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* BADGE / CTA */
.badge {
    display: inline-block;
    padding: 22px 55px;
    background-color: var(--primary-gold);
    color: white;
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.badge:hover {
    background-color: var(--gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(212, 160, 23, 0.3);
}

/* FOOTER */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    font-size: 11px;
    letter-spacing: 2px;
    z-index: 10;
    text-transform: uppercase;
    opacity: 0.8;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.footer-right {
    font-weight: 700;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 30px 20px;
        background: rgba(0,0,0,0.4);
    }

    .top-bar {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .main-title {
        margin-bottom: 25px;
    }
}