/*
Theme Name: Yapupu Theme
Theme URI: #
Author: Yapupu Dev
Description: Tema otomatis dari Plugin Yapupu yang menyesuaikan design magis
Version: 2.1
*/
:root { --pink-light: #FFB7B2; --pink-hot: #FF69B4; --pink-bg: #FFFAFB; --blue-cotton: #ADD8E6; --white-ice: #FFFFFF; --text-main: #555555; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Nunito', sans-serif; }
body { background: linear-gradient(135deg, var(--white-ice) 20%, #FFF0F5 100%); color: var(--text-main); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }
header { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 20px rgba(255, 182, 193, 0.4); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid rgba(255, 255, 255, 0.5); }
.logo { font-size: 26px; font-weight: 900; color: var(--pink-hot); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: transform 0.3s; }
.logo:hover { transform: scale(1.05); text-shadow: 0 0 10px rgba(255,105,180,0.5); }
.logo img { height: 45px; width: auto; border-radius: 10px; box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2); }
nav ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; align-items: center; }
nav ul li a { text-decoration: none; color: var(--text-main); font-weight: 800; transition: all 0.3s ease; position: relative; }
nav ul li a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: -5px; left: 0; background: var(--pink-hot); transition: width 0.3s; border-radius: 2px; }
nav ul li a:hover { color: var(--pink-hot); }
nav ul li a:hover::after { width: 100%; }

.btn-primary { background: linear-gradient(135deg, var(--pink-light), var(--pink-hot)); color: var(--white-ice) !important; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-weight: 800; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4); display: inline-block; border: none; cursor: pointer; position: relative; overflow: hidden; text-align:center; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shimmer 3s infinite; }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 20px rgba(255, 105, 180, 0.5); }
@keyframes shimmer { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

.btn-secondary { background: linear-gradient(135deg, var(--blue-cotton), #87CEFA); box-shadow: 0 5px 15px rgba(135, 206, 250, 0.4); }
.btn-secondary:hover { box-shadow: 0 10px 20px rgba(135, 206, 250, 0.5); }

.glass-panel { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 8px 32px rgba(255, 182, 193, 0.25); border-radius: 24px; }

footer { background-color: var(--pink-bg); text-align: center; padding: 40px 20px; font-weight: 800; color: var(--pink-hot); position: relative; overflow: hidden; }
footer::before { content: '✨'; position: absolute; font-size: 40px; opacity: 0.1; top: 10px; left: 10%; animation: float 4s infinite; }
footer::after { content: '🍭'; position: absolute; font-size: 40px; opacity: 0.1; bottom: 10px; right: 10%; animation: float 3s infinite reverse; }
footer img { height: 35px; border-radius: 8px; vertical-align: middle; margin-right: 10px; box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2); }

@media(max-width: 768px) {
    header { flex-direction: column; gap: 10px; padding: 15px; }
    nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap:10px; }
    .logo { font-size: 20px; }
    .btn-primary { padding: 10px 20px; font-size: 14px; width:100%; }
}