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

body {
    background: #f4f7f5;
    color: #334155;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* HEADER */

.hero-section {
    background: linear-gradient(
            to right,
            #0b6b45 0%,
            #0f7a4d 30%,
            rgba(15, 122, 77, 0.85) 45%,
            rgba(15, 122, 77, 0.35) 100%
        ),
        url("/images/ayam.jpeg");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;

    border-radius: 28px;
    padding: 45px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-section::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 16px;
    max-width: 700px;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* CARD MENU */

.card-menu {
    background: white;
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    border: 1px solid #edf1ee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.card-menu:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.bg-green {
    background: #dcfce7;
    color: #166534;
}

.bg-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.bg-yellow {
    background: #fef3c7;
    color: #b45309;
}

.bg-gray {
    background: #e2e8f0;
    color: #334155;
}

.card-menu h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #102a29;
}

.card-menu p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* BUTTON */

.btn-custom {
    background: linear-gradient(135deg, #11a060, #0c7c4b);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-custom:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-admin {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.btn-admin:hover {
    background: rgba(255, 255, 255, 0.22);
    color: white;
}

/* TIPS */

.tips-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf1ee;
}

.tips-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #102a29;
}

.tips-card p {
    margin: 0;
    line-height: 1.8;
    color: #64748b;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero-section {
        padding: 28px;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .card-menu {
        flex-direction: column;
        padding: 22px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 18px;
    }

    .card-menu h5 {
        font-size: 20px;
    }

    .btn-custom {
        width: 100%;
        justify-content: center;
    }

    .btn-admin {
        width: 100%;
        justify-content: center;
    }
}
