body {
    margin: 0;
    font-family: "Georgia", serif;
    background-color: #10131a;
    color: #e8e3d9;
    text-align: center;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

nav {
    padding: 20px;
}

nav a {
    color: #b8a46b;
    text-decoration: none;
    margin: 0 15px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    opacity: 0.6;
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section {
    padding: 100px 20px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

.card {
    border: 1px solid #b8a46b;
    padding: 40px;
    margin: 40px 0;
    transition: 0.4s ease;
}

.card:hover {
    box-shadow: 0 0 20px rgba(184,164,107,0.3);
}

footer {
    padding: 40px 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}