
body {
    margin: 0;
    background-color: #000;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    height: 60px;
}

nav a {
    margin: 0 15px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 80px 20px;
}

h1 {
    font-size: 3em;
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
}

.slogan {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-buttons .btn {
    background: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    padding: 12px 30px;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.cta-buttons .btn.gold {
    border-color: #D4AF37;
    color: #D4AF37;
}

.cta-buttons .btn:hover {
    background: #D4AF37;
    color: #000;
}

footer {
    padding: 30px;
    font-size: 0.9em;
    color: #888;
}
