* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B9D;
    --secondary: #FEC260;
    --accent: #00D9FF;
    --purple: #9D4EDD;
    --green: #06D6A0;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
}

body {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFF9E5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Clouds Animation */
.clouds-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cloud {
    position: absolute;
    font-size: 4rem;
    opacity: 0.4;
    animation: float-cloud 20s infinite ease-in-out;
}

.cloud1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.cloud2 {
    top: 30%;
    left: -10%;
    animation-delay: 7s;
}

.cloud3 {
    top: 60%;
    left: -10%;
    animation-delay: 14s;
}

@keyframes float-cloud {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(110vw); }
}

/* Floating Balloons */
.balloons-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.balloon {
    position: absolute;
    font-size: 3rem;
    animation: float-balloon 8s infinite ease-in-out;
}

.balloon1 {
    bottom: -10%;
    left: 10%;
    animation-delay: 0s;
}

.balloon2 {
    bottom: -10%;
    left: 50%;
    animation-delay: 2s;
}

.balloon3 {
    bottom: -10%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float-balloon {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) rotate(20deg);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
    animation: rotate-star 3s infinite ease-in-out;
}

@keyframes rotate-star {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.logo-text {
    color: #D60045;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s;
    font-family: 'Fredoka', sans-serif;
}

.login-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.daftar-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: transform 0.3s;
}

/* Animations */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 10rem;
    background: linear-gradient(120deg, #FFE5EC 0%, #FFF5E1 50%, #E0F7FF 100%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#FF6B9D 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge-welcome {
    display: inline-block;
    background: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    animation: fade-in-up 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2D3436;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-title .line {
    display: block;
    animation: fade-in-up 1s ease;
}

.hero-title .line.highlight {
    animation-delay: 0.2s;
}

.hero-title .line.highlight span {
    display: inline-block;
    opacity: 0;
    animation: letter-reveal 0.5s forwards;
}

/* Staggered animation for each letter */
.hero-title .line.highlight span:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line.highlight span:nth-child(2) { animation-delay: 0.35s; }
.hero-title .line.highlight span:nth-child(3) { animation-delay: 0.4s; }
.hero-title .line.highlight span:nth-child(4) { animation-delay: 0.45s; }
.hero-title .line.highlight span:nth-child(5) { animation-delay: 0.5s; }
.hero-title .line.highlight span:nth-child(6) { animation-delay: 0.55s; }
.hero-title .line.highlight span:nth-child(7) { animation-delay: 0.6s; }
.hero-title .line.highlight span:nth-child(8) { animation-delay: 0.65s; }
.hero-title .line.highlight span:nth-child(9) { animation-delay: 0.7s; }
.hero-title .line.highlight span:nth-child(10) { animation-delay: 0.75s; }
.hero-title .line.highlight span:nth-child(11) { animation-delay: 0.8s; }
.hero-title .line.highlight span:nth-child(12) { animation-delay: 0.85s; }
.hero-title .line.highlight span:nth-child(13) { animation-delay: 0.9s; }
.hero-title .line.highlight span:nth-child(14) { animation-delay: 0.95s; }

@keyframes letter-reveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.highlight {
    color: #D60045;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-shadow: 3px 3px 0px #FFFFFF, 4px 4px 5px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    min-height: 1.6em; /* Mencegah layout bergeser saat mengetik */
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--primary);
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fade-in-up 1s ease 1.2s both;
}

.hero-stats-mini {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fade-in-up 1s ease 1.4s both;
    flex-wrap: wrap;
}

.stat-item-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255,255,255,0.6);
    padding: 0.6rem 1.2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.3s;
}

.stat-item-mini:hover {
    transform: translateY(-3px);
    background: white;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Fredoka', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.character-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morphBlob 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes morphBlob {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.character {
    font-size: 6rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.jump {
    animation: jump 1.5s infinite ease-in-out;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes jump {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 3s infinite ease-in-out;
    animation-delay: var(--delay);
}

.float-icon:nth-child(1) { top: 10%; left: 20%; }
.float-icon:nth-child(2) { top: 60%; left: 10%; }
.float-icon:nth-child(3) { top: 20%; right: 15%; }
.float-icon:nth-child(4) { bottom: 20%; right: 20%; }

.float-shape {
    position: absolute;
    opacity: 0.6;
    z-index: -1;
    animation: float 6s infinite ease-in-out;
}

.shape-circle {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    top: 15%;
    left: 10%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid var(--secondary);
    bottom: 30%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(360deg); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Tentang Section */
.tentang-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tentang-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.tentang-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tentang-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.slide-in {
    opacity: 0;
    animation: slide-in 0.8s forwards;
}

.slide-in.delay-1 { animation-delay: 0.2s; }
.slide-in.delay-2 { animation-delay: 0.4s; }

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Program Section */
.program-section {
    background: linear-gradient(135deg, #FFF5F7 0%, #E0F7FF 100%);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.program-card:hover {
    transform: scale(1.05) rotate(-2deg);
}

.program-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.3rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.wobble {
    animation: wobble 3s infinite ease-in-out;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* Berita Section */
.berita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.berita-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.berita-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.berita-image {
    height: 200px;
    overflow: hidden;
}

.berita-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.berita-card:hover .berita-image img {
    transform: scale(1.1);
}

.berita-content {
    padding: 1.5rem;
}

.berita-date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.berita-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--purple);
}

.fade-in {
    animation: fade-in 1s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Kontak Section */
.kontak-section {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF5E1 100%);
}

.kontak-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
}

.info-icon {
    font-size: 2.5rem;
}

.kontak-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kontak-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.kontak-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s;
}

.kontak-form input:focus,
.kontak-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.2);
}

.kontak-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content,
    .kontak-content {
        grid-template-columns: 1fr;
    }
    
    .tentang-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .character {
        font-size: 4rem;
    }

    .blob-bg {
        width: 300px;
        height: 300px;
    }
}

/* Tambahan untuk Halaman Tentang */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 5rem 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

.fasilitas-section {
    margin-bottom: 5rem;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fasilitas-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.fasilitas-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.fasilitas-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5F7, #FFF0F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.fasilitas-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.fasilitas-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.quote-section {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 4rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.quote-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.quote-content p {
    font-weight: 700;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Halaman Galeri & Berita Detail */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: #f9f9f9;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border, #eee);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Galeri Section */
.galeri-section {
    padding: 3rem 0;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.galeri-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}

.galeri-image {
    position: relative;
    height: 250px;
}

.galeri-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeri-item:hover .galeri-image img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeri-item:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.galeri-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.view-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--text-light);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}