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;
}

html {
    scroll-behavior: smooth;
}

.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);
}

.mailing {
    margin-top: 100px;
    text-align: center;
}

.mailing button:hover {
    opacity: 0.85;
}

#mlb2-37734148 .ml-form-embedWrapper {
    background-color: transparent !important;
}

#mlb2-37734148 h4 {
    color: #e8e3d9 !important;
    font-family: Georgia, serif !important;
    text-align: center !important;
}

#mlb2-37734148 p {
    color: #b8a46b !important;
    text-align: center !important;
}

#mlb2-37734148 input {
    background-color: #10131a !important;
    color: #e8e3d9 !important;
    border: 1px solid #b8a46b !important;
}

#mlb2-37734148 button {
    background-color: #b8a46b !important;
    color: #10131a !important;
    border: none !important;
}

#mlb2-37734148 button:hover {
    opacity: 0.8 !important;
}

/* ===== Blog ===== */

.blog-list {
    max-width: 800px;
    margin: 0 auto;
}

.blog-preview {
    margin-bottom: 40px;
}

.blog-preview h2 a {
    text-decoration: none;
    color: inherit;
}

.blog-preview h2 a:hover {
    text-decoration: underline;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-date {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

footer {
    padding: 40px 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}