/* ===== GLOBAL & LAYOUT STYLES ===== */
html, body {
    text-align: center;
    margin: 0;
    height: 100%;
    font-family: sans-serif;
}

/* ===== TYPOGRAPHY ===== */
.main-title {
    font-size: 60px;
    color: #233c3c;
    margin-bottom: 20px;
}

.sub-title {
    font-size: 40px;
    color: #9b4c2e;
    margin-bottom: 30px;
}

.menu-link-text {
    font-size: 30px;
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 0;
}

.menu-link-text:hover {
    color: #f0f0f0;
    text-decoration: none;
}

/* ===== LANDING PAGE LAYOUT ===== */
.landing-left-panel {
    background-color: #f8f2f3;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.landing-right-panel {
    background-color: #233c3c;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.menu-container {
    width: 100%;
}

.menu-item {
    border-bottom: 1px solid #ffffff;
    padding: 0;
}

.menu-item:last-child {
    border-bottom: none;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
    .landing-left-panel,
    .landing-right-panel {
        height: auto;
        min-height: 50vh;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .sub-title {
        font-size: 30px;
    }
    
    .menu-link-text {
        font-size: 24px;
        padding: 10px 0;
    }
}