/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BACKGROUND */
body {
    height: 100vh;
    color: white;
    background: url("./images/coming-soon-bg.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* DARK OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

/* MAIN CONTAINER */
.container {
    text-align: center;
    max-width: 650px;
    padding: 20px;
}

/* LOGO */
.logo {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* HEADINGS */
h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.subtitle {
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* FORM */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notify-form input {
    padding: 12px 15px;
    border-radius: 25px;
    border: none;
    width: 260px;
}

.notify-form button {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background: #0a7cff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.notify-form button:hover {
    background: #065fd4;
}

/* SOCIAL LINKS */
.socials {
    margin-top: 30px;
}

.socials a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    opacity: 0.8;
    font-size: 1.4rem;
}

.socials a:hover {
    opacity: 1;
}

/* FOOTER */
footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}