body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-image: url('Background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 3px 3px 10px rgba(255, 105, 180, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cerita {
    max-width: 700px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Galeri Pinterest Style */
.gallery {
    column-count: 3;
    column-gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.photo-card {
    background: white;
    padding: 10px 10px 20px 10px;
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.photo-card img {
    width: 100%;
    height: auto; /* Ukuran tinggi otomatis/berbeda-beda */
    border-radius: 4px;
    display: block;
}

.caption {
    margin-top: 12px;
    color: #333;
    font-size: 1rem;
    font-style: italic;
    font-family: 'Cursive', sans-serif;
}

.photo-card:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .gallery { column-count: 2; }
}

@media (max-width: 480px) {
    .gallery { column-count: 1; }
    h1 { font-size: 2rem; }
}