/* modern-landing.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --bg-light: #f3f4f6;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.landing-wrapper {
    display: flex;
    width: 90%;
    max-width: 1000px;
    height: 600px;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* --- SEBELAH KIRI (ILLUSTRATION) --- */
.illustration-side {
    flex: 1.2;
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.illustration-side img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

/* --- SEBELAH KANAN (CONTENT) --- */
.content-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-container img {
    width: 60px;
}

.welcome-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 10px;
}

.welcome-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

/* --- PORTAL BUTTONS --- */
.portal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portal-btn {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 20px;
}

.portal-btn i {
    font-size: 24px;
    color: var(--primary-blue);
    background-color: #eff6ff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.portal-btn .btn-text {
    text-align: left;
}

.portal-btn .btn-text h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.portal-btn .btn-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.portal-btn:hover {
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.portal-btn:hover i {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Footer */
.footer-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    font-size: 11px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .illustration-side {
        display: none;
    }

    .landing-wrapper {
        max-width: 450px;
        height: auto;
        padding: 20px 0;
    }

    .content-side {
        padding: 30px;
    }
}