/* Reset dasar */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Container utama web */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Area banner */
.banner-area {
    background: url('/images/banner-hse.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 200px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Teks berjalan */
.marquee-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 12px 0;
    text-align: center;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 26px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Tombol bulat */
.btn-circle {
    width: 160px;
    height: 160px;
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.4);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

    .btn-circle:hover {
        transform: scale(1.05);
    }

/* Link menu */
.menu-link {
    display: block;
    margin: 10px auto;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    max-width: 300px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: background 0.3s;
    text-align: center;
}

    .menu-link:hover {
        background-color: #218838;
    }

/* ====== RESPONSIVE STYLING ====== */
@media (max-width: 992px) {
    .banner-area {
        height: 300px;
        padding-right: 80px;
    }

    .btn-circle {
        width: 120px;
        height: 120px;
        font-size: 18px;
    }

    .marquee-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .banner-area {
        align-items: center;
        padding-right: 0;
    }

    .btn-circle {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .marquee-text {
        font-size: 20px;
    }

    .menu-link {
        width: 90%;
        max-width: none;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-area {
        height: 250px;
    }

    .btn-circle {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }

    .marquee-text {
        font-size: 18px;
    }
}
