/* import font */
@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');


/* -------------------------------------------
    MAIN - index.html
---------------------------------------------- */

.hero {
    background-image: url("../img/bg/explr.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    backdrop-filter: blur(8px); /* blur background behind it */
    -webkit-backdrop-filter: blur(8px); /* for Safari */
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
}

.hero-content h2 {
    background: rgba(0, 0, 0, 0);
    font-family: "Nata Sans", sans-serif;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    background: rgba(0, 0, 0, 0);
    font-family: "Nata Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.discord-btn {
    background-color: #5865F2;
    color: white;
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: scale(1.05);
}

.erlc-btn {
    background-color: #28a745;
    color: white;
}

.erlc-btn:hover {
    background-color: #1e7e34;
    transform: scale(1.05);
}
