* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #060b1f; 
    color: white;
}

.toast-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #0b1a4a 0%, #3e1b36 70%, #8b3434 100%);
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 20px;
}

.brand-name {
    font-size: clamp(60px, 12vw, 120px); 
    font-weight: 610;
    letter-spacing: 2px;
    margin-top: -15px;
    margin-bottom: 0px;
}

.hero-content .tagline{
    color: #ffffff;
    font-size:19px;
    margin-bottom: 0px;
    
}

.hero-content .tagline:nth-of-type(2){
    margin-top: 0px;
    margin-bottom: 60px; 
    font-size:20px;
}

.tagline {
    color: #ffffff;
    font-size:19px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 100px;
    margin-top: -5px;
    margin-bottom: 5px;
    color:white;
    text-align: center;
    display: inline-block;
    margin-bottom: 15px;

}

/* INPUT FIELD GROUPS */
.input-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    margin-top: 20px;
}

.input-group {
    background: white;
    padding: 6px 6px 6px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 420px;
    max-width: 90vw;
}

.input-group input {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    flex: 1;
    color: #333;
}

.btn-enter {
    display: inline-block;
    text-decoration: none;
    background: #0b215e;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
}

/* PROFILE ICON */
.profile-icon {
    width: 65px;
    height: 65px;
    border: 3px solid white;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    position: relative;
}

.notification-dot {
    width: 15px;
    height: 15px;
    background: #e63946;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
    border: 2px solid white;
}

.account-prompt p { font-weight: 600; }
.account-prompt a { color: #4cc9f0; font-weight: 700; }

/* CONTACT SECTION */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #8b3434 0%, #3e1b36 40%, #060b1f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 60px;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 20px;
    font-weight: 400;
}

.form-group input, .form-group textarea {
    padding: 15px 25px;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.btn-send {
    background-color: #060b1f;
    color: white;
    padding: 12px 45px;
    border-radius: 50px;
    border: 1px solid white;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    margin: 20px auto 0 auto;
    transition: 0.3s;
    display: block;
}


.btn-send:hover {
    background: #121b3a;
}

.menu-toggle {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    /* Ensure it has a height/width or you won't see it */
    padding: 10px; 
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    

    .hero {
        padding-top: 60px; /* Space for the navbar */
    }

    .hero-content {
        padding: 40px 20px;
    }

    .brand-name {
        font-size: 60px;
        margin-top: 10px;
    }

    .hero-content .tagline:nth-of-type(2) {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.4;
    }


    .input-container {
        width: 100%;
        justify-content: center;
    }

    .input-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        padding: 15px;
        border-radius: 20px;
        gap: 15px;
    }

    .input-group input {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .btn-enter {
        width: 100%;
        padding: 15px;
        font-size: 14px;
    }

    /* 3. EMAIL SECTION */
    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .contact-form {
        padding: 20px;
        margin: 0 10px;
    }

    .form-group label {
        font-size: 16px;
    }

    .btn-send {
        width: 100%;
        margin-top: 10px;
    }
}