/* --- 1. RESET & VARIABLES --- */
:root {
    --bg-dark: #1a0b2e;
    --bg-purple: #431c5d;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #ff007f; /* Pink Neon */
    --accent-yellow: #ffde59; /* Kuning Emas */
    --text: #ffffff;
    --wa-green: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(to bottom right, #1a0b2e, #3c126b);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* --- 2. BACKGROUND PARALLAX --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    transition: transform 0.2s ease-out; 
}
.shape-1 { width: 500px; height: 500px; background: #6a1b9a; top: -100px; left: -100px; }
.shape-2 { width: 400px; height: 400px; background: #ff007f; bottom: -100px; right: -100px; }

/* --- 3. NAVBAR GLASS --- */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: transparent;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.glass-nav.scrolled {
    background: rgba(26, 11, 46, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 8%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.glass-nav ul { 
    display: flex; 
    gap: 40px; 
    list-style: none; 
    margin: 0 auto; 
}

.glass-nav a {
    text-decoration: none; color: rgba(255,255,255,0.8);
    font-weight: 600; font-size: 1rem; transition: 0.3s;
    position: relative;
}
.glass-nav a:hover { color: var(--accent-yellow); }

/* --- 4. HERO SECTION --- */
header {
    min-height: 90vh; display: flex; align-items: center;
    padding: 0 8%; position: relative;
}
.hero-container {
    display: flex; justify-content: space-between;
    align-items: center; width: 100%; gap: 2rem;
}
.hero-text { flex: 1; max-width: 600px; }
.hero-text h1 {
    font-family: 'Fredoka One', cursive; font-size: 4rem;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-yellow);
    text-shadow: 0 0 20px rgba(255, 222, 89, 0.3);
}
.hero-text p {
    font-size: 1.2rem; margin-bottom: 2.5rem;
    opacity: 0.9; line-height: 1.8;
}
.hero-img-box { flex: 1; display: flex; justify-content: flex-end; }

.hero-img-box .float-wrapper {
    position: relative;
    width: 500px; height: 500px; 
    display: flex; justify-content: center; align-items: center;
}

.blob-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #ffffff; 
    border-radius: 64% 36% 27% 73% / 59% 43% 57% 41%; 
    opacity: 0.8; 
    z-index: 1;
    box-shadow: 0 0 60px rgba(255,255,255,0.3); 
}

.hero-food-img {
    position: relative; 
    width: 85%; 
    height: auto;
    border-radius: 25px;
    object-fit: contain; z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); 
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-food-img:hover {
    transform: scale(1.08) translateY(-15px); 
    cursor: pointer;
}

/* --- 5. ANIMASI & GAMBAR LAIN --- */
.blob-img {
    width: 100%; max-width: 500px; height: auto;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}
.main-blob { border-radius: 64% 36% 27% 73% / 59% 43% 57% 41%; }
.secondary-blob { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }

.float-anim { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* --- 6. BUTTONS --- */
.btn-liquid {
    padding: 15px 45px; background: var(--accent);
    color: white; text-decoration: none; font-weight: 700;
    border-radius: 50px; display: inline-block;
    box-shadow: 0 5px 25px rgba(255, 0, 127, 0.5);
    transition: 0.3s;
}
.btn-liquid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 0, 127, 0.7);
}

/* --- 7. SECTIONS GENERAL --- */
section { padding: 5rem 8%; }
.title-blob {
    text-align: center; font-family: 'Fredoka One';
    font-size: 2.8rem; margin-bottom: 4rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- 8. ABOUT --- */
.content-row { display: flex; align-items: center; gap: 5rem; }
.reverse { flex-direction: row-reverse; }
.text-col, .img-col { flex: 1; }
.stats { display: flex; gap: 50px; margin-top: 2.5rem; }
.stat-item h3 {
    font-size: 3rem; color: var(--accent-yellow);
    font-family: 'Fredoka One';
}

/* --- 9. FEATURES (BLOB CARDS) --- */
.cards-container { 
    display: flex; justify-content: center; 
    gap: 3rem; flex-wrap: wrap; 
}
.liquid-card {
    background: rgba(67, 28, 93, 0.4); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    padding: 3rem 2rem; 
    text-align: center;
    flex: 1; min-width: 280px; max-width: 350px; 
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
    transition: 0.4s;
    animation: floatCard 6s ease-in-out infinite alternate;
}
.liquid-card:nth-child(2) {
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%; animation-delay: 1s;
}
.liquid-card:nth-child(3) {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; animation-delay: 2s;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
.liquid-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    border-color: var(--accent); 
    background: rgba(255,255,255,0.1); 
}
.liquid-card i { 
    font-size: 3rem; color: var(--accent-yellow); margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 222, 89, 0.3));
}

/* --- 10. LAYOUT SHOWCASE MENU TUNGGAL --- */
.showcase-menu {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-showcase-img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-img {
    width: 100%;
    max-width: 380px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-img:hover {
    transform: rotate(45deg) scale(1.05);
    cursor: pointer;
}

.circle-bg-large {
    position: absolute;
    width: 400px; height: 400px;
    background: linear-gradient(45deg, var(--accent), #6a1b9a);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7; filter: blur(15px);
    animation: spin 15s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.tag-showcase {
    position: absolute;
    top: 10px; right: 15%;
    z-index: 3;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem; font-weight: 700;
    background: linear-gradient(45deg, #ff416c, #ff4b2b); 
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.menu-showcase-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.menu-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lauk-list {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.lauk-list li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.lauk-list i {
    color: var(--wa-green);
    margin-right: 12px;
    font-size: 1.2rem;
}

.price-action {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* --- 11. TESTIMONI --- */
.review-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; max-width: 1000px; margin: 0 auto;
}
.review-card {
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem; border-radius: 25px;
}
.review-card span {
    color: var(--accent-yellow); font-weight: 700;
    display: block; margin-top: 1.5rem; text-align: right;
}

/* --- 12. MAP & FOOTER --- */
footer {
    background: #0f051c;
    margin-top: 5rem;
}

.footer-glass {
    padding: 4rem 8% 2rem;
    background: linear-gradient(to top, #0f051c, rgba(15, 5, 28, 0.9));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-col {
    display: flex; flex-direction: column; align-items: center;
}

.footer-col h3 {
    font-family: 'Fredoka One'; color: var(--accent-yellow);
    margin-bottom: 1.5rem; font-size: 1.5rem;
}
.footer-col p { opacity: 0.8; line-height: 1.8; }

.copyright {
    text-align: center; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6; font-size: 0.9rem;
}

/* --- 13. WA BUTTON --- */
.wa-expand {
    position: fixed; bottom: 30px; right: 30px;
    width: 65px; height: 65px;
    background: var(--wa-green); color: white;
    border-radius: 35px; display: flex; align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.6);
    z-index: 100; overflow: hidden;
    transition: all 0.5s;
}
.wa-expand i { font-size: 28px; position: absolute; left: 19px; }
.wa-text {
    opacity: 0; max-width: 0; margin-left: 55px;
    font-weight: 700; transition: all 0.5s ease; white-space: nowrap;
}
.wa-expand:hover { width: 200px; }
.wa-expand:hover .wa-text { opacity: 1; max-width: 150px; }

/* --- 14. SCROLL REVEAL --- */
.reveal {
    transform: translateY(100px); opacity: 0; transition: all 1s ease;
}
.reveal.active {
    transform: translateY(0); opacity: 1;
}

/* --- 15. RESPONSIVE --- */
@media (max-width: 968px) {
    header { padding-top: 8rem; min-height: auto; }
    .hero-container, .content-row, .showcase-menu {
        flex-direction: column; text-align: center; gap: 3rem;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-img-box .float-wrapper { width: 350px; height: 350px; margin: 0 auto; }
    .glass-nav ul { display: none; }
    .circle-bg-large { width: 300px; height: 300px; }
    .showcase-img { max-width: 280px; }
    .price-action {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* --- BAHASA TOGGLE SWITCH --- */
.lang-switch {
    margin-left: 20px;
    position: relative;
    display: inline-block;
}

.lang-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 70px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--accent-yellow);
    border-radius: 30px;
    position: relative;
    padding: 0 5px;
    transition: 0.3s;
}

.lang-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    z-index: 2;
    flex: 1;
    text-align: center;
    user-select: none;
}

.slider {
    position: absolute;
    height: 24px;
    width: 32px;
    left: 3px;
    bottom: 2px;
    background-color: var(--accent);
    border-radius: 20px;
    transition: 0.4s;
    z-index: 1;
}

input:checked + .switch-label .slider {
    transform: translateX(32px);
    background-color: var(--accent-yellow);
}

@media (max-width: 968px) {
    .lang-switch {
        position: relative;
        top: 0;
        right: 0;
        margin: 0;
    }
    .glass-nav {
        padding: 1rem 5%; 
    }
}

/* --- 16. LOGO IMAGES --- */
.nav-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

/* --- UPDATE HERO IMAGE --- */
.hero-img-box .float-wrapper {
    position: relative;
    width: 100%; 
    max-width: 450px;
    height: 450px; 
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto;
}

/* Bentuk gambar langsung dijadikan organik (blob) */
.hero-food-img {
    width: 100%; 
    height: 100%;
    object-fit: cover; /* Agar gambar tidak gepeng */
    border-radius: 64% 36% 27% 73% / 59% 43% 57% 41%; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 0.1); /* Garis tipis estetik */
    z-index: 2;
    animation: morphing 8s ease-in-out infinite; /* Animasi bergerak natural */
}

/* HAPUS KODE .hero-food-img:hover YANG LAMA DI SINI */

/* Tambahkan ini di bagian bawah animasi (dekat @keyframes floating) */
@keyframes morphing {
    0% { border-radius: 64% 36% 27% 73% / 59% 43% 57% 41%; }
    50% { border-radius: 40% 60% 50% 50% / 40% 50% 50% 60%; }
    100% { border-radius: 64% 36% 27% 73% / 59% 43% 57% 41%; }
}

