body {
    background-color: #1c1c1a;
    color: #d9d0c1;
    font-family: "Georgia", "Times New Roman", serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

header {
    margin-bottom: 4rem;
}

.logo img {
    width: 200px;
    height: auto;
    filter: invert(90%) sepia(10%) saturate(300%) hue-rotate(340deg) brightness(95%) contrast(90%);
}

h1 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-top: 1.5rem;
    color: #7d705c;
}

main {
    margin-bottom: 6rem;
}

.manifesto p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-style: italic;
    letter-spacing: 0.05rem;
}

.coming-soon {
    font-style: normal !important;
    font-weight: bold;
    color: #7d705c;
    margin-top: 3rem !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

footer {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

nav {
    margin-bottom: 1rem;
}

a {
    color: #d9d0c1;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.6;
}

a:hover {
    color: #7d705c;
    opacity: 1;
}

nav a.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.3;
}

.location {
    color: #3d3b30;
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    h1 {
        font-size: 1rem;
    }
    .manifesto p {
        font-size: 1rem;
    }
}
