@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap');

:root {
    --bs-body-bg: transparent;
}
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
p {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.text-overlay-shadow {
    text-shadow: 1px 1px 10px black;
}
.logo {
    max-width: 25%;
    height: auto;
}
.headline {
    margin: 10px 0;
    font-size: 58px;
    color: white;
}
.company-name {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}
footer {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    color: #546571;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}
footer .d-flex {
    justify-content: center;
    align-items: center;
}
footer .list-inline {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-links a {
    text-decoration: none;
    color: black;
}
.footer-links a:hover {
    text-decoration: underline;
}
.play-now-button {
    background: linear-gradient(to bottom, #FFD42A 0%, #F9A632 50%, #F58225 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: 2.5px solid #F09824;
    letter-spacing: 1px;
    cursor: pointer;
    text-shadow: -1px -1px 0 #A77D52, 1px -1px 0 #A77D52, -1px 1px 0 #A77D52, 1px 1px 0 #A77D52;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}
.play-now-button:hover {
    transform: scale(1.1);
}
/* Mobile Adjustments */
@media (max-width: 768px), (max-height: 800px) {
    .nav-link {
        font-size: 18px;
    }

    .headline {
        font-size: 30px;
    }

    p {
        font-size: 14px;
    }

    .logo {
        max-width: 50%;
        height: auto;
    }

    body {
        background-attachment: fixed;
    }
}
