@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700;900&family=Montserrat:wght@300;400;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: rgb(248, 248, 248);
    padding-bottom: 3%;
}

.hero-container {
    position: relative;
    width: 85%;
    height: 85vh;
    margin: 0 auto;
    margin-top: 40px; 
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) blur(2px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    color: white;
}

.left-side, .right-side {
    width: 45%;
}

.title {
    font-family: "Merriweather", serif;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 10px 0;
}

.subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
}

.description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.divider-vertical {
    width: 2px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 40px;
}

.bottom-section {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.divider-horizontal {
    width: 50%;
    height: 2px;
    background-color: white;
    margin: 0 auto 20px auto;
    opacity: 0.7;
}

.coming-soon {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.logo-top {
    width: 200px;
    height: auto;
    display: block;
    margin: 20px auto 10px auto;
    border-radius: 15px;
    margin-top: 5px;
}

@media (max-width: 992px) {

    .hero-container {
        width: 90%;
        height: 90vh;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        top: 12%;
    }

    .left-side, .right-side {
        width: 100%;
        margin-bottom: 20px;
    }

    .divider-vertical {
        display: none;
    }

    .title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
        margin-top: 15%;
    }

    .divider-horizontal {
        width: 70%;
    }

    .hero-content {
        top: 10%;
    }
}
