/* Basic reset + box model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: #000;
    text-align: center;
    line-height: 1.6;
}

/* Center everything */
.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
}

/* Hero section with big logo/text */
.hero {
    margin-top: 4rem;
}

.logo {
    font-size: 4rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
}

.subtext {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Contact section */
.contact {
    margin: 2rem 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-decoration: underline;
}

.contact ul {
    list-style: none;
}

.contact li {
    margin: 0.6rem 0;
}

.contact a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #ddd;
}

/* Footer text */
footer {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

