/* RESET / BOX-SIZING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a2e;
    padding: 1.2rem 0;
}

/* NAVIGATION MENU */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav ul li {
    display: inline;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #e8c547;
}


/* FOOTER */
.site-footer {
    background: #1a1a2e;
    text-align: center;
    padding: 1rem;
    flex-shrink: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        overflow-y: auto; /* Ensure scrolling on smaller screens */
    }

    .split {
        width: 100%;
        height: 50vh;
    }
    .choice-btn {
        font-size: 1.4rem; /* Smaller font size */
        padding: 0.8rem 1.5rem; /* Reduce padding */
        border-radius: 8px; /* Slightly smaller border-radius */
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
