/* -------------------- Logo -------------------- */
.logo {
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
    font-size: 120px;
    font-family: 'Montserrat', sans-serif;
}

.logo span:first-child {
    color: #00c48c;
}

.logo span:last-child {
    color: #ff6b6b;
}

/* -------------------- Container -------------------- */
.container {
    border: 3px solid white;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 800px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
    margin: 20px auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -------------------- Body -------------------- */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    flex-direction: column;
}

/* -------------------- Paragraph -------------------- */
.container p {
    font-size: 20px;
    color: black;
    margin-top: 5px;
    line-height: 1.4;
    word-wrap: break-word;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 0px;
}

/* -------------------- Button -------------------- */
.container .button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.container .button button {
    padding: 10px 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #00c48c; 
    border-radius: 30px;
    background-color: #ffffff;
    color: #00c48c;
    cursor: pointer;
    transition: 0.3s ease;
}

.container .button button:hover {
    background-color:#00c48c;
    border-color: #00c48c;
    color: #ffffff;
}

/* -------------------- Footer (Email below Start button, emoji centered) -------------------- */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; /* space below Start button */
    position: relative;
}

/* -------------------- Email Pop-Down Effect -------------------- */
.email-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.email-wrapper .emoji {
    font-size: 24px;
    color: #00c48c;
    cursor: pointer;
    display: block; /* center emoji independently */
}

/* Email hidden by default, appears below the emoji on hover */
.email-wrapper .email-text {
    display: none; /* hidden initially */
    margin-top: 8px; /* space below emoji */
    white-space: nowrap;
    color: #00c48c;
    text-decoration: none;
    font-size: 16px;
}

.email-wrapper:hover .email-text {
    display: block; /* appear below emoji */
}

/* ---------------------- Responsive ---------------------- */

/* Tablet */
@media (max-width: 768px) {
    .logo {
        font-size: 120px;
    }

    .container p {
        font-size: 20px;
    }

    .container .button button {
        font-size: 16px;
        padding: 16px 32px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 60px;
    }

    .container {
        padding: 15px 10px;
        width: 95%;
        border: none;
    }

    .container p {
        font-size: 14px;
        line-height: 1.5;
    }

    .container .button button {
        font-size: 14px;
        padding: 14px 28px;
    }

    .footer {
        margin-top: 30px;
    }

    .footer p {
        font-size: 16px;
    }
}
