/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    background: #000;
    padding: 25px 0;
    border-bottom: 1px solid #222;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #bbb;
}

/* HERO SECTION */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.hero-logo {
    width: 400px;
    max-width: 90%;
    margin-bottom: 25px;
}

.subline {
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 15px;
}

.headline {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 10px 0 25px;
    letter-spacing: 2px;
}

.cta-btn {
    display: inline-block;
    background-color: #e0e0e0;
    color: #000;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 20px 0;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
}
