:root {
    --header-height: 80px;
}

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

body {
    background: #131212;
    color: #fff;
}

/* header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #131212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    padding-left: 6px;
    padding-top: 4px;
}

.logo-img {
    height: 38px;
}

.burger {
    font-size: 24px;
    cursor: pointer;
}

/* hero */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center -120px; */
    display: block;
    width: 100%;
    object-position: center 35%;
}

/* text hero */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.hero-text h1 {
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text p {
    margin-top: 8px;
    font-size: 1.2rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero {
        height: 45vh;
    }

    .hero-img {
        object-position: center 25%;
    }
}

/*  event card  */
.event-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -180px;
    z-index: 5;
}

/* card info */
.event-card.info {
    position: relative;
    z-index: 10;

    background: #2f2f2f;
    border-radius: 28px;
    padding: 28px 32px;
}

/* title */
.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 26px;
}

/* list info */
.event-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-info li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.event-info span:last-child {
    font-size: 18px;
    color: #f1f1f1;
}

/* icon */
.event-info .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 45, 109, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-info svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ff2d6d;
    stroke-width: 2;
}

/* card desc */
.event-card.desc {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: -60px auto 0;
    margin-top: -60px;
    padding: 70px 28px 26px;
    background: #1d1c1c;
    border-radius: 0 0 28px 28px;
    margin-bottom: 16px;
}

/* teks desc */
.event-card.desc p {
    font-size: 16px;
    line-height: 1.8;
    color: #eaeaea;
    margin-bottom: 18px;
}

.event-card.desc p:last-child {
    margin-bottom: 0;
}

/* form card */
.event-card.form {
    background: #525151;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 40px 44px;
    margin-top: 24px;
    padding-top: 32px;
    max-width: 1170px;
    margin: 24px auto 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    background: #3a3a3a;
    padding: 40px;
    margin-top: -40px;
}

/* Progress */
.form-progress {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #fff;
}

/* Grid */
.event-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
}

/* Full width row */
.form-group.full {
    grid-column: 1 / -1;
}

/* Label */
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.form-group label span {
    color: #ffffff;
}

/* Inputs */
.form-group input,
.form-group select {
    width: 100%;
    height: 46px;
    background: #000;
    border: none;
    border-radius: 10px;
    padding: 0 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

/* Placeholder */
.form-group input::placeholder {
    color: #777;
}

/* Select arrow clean */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .event-card.form {
        padding: 28px 24px 32px;
    }
}

/* ================= PAYMENT SECTION ONLY ================= */

.payment-section {
    padding: 4px;
}

.payment-card {
    max-width: 1170px;
    margin: 0 auto;
    background: #fff;
    color: #111;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

/* TITLE */
.payment-title {
    font-size: 28px;
    margin-bottom: 6px;
}

.payment-desc {
    color: #666;
    margin-bottom: 36px;
}

/* GRID */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

/* LEFT */
.payment-left {
    display: block;
}

.bank-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* QR */
.qr-image {
    display: block;
    width: 360px;
    max-width: 100%;
    margin: 32px 0 24px;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

/* TERMS */
.terms h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111;
}

.terms ul {
    padding-left: 18px;
    color: #555;
}

.terms li {
    margin-bottom: 8px;
}

/* FOOTER */
.payment-footer {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
}

.upload {
    background: #e91e63;
    color: #fff;
}

.confirm {
    background: #4ea1ff;
    color: #fff;
}

/* QUANTITY */
.quantity {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.quantity button {
    background: none;
    border: none;
    color: #fff;
    padding: 10px 16px;
    font-size: 18px;
    cursor: pointer;
}

.quantity span {
    padding: 0 14px;
}

/* TOTAL */
.total {
    font-size: 18px;
    white-space: nowrap;
}

/* FOOTER */
.site-footer {
    padding: 80px 20px 60px;
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    text-align: center;
    color: #fff;
}

/* TEXT */
.footer-text {
    font-size: 18px;
    margin-bottom: 28px;
    color: #f2f2f2;
}

/* SOCIAL PILL */
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    padding: 18px 44px;
    border-radius: 999px;
    border: 1.5px solid #e91e63;
    margin-bottom: 48px;
}

.social-pill a {
    color: #f2dcdc;
    font-size: 26px;
    transition: all 0.25s ease;
}

.social-pill a:hover {
    color: #e91e63;
    transform: translateY(-3px);
}

/* BRAND */
.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* LOGO SVG */
.footer-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.footer-brand .brand-name {
    font-weight: 700;
    letter-spacing: 1px;
}

/* COPYRIGHT */
.copyright {
    font-size: 14px;
    color: #bdbdbd;
}

/* COUPON CARD */
.coupon-card {
    max-width: 520px;
    margin: 48px auto 36px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
    text-align: left;
}

.coupon-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.coupon-card label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 6px;
}

.coupon-row {
    display: flex;
    gap: 12px;
}

.coupon-row input {
    flex: 1;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 0 14px;
    font-size: 15px;
}

.coupon-btn {
    height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    border: none;
    background: #ff8aa5;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.coupon-btn:hover {
    background: #e91e63;
}

/* PAYMENT ACTIONS ROW */
.payment-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* UPLOAD */
.upload-btn {
    background: #ff2d6d;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
}

/* QUANTITY */
.quantity-pill {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    border-radius: 999px;
    overflow: hidden;
}

.quantity-pill button {
    background: none;
    border: none;
    color: #fff;
    padding: 10px 18px;
    font-size: 18px;
    cursor: pointer;
}

.quantity-pill span {
    padding: 0 16px;
    font-weight: 500;
}

/* TOTAL */
.total-pill {
    background: #f3f3f3;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    color: #111;
}

.total-pill strong {
    color: #ff2d6d;
}

/* AGREE TEXT */
.payment-agree {
    text-align: center;
    margin: 26px 0 18px;
    color: #aaa;
    font-size: 14px;
}

/* CONFIRM BUTTON */
.confirm-main {
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    padding: 14px 44px;
    border-radius: 999px;

    background: linear-gradient(135deg,
            #ff4d7e,
            #ff7aa2);

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;

    border: none;
    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(255, 77, 126, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transition: all 0.25s ease;
}

@media (max-width: 768px) {

    .coupon-row {
        flex-direction: column;
        gap: 10px;
    }

    .coupon-btn {
        width: 100%;
    }

}
