/* public/css/aksara.css */

/* --- PALETTE & VARS --- */
:root {
    --color-white: #FFFFFF;
    --color-black: #1a1a1a;
    --color-gold: #D4AF37;
    --color-gold-light: #F4E4BC;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(212, 175, 55, 0.3);
    --blur: 15px;
    --radius-xl: 30px; /* Rounded corner yang diminta */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
    padding-bottom: 90px; /* Space for mobile nav */
}

.serif-font, h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* --- NAVIGATION --- */
@media (min-width: 992px) {
    .navbar-aksara {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1050;
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        padding: 25px 12px;
        border-radius: 50px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .nav-icon-link {
        color: var(--color-black);
        font-size: 1.4rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .nav-icon-link:hover, .nav-icon-link.active {
        background-color: var(--color-black);
        color: var(--color-gold);
        transform: scale(1.1);
    }
    /* Tooltip */
    .nav-icon-link::before {
        content: attr(data-title);
        position: absolute;
        right: 60px;
        background: var(--color-black);
        color: var(--color-gold);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        white-space: nowrap;
    }
    .nav-icon-link:hover::before { opacity: 1; visibility: visible; right: 55px; }
}

@media (max-width: 991px) {
    .navbar-aksara { display: none; }
    .mobile-bottom-nav {
        position: fixed; bottom: 20px; left: 20px; right: 20px;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: flex; justify-content: space-around;
        padding: 15px 0; z-index: 9999;
        border: 1px solid var(--color-gold);
    }
    .bottom-nav-item {
        text-align: center; color: #888; text-decoration: none;
        font-size: 0.7rem; flex: 1;
    }
    .bottom-nav-item i { display: block; font-size: 1.4rem; margin-bottom: 2px; color: #fff; }
    .bottom-nav-item.active i { color: var(--color-gold); }
}

/* --- HERO & GENERAL --- */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Background Image Fix */
    background: url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek Parallax (diam saat scroll) */
}
/* Overlay supaya teks terbaca */
#home::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4); /* Putih transparan */
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
/* --- NEW DESIGN: ALBUM / LOOKBOOK CARD --- */
.album-card {
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Container Gambar */
.album-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Rounded halus */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Shadow lembut */
    aspect-ratio: 4/5; /* Rasio Portrait ala Instagram */
}

.album-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Efek Hover pada Gambar */
.album-card:hover .album-img-wrapper img {
    transform: scale(1.08); /* Zoom in halus */
}

/* Info di Bawah Gambar (Minimalis) */
.album-info {
    padding-top: 15px;
    text-align: center;
}

.album-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 5px;
}

/* Tombol WA yang "Clean" */
.btn-wa-simple {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.btn-wa-simple:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* Input Search yang lebih menyatu */
.search-album {
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 15px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-black);
}
.search-album:focus {
    box-shadow: none;
    border-bottom-color: var(--color-gold);
    background: transparent;
}
.search-album::placeholder { color: #ccc; font-style: italic; font-size: 1.2rem; }
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.divider {
    width: 80px; height: 4px; margin: 10px auto; border-radius: 2px;
    background: linear-gradient(90deg, #b38728, #fcf6ba, #bf953f, #fbf5b7, #aa771c);
    animation: shimmerGold 3s linear infinite;
}
@keyframes shimmerGold { 0% { background-position: 0 50%; } 100% { background-position: 100% 50%; } }

.btn-aksara {
    border: 1px solid var(--color-black);
    background: transparent; color: var(--color-black);
    padding: 12px 35px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 2px;
    transition: 0.4s;
}
.btn-aksara:hover { background: var(--color-black); color: var(--color-gold); }

/* --- RAMADAN CARDS (ROUNDED) --- */
.ramadan-card {
    border-radius: var(--radius-xl); /* Rounded banget */
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
}
.ramadan-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.ramadan-img-box { height: 300px; overflow: hidden; position: relative; }
.ramadan-img-box img { width: 100%; height: 100%; object-fit: cover; }
.badge-category {
    position: absolute; top: 15px; right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px; border-radius: 20px;
    font-size: 0.7rem; font-weight: bold;
}

/* --- PACKAGES (ROUNDED TALL CARD) --- */
.pricing-card {
    background: var(--color-white);
    border: 1px solid #eee;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl); /* Rounded 30px */
    transition: 0.3s;
    height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 500px; /* Agar terlihat tall seperti HP */
}
.pricing-card.featured {
    border: 2px solid var(--color-gold);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}
.package-name { font-size: 2.5rem; margin-bottom: 0.5rem; }
/* --- UPDATE: RAMADAN PRODUCT CARD (E-Commerce Style) --- */
.product-card {
    background: #fff;
    border: 1px solid #eee; /* Batas jelas */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    border-color: var(--color-gold); /* Highlight saat hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Image Wrapper 9:16 Ratio */
.product-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* KUNCI: Rasio Story/TikTok */
    overflow: hidden;
    cursor: zoom-in; /* Cursor kaca pembesar */
    background-color: #f9f9f9;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}
/* Overlay Icon "View" saat hover gambar */
.view-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.product-img-box:hover .view-overlay { opacity: 1; }
.view-icon {
    background: rgba(255,255,255,0.9);
    color: var(--color-black);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

/* Product Info Area */
.product-info {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #f5f5f5;
}
/* --- UPDATE: CONTACT & FOOTER FIX --- */
/* Menghapus padding bawah yang mungkin bikin putih-putih */
section#contact {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.contact-box {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 80px 20px;
    text-align: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: 0.3s;
    margin: 10px;
    min-width: 250px;
}

.contact-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

footer {
    background-color: #000; /* Hitam pekat */
    padding: 30px 0;
    color: #666;
    border-top: 1px solid #222;
    margin-top: 0;
}

/* Social Icons di Footer */
.social-link {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}
.social-link:hover { color: var(--color-gold); }