:root {
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-solid: #D4AF37;
    --dark-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.95);
}

body { 
    margin: 0; 
    font-family: 'Montserrat', sans-serif; 
    background: var(--dark-bg); 
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section dengan Parallax */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

.hero p.episode {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-top: 10px;
    color: #eee;
}

/* Info Bar */
.info-bar {
    background: var(--gold-gradient);
    color: #000;
    padding: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Pricing Card */
.pricing-section {
    padding: 100px 20px;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

.price-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.price-card::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 17px;
    opacity: 0.3;
}

.early-bird-tag {
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 20px;
    font-weight: 900;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

/* Features Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.benefit-item i {
    color: var(--gold-solid);
}

/* Button & QR Section */
.btn-book {
    background: var(--gold-gradient);
    color: #000;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-book:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .info-bar { flex-direction: column; gap: 10px; padding: 15px; }
    .price-value { font-size: 2.5rem; }
    .hero h1 { font-size: 2.5rem; }
}

/* Footer Styles - Versi Minimalist & Professional */
.main-footer {
    background: #000;
    padding: 60px 20px 30px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 50px;
    text-align: center; /* Memastikan semua teks di tengah */
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo-text {
    font-family: 'Cinzel', serif;
    color: var(--gold-solid);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.footer-collab {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-collab b, .footer-collab strong {
    color: var(--gold-solid);
}

.footer-contact-info {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-contact-info i {
    color: var(--gold-solid);
    margin-right: 5px;
}

.separator {
    color: #333;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #555;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsif untuk Mobile */
@media (max-width: 600px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 10px;
    }
    .separator {
        display: none;
    }
}

/* Button Whatsapp (Phase 2) */
.btn-whatsapp {
    border: 2px solid var(--gold-solid);
    color: var(--gold-solid);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Shirt Placeholders */
.shirt-placeholder {
    background: #222;
    border: 1px solid #333;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.shirt-placeholder:hover {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
}

/* Shirt Card Style */
.shirt-card {
    background: #151515;
    border: 1px solid #222;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.shirt-card:hover {
    border-color: var(--gold-solid);
    transform: translateY(-5px);
}

.shirt-img-placeholder {
    background: #222;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #333;
    margin-bottom: 15px;
}

.shirt-info {
    font-weight: bold;
    color: var(--gold-solid);
    letter-spacing: 2px;
}

/* Size Table Style */
.size-guide-container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    color: #ccc;
}

.size-table th {
    background: var(--gold-gradient);
    color: #000;
    padding: 12px;
    font-weight: 900;
}

.size-table td {
    padding: 15px;
    border-bottom: 1px solid #222;
}

.size-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolum seperti dalam gambar b5b7ca.png */
    gap: 30px 40px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Garisan halus bawah */
    padding-bottom: 10px;
    white-space: nowrap;
}

.benefit-item i {
    color: var(--gold-solid);
    font-size: 1rem;
    width: 20px; /* Supaya ikon sejajar vertical */
    text-align: center;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolum di phone supaya tak sempit */
        gap: 20px;
    }
}

/* Styling CTA Di Dalam Kad Harga (Lokasi 1) */
.card-cta-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.limited-text {
    color: #ff4d4d; /* Warna merah amaran */
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.btn-register-card {
    display: inline-block;
    background: var(--gold-gradient); /* Gunakan gradient emas yang kita buat sebelum ini */
    color: #000;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-register-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Styling CTA Mobile/Below-Card (Lokasi 2) */
.mobile-cta-area {
    text-align: center;
    margin-top: -10px; /* Tarik sedikit supaya rapat dengan card */
    padding-bottom: 50px;
}

.btn-register-mobile {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--gold-solid);
    color: var(--gold-solid);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-register-mobile:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.03);
}

/* Penyesuaian Responsif untuk Mobile */
@media (max-width: 768px) {
    .price-main {
        font-size: 3.5rem; /* Harga lebih kecil di mobile */
    }
    
    .currency {
        font-size: 1.2rem;
        top: -20px;
    }
    
    .btn-register-card {
        width: 100%; /* Penuhkan butang di mobile */
        padding: 15px;
        font-size: 1.1rem;
    }
}

.contact-section {
    padding: 100px 20px;
    /* Gradient Emas ke Hitam yang sangat halus */
    background: radial-gradient(circle at center, #1a150a 0%, #050505 100%);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

/* Tambah efek cahaya di belakang teks */
.contact-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gold-solid);
    filter: blur(150px);
    opacity: 0.1; /* Cahaya malap sahaja */
    z-index: 1;
}

.contact-section h3 {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 3px;
}
