* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ganti URL di bawah dengan path gambar kopi Anda */
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=2070') no-repeat center center/cover;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Membuat gambar sedikit lebih gelap */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.content-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

p {
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Animasi Uap (Steam Effect) */
.steam-container {
    height: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.steam {
    width: 4px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    border-radius: 50%;
    filter: blur(4px);
    animation: rise 2s infinite ease-in-out;
}

@keyframes rise {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-40px) scaleX(2); opacity: 0; }
}

#steam2 { animation-delay: 0.4s; }
#steam3 { animation-delay: 0.8s; }

/* Social Links */
.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    letter-spacing: 1px;
}

/* Entrance Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
