/* Variabel Font */
:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Konfigurasi Body & Background Gradasi */
body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    min-height: 100vh;
    color: #333333;
}

/* Penerapan Font Heading */
h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Penerapan Font Tombol */
.button-font {
    font-family: var(--font-heading);
}

/* Pengaturan Logo */
.logo-container img {
    height: 75px;
    object-fit: contain;
}

/* Pengaturan Hero Image - Memaksa Rasio 1:1 */
.hero-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-right: 1px solid #e0e0e0;
}

/* Penyesuaian layout pada tampilan mobile/tablet */
@media (max-width: 991.98px) {
    .hero-img {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* Pengaturan Teks Copywriting */
.copywriting-text {
    line-height: 1.7;
    font-size: 1.1rem;
}