/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
}


/* =========================
   HERO
========================= */

.hero {
    width: 100%;
    min-height: 100vh;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url("hero.webp");
    background-size: cover;
    background-position: center 72%;
    background-repeat: no-repeat;

    animation: slowZoom 25s ease-in-out infinite alternate;
}

/* =========================
   DESKTOP CONTENT
========================= */

.content {

      position: relative;
    z-index: 1;

    width: 100%;

    padding-top: 18vh;
    padding-left: 9vw;
    padding-right: 9vw;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


/* =========================
   LEFT TEXT
========================= */

.left-text {
    width: 390px;

    color: white;

    text-align: center;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    line-height: 1.4;

    justify-self: start;
   
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}


/* =========================
   CENTRE LOGOS
========================= */

.center-logos {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


/* =========================
   MAAYON LOGO
========================= */

.maayon-logo {

    width: 140px;

    height: auto;

    display: block;

   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}


/* =========================
   X
========================= */

.x {

    color: white;

    font-family: "El Messiri", sans-serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1;

    margin: 0 5px;
   
   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}


/* =========================
   ANJANA LOGO
========================= */

.anjana-logo {

    width: 140px;

    height: auto;

    display: block;

   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}


/* =========================
   RIGHT TEXT
========================= */

.right-text {

    width: 390px;

    color: white;

    text-align: left;

    justify-self: end;
}


/* KAILASH AVENUE */

.project-name {

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 600;

    letter-spacing: 8px;

    line-height: 1.3;

   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}


/* COMING SOON */

.coming-soon {

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 600;

    letter-spacing: 8px;

    line-height: 1.5;

   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
/* =========================
   ANIMATION
========================= */
.left-text {
    animation: fadeUp 1.5s ease-out 0.3s both;
}

.center-logos {
    animation: fadeUp 1.5s ease-out 1s both;
}

.right-text {
    animation: fadeUp 1.5s ease-out 1.8s both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes slowZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }

}

@keyframes mobileZoom {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.08);
    }

}



/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {


   .hero::before {
    animation-name: mobileZoom;
}
    .content {

        padding: 50px 25px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 35px;
    }


    .left-text {

        width: 100%;

        font-size: 15px;
    }


    .center-logos {

        gap: 15px;
    }


    .maayon-logo {

        width: 110px;
    }


    .anjana-logo {

        width: 110px;
    }


    .x {

        font-size: 18px;
    }


    .right-text {

        width: 100%;

        text-align: center;
    }


    .project-name {

        font-size: 16px;

        letter-spacing: 4px;
    }


    .coming-soon {

        font-size: 15px;

        letter-spacing: 4px;
    }

}
