/* ===== GLOBAL ===== */
body {
    background-color: #f8f9fa;
    /* Bootstrap bg-light */
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* ===== HERO ===== */
.hero {
    /* background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url('/img/bg.jpg') center/cover; */
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.9;
}

/* ===== PACKAGE CARD ===== */
.package-card {
    transition: all 0.4s ease-in-out;
    border-radius: 1rem;
    /* lebih lembut */
    overflow: hidden;
    border: 1px solid rgba(25, 135, 84, 0.2);
    /* soft border hijau */
    background-color: #fff;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
    max-height: none;
}

.package-card:hover img {
    transform: scale(1.05);
}

/* ===== BUTTON ===== */
.package-card .btn {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.package-card .btn:hover {
    background-color: #20c997;
    /* hijau toska Bootstrap */
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== FLOATING CART ===== */
.floating-cart {
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    footer {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }
}

/* ===== MINI HERO CART ===== */
.cart-hero,
.page-hero {
    background: linear-gradient(135deg, #20c997, #198754);
    color: #fff;
    padding: 3.5rem 0;
    margin-top: 56px;
    /* tinggi navbar */
    text-align: center;
}

.cart-hero h2,
.page-hero h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}