/* MAIN CSS FOR JOOMLA 3 MODULE */
.custom-landing-module {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sarabun', 'Tahoma', sans-serif;
    overflow-y: auto;
}

.landing-overlay {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

.landing-content-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 40px;
    width: 100%;
}

.landing-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.landing-main-img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
}

.landing-buttons-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.btn-link {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-link:hover {
    transform: scale(1.05);
}

.btn-image-upload {
    max-width: 280px;
    height: auto;
    display: block;
}

.btn-fallback-text {
    background-color: transparent;
    color: #fff;
    border: 2px solid #e1c068;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    display: inline-block;
}

.btn-fallback-text:hover {
    background-color: #e1c068;
    color: #000;
}

@media (max-width: 768px) {
    .landing-content-box {
        margin-bottom: 25px;
    }
    .landing-main-img {
        max-height: 380px;
    }
    .landing-buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .btn-image-upload {
        max-width: 220px;
    }
}