* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;

    color: #333;

    line-height: 1.5;
}

/* Top bar */

.top-bar {
    background: linear-gradient(90deg, #3acfd5, #3a4ed5);

    padding: 30px 10px 20px 20px;

    display: flex;

    justify-content: space-around;

    align-items: center;

    color: #fff;

    font-size: 14px;

    flex-wrap: wrap;
}

.top-bar div {
    display: flex;

    align-items: center;

    margin: 5px 15px;
}

.top-bar i {
    margin-right: 6px;
}

/* Main layout */

.hero {
    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    align-items: center;

    padding: 40px 5%;

    background: #fff url("../img/welcome/landing-crop.png") no-repeat;

    background-size: cover;

    min-height: 90vh;
}

.hero-left {
    flex: 1;

    min-width: 280px;

    padding: 20px;
}

.hero-left img {
    max-width: 200px;

    margin-bottom: 20px;
}

.hero-left h1 {
    font-family: "Montserrat", sans-serif;

    font-size: 50px;

    font-weight: 900;

    margin-bottom: 10px;

    line-height: 60px;
}

.hero-left h1 span {
    color: #0097a7;

    font-family: "Dancing Script", cursive;

    font-style: italic;

    font-weight: 900;

    font-size: 50px;
}

.hero-left p {
    font-size: 1.2rem;

    margin-bottom: 30px;
}

/* Notify form */

.notify-box {
    display: flex;

    max-width: 550px;

    border: 2px solid #3acfd5;

    border-radius: 50px;

    overflow: hidden;

    margin-top: 30px;
}

.notify-box input {
    flex: 1;

    border: none;

    padding: 20px 30px;

    font-size: 1rem;

    outline: none;
}

.notify-box button {
    border: none;

    border-radius: 50px;

    background: linear-gradient(to right, #3acfd5, #3a4ed5);

    color: white;

    padding: 12px 50px;

    font-size: 1.5rem;

    cursor: pointer;

    transition: background 0.3s ease;
}

.notify-box button:hover {
    background: #3acfd5;
}

/* Hero right */

.hero-right {
    flex: 1;

    min-width: 280px;

    text-align: center;
}

.hero-right img {
    max-width: 100%;

    border-radius: 12px;
}

.responseMsg {
    font-size: 12px;

    margin-top: 5px;
}

/* Responsive */

@media (min-width: 600px) and (max-width: 1024px) {
    .hero {
        background-position: top center;

        background-size: cover;

        padding: 30px 5%;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .notify-box {
        max-width: 450px;
    }

    .notify-box button {
        padding: 12px 30px;

        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 10px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;

        text-align: center;
    }

    .hero-left {
        padding: 10px;
    }

    .notify-box {
        margin: 0 auto;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .hero {
        background-position: right center;

        background-size: cover;

        padding: 15px 5%;

        position: relative;

        overflow: hidden;
    }

    /* Blurred background */

    .hero::before {
        content: "";

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

        background: rgba(255, 255, 255, 0.6); /* White overlay */

        z-index: 1; /* stays behind content */
    }

    .top-bar,
    .hero-left {
        position: relative;

        z-index: 2;
    }

    .hero-left h1 {
        font-size: 20px;

        line-height: 40px;
    }

    .hero-left h1 span {
        font-size: 20px;
    }

    .notify-btn {
        width: 100%;

        font-size: 12px;

        padding: 14px;
    }

    .notify-box {
        max-width: 300px;

        margin-top: 10px;
    }

    .notify-box input {
        padding: 12px;

        font-size: 12px;
    }

    .notify-box button {
        padding: 12px;

        font-size: 12px;
    }

    .top-bar {
        text-align: center;

        font-size: 14px;
    }
}
