/* ===== styles/main.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;600;700&display=swap');

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

body,
html {
    width: 100%;
    height: 100%;
    background-color: #050507;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Latar Belakang Teks Berulang (ibnvhasan) */
#bg-pattern {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1.2;
    word-wrap: break-word;
    z-index: 0;
    pointer-events: none;
    text-align: justify;
    transform: rotate(-10deg);
    user-select: none;
}

/* Kontainer Utama */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

.welcome {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8892b0;
    margin-bottom: 10px;
    text-align: center;
}

/* Kanvas untuk Particle Animation Teks */
canvas {
    display: block;
    width: 100%;
    height: 250px;
    cursor: crosshair;
}

.email-btn {
    font-size: 1rem;
    color: #64ffda;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 4px;
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.email-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
    transform: translateY(-2px);
}

/* Penyesuaian untuk Smartphone */
@media (max-width: 600px) {
    .welcome {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    canvas {
        height: 150px;
    }

    #bg-pattern {
        font-size: 1rem;
    }
}