/* Pengaturan Umum */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Menambahkan Gambar Latar Padma Piazza dengan Overlay Gelap */
    background: linear-gradient(rgba(15, 32, 67, 0.8), rgba(27, 53, 98, 0.8)), 
                url('') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Kotak Pembungkus Utama (Efek Kaca Semitransparan) */
.container {
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #ff7675; /* Aksen warna agar logo stand out */
}

/* Tipografi */
h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.description {
    font-size: 1rem;
    color: #f1f2f6;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Kotak Hitung Mundur */
.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    min-width: 85px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.time-box p {
    font-size: 0.75rem;
    color: #b2bec3;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Formulir Pendaftaran */
/*.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    color: #2d3436;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    background-color: #ff7675;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e84393;
    transform: translateY(-2px);
}*/

/* Responsif Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    .container {
        padding: 30px 15px;
    }
    .countdown {
        gap: 6px;
    }
    .time-box {
        min-width: 70px;
        padding: 10px 5px;
    }
    .time-box span {
        font-size: 1.4rem;
    }
}






/* --- Tambahan Desain Tombol Navigasi dan Sosial Media --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    /*margin-top: 40px; */
    margin-top: 25px !important;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Warna Tombol Google Maps */
.maps-btn {
    background: rgba(219, 68, 85, 0.85); /* Warna merah khas pin lokasi */
}

.maps-btn:hover {
    background: #db4437;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219, 68, 55, 0.4);
}

/* Warna Tombol Instagram */
.ig-btn {
    background: rgba(225, 48, 108, 0.85); /* Warna gradasi/pink khas IG */
}

.ig-btn:hover {
    background: #e1306c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* Penyesuaian Ukuran Mobile */
@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}





/* --- Tambahan Desain Peta Interaktif --- */
.map-wrapper {
    margin-top: 35px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.map-wrapper iframe:hover {
    opacity: 1;
}

/* Modifikasi margin sosial links agar proporsional dengan peta */
/*.social-links {
    margin-top: 25px !important;
}*/





/* Penyesuaian Struktur Formulir Baru (Vertikal) */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.newsletter-form input, 
.newsletter-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    color: #2d3436;
    transition: border 0.3s ease;
}

.newsletter-form textarea {
    resize: none; /* Mencegah user merusak layout dengan menarik textarea */
    font-family: inherit;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    border: 2px solid #ff7675;
}

.newsletter-form button {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #ff7675;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 118, 117, 0.3);
}

.newsletter-form button:hover {
    background-color: #e84393;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(232, 67, 147, 0.4);
}


/* Styling Tambahan untuk Elemen Dropdown Select */
.newsletter-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    color: #2d3436;
    cursor: pointer;
    appearance: none; /* Menghilangkan tanda panah bawaan browser jika ingin custom */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d3436' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.newsletter-form select:focus {
    border: 2px solid #ff7675;
}

/* Mengatur warna opsi teks placeholder di dalam select */
.newsletter-form select:invalid {
    color: #757575;
}

.newsletter-form select option {
    color: #2d3436;
    background: #ffffff;
}

/* --- Tambahan Desain Tombol WhatsApp Dinamis --- */
#whatsapp-btn-container {
    width: 100%;
    margin-top: 5px;
    animation: fadeIn 0.4s ease-in-out;
}

.wa-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background-color: #25D366; /* Hijau resmi WhatsApp */
    color: white;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.wa-form-btn:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(18, 140, 126, 0.4);
}

/* Animasi Muncul Halus */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



