/* General Body Styles */
body {
    margin: 0;
    font-family: 'Lora', serif;
    height: 100vh;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* New Top Header */
.top-header {
    margin-bottom: 10rem; /* Creates space for the background image */
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 2s ease-in-out;
}

/* Headline Text */
.headline {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

/* Action Buttons */
.actions {
    display: flex;
    gap: 1rem;
}

.btn {
    font-family: 'Playfair Display', serif;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5rem;
    }

    .headline {
        font-size: 2rem;
    }
}

/* Force update */
