/* Homepage specific styles */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.home-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-wrapper {
    margin-top: 55vh;
    /* Position in bottom half */
    opacity: 0;
    animation: fadeIn 2s ease 1.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.logo-wrapper img {
    width: 40vw;
    max-height: 50vh;
    height: auto;
    max-width: none;
    cursor: pointer;
}

/* ==== Responsive Styling ==== */

/* Tablets (up to 1024px) */
@media screen and (max-width: 1024px) {
    .logo-wrapper {
        margin-top: 55vh;
    }

    .logo-wrapper img {
        width: 60vw;
    }
}

/* Phones (up to 768px) */
@media screen and (max-width: 768px) {
    .logo-wrapper {
        margin-top: 45vh;
    }

    .logo-wrapper img {
        width: 80vw;
    }
}

/* Extra small phones (up to 480px) */
@media screen and (max-width: 480px) {
    .logo-wrapper {
        margin-top: 55vh;
    }

    .logo-wrapper img {
        width: 90vw;
    }
}