/* --- RESET & DASAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e7e7e7;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* --- MOBILE VIEW LOCK --- */
.mobile-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background-color: #0c0a09;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow-x: hidden;
}

/* --- SECTION 1: HERO (FIXED POSITION) --- */
.hero-section {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background-image: url('upload/bg.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(20, 17, 14, 0.9) 0%, rgba(20, 17, 14, 0.6) 40%, transparent 100%);
    z-index: 2;
    transition: opacity 0.1s linear;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
    color: white;
}

.hero-header, .hero-text-wrapper, .scroll-indicator {
    transition: opacity 0.1s linear; /* Biar JS scroll-nya smooth */
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 15px; /* Sesuaikan angka ini untuk membesarkan/mengecilkan logo */
    width: auto;  /* Memastikan proporsi logo tidak peyang */
    object-fit: contain;
}

.official-text {
    font-size: 8px;
    letter-spacing: 1px;
}

.hero-text-wrapper {
    text-align: center;
    margin-bottom: 40px;
    transform: translateY(-130px); /* Minus berarti geser ke atas 80 pixel */

}

.cursive-title {
    font-family: 'Allison', cursive;
    font-size: 3.5rem;
    font-weight: 400;


}

.hero-desc {
    font-size: 11px;
    margin-top: -10px;
    line-height: 1.6;
    color: #d1d1d1;
    max-width: 90%;
    margin: 0 auto;
}

.scroll-indicator {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    animation: bounce 2s infinite;
    margin-bottom: 50px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- SECTION 2: KONTEN (TRANSPARENT BACKGROUND) --- */
.content-section {
    position: relative;
    margin-top: 100vh;
    background: transparent; /* Dibuat transparent agar tembus ke Hero */
    z-index: 10;
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- GLASS NEUMORPHISM CARDS --- */
.glass-card {
    /* Base Glassmorphism */
    background: rgba(30, 24, 18, 0.35); /*] Sedikit kecoklatan transparan */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Highlight tipis di atas dan kiri ala Glass/Neumorphism */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    
    border-radius: 24px;
    
    /* Multiple Shadows: Dark shadow untuk kedalaman, Inner shadow tipis */
    box-shadow: 
        10px 15px 35px rgba(0, 0, 0, 1), 
        inset 1px 1px 3px rgba(255, 255, 255, 0.05);
        
    padding: 25px;
    color: white;
}

/* Card 1: Profile */
.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(180, 140, 90, 0.5);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h2 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.profile-info p {
    font-size: 0.7rem;
    color: #b5b5b5;
    margin-top: 4px;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    margin: 20px 0;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.wa-btn {
    flex: 1;
    background: rgba(180, 140, 90, 0.2);
    border: 1px solid rgba(180, 140, 90, 0.4);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover, .wa-btn:hover {
    background: rgba(180, 140, 90, 0.4);
}

.order-text {
    font-size: 10px;
    color: #b0b0b0;
    text-align: center;
}

/* Card 2: Slideshow */
.gallery-card {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
}

.slideshow-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Shadow pada gambar agar lebih menonjol */
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slides-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-info {
    padding: 20px 5px 5px 5px;
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.75rem;
    color: #b5b5b5;
    margin-top: 5px;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    font-size: 0.65rem;
    color: #a0a0a0;
}

.info-item .value {
    font-size: 0.85rem;
    font-weight: 600;
}

.stars i {
    color: #e6b877; /* Memberi sedikit warna emas pada bintang */
    font-size: 0.7rem;
}

/* --- DARK GLASSMORPHISM MODAL WA --- */
.wa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 10, 0.2); /* Overlay gelap kecoklatan */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}

.wa-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Base Modal = Style .glass-card */
.wa-modal-content {
    background: rgba(30, 24, 18, 0.4); /* Lebih pekat dikit dari 0.35 agar teks mudah dibaca */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 10px 15px 35px rgba(0, 0, 0, 1), 
                inset 1px 1px 3px rgba(255, 255, 255, 0.05);
    
    padding: 35px 25px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    color: white;
    
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-modal.active .wa-modal-content {
    transform: scale(1);
}

.modal-title {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* --- BUTTON LIST --- */
.wa-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

/* Item Admin = Style Action Buttons */
.wa-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 20px; 
    text-decoration: none;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.wa-item:hover, .wa-item:active {
    background: rgba(180, 140, 90, 0.2);
    border: 1px solid rgba(180, 140, 90, 0.4);
    transform: scale(0.98);
}

.wa-icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 15px;
    box-shadow: 10px 15px 35px rgba(0, 0, 0, 0.6), 
                inset 1px 1px 3px rgba(255, 255, 255, 0.05);
}

.wa-info {
    text-align: left;
    flex-grow: 1;
}

.wa-info .admin-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Panah indikator kecil di kanan */
.wa-item::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Tombol Close Pill = Style wa-btn */
.close-modal {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    padding: 12px 35px;
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover, .close-modal:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
}

.footer-section {
    padding: 20px 20px;
    text-align: center;
    background-color: transparent;
}

.footer-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #999;
   /* text-transform: uppercase;*/
    margin-bottom: 4px;
}

.footer-credit {
    font-size: 10px;
    color: #bbb;
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #333;
}