body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'KellySlab-Regular';
    background-color: black;
    color: #fff;
    overflow-x: hidden;
    max-width: 100vw;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/logos/colday-logo.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    opacity: 0;
    z-index: -1;
    animation: fadeInBackground 2s forwards;
}

@keyframes fadeInBackground {
    0% { opacity: 0; }
    100% { opacity: 0.1; }
}

header {
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 24px;
}

.menu li {
    flex: 1;
    text-align: center;
}

.menu a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 10px 0;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1;
    text-align: center;
    max-width: 100vw;
}

main h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

main h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

main p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

footer a {
    color: #00BFFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#cookies-policy {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 0 10px;
        font-family: 'KellySlab-Regular';
    }

    .menu {
        flex-direction: column;
        align-items: center;
        font-size: 20px;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        padding: 15px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .language-switcher {
        justify-content: center;
        margin-bottom: 10px;
    }

    main {
        padding: 15px;
        text-align: center;
    }

    main h1 {
        font-size: 28px;
    }

    main h2 {
        font-size: 22px;
    }

    main p {
        font-size: 14px;
        padding: 0 10px;
    }

    footer {
        font-size: 12px;
        padding: 15px;
    }
}
@font-face {
    font-family: 'Blackcraft';
    src: url('/static/fonts/Blackcraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
