/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.5;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: #000;
    z-index: 100;
    border-bottom: 1px solid #444;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s ease;
    margin-left: 2rem;
}

.nav-links a:hover {
    color: #ccc;
}

/* HERO / MAIN */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding-top: 4rem; /* so nav doesn't overlap */
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* DIVIDER UNDER HERO */
.divider {
    width: 40%;
    height: 2px;
    background: #444;
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.fade-in.delay {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
footer {
    padding: 2rem 0;
    text-align: center;
    font-weight: bold;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .divider {
        width: 60%;
    }
}
