body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0f;
    color: white;
}

/* NAVBAR */

.navbar {
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(20px);
}

.navbar-brand {
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 32px;
}

.nav-link {
    color: white !important;
    opacity: .8;
}

.nav-link:hover {
    opacity: 1;
}

/* BUTTON */

.btn-primary {
    background: linear-gradient(90deg, #ff2e63, #ff6b00);
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .8)),
        url("https://images.unsplash.com/photo-1518611012118-696072aa579a?q=80&w=1600");
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
}

/* SECTION */

.section {
    padding: 120px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}

/* GLASS */

.glass {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

/* BENEFIT */

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: #ff2e63;
}

/* EVENT */

.event-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.event-img {
    width: 180px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
}

/* SEARCH */

.search-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 20px;
}

/* FAQ FIX */

.accordion-button {
    background: #121218;
    color: white;
}

.accordion-button:not(.collapsed) {
    background: #121218;
    color: white;
}

/* CTA */

.cta-section {
    background: linear-gradient(135deg, #ff2e63, #ff6b00);
    padding: 90px 0;
    text-align: center;
}

/* FOOTER */

.footer {
    background: #08080c;
}

.payment-icons img {
    height: 28px;
    margin-right: 12px;
}

.social-icons i {
    font-size: 22px;
    margin-right: 18px;
    opacity: .8;
    cursor: pointer;
}

.social-icons i:hover {
    opacity: 1;
}

.pagination .page-link {
    background: #121218;
    border: none;
    color: white;
}

.pagination .active .page-link {
    background: #ff2e63;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .section {
        padding: 80px 0;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-img {
        width: 100%;
        height: 200px;
    }
}

.flatpickr-calendar {
    background: #121218;
    border: none;
    color: white;
}

.flatpickr-day {
    color: white;
}

.flatpickr-day.selected {
    background: #ff2e63;
    border: none;
}

/* placeholder lebih terang */

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1;
}

.form-select option[disabled] {
    color: rgba(255, 255, 255, 0.6);
}

/* untuk browser lama */

.form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.accordion {
    --bs-accordion-bg: #5b5b5b;
    --bs-accordion-color: #ffffff;
}
