@import url('https://fonts.cdnfonts.com/css/vampire-wars');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Vampire Wars', sans-serif;
    background-color: #000;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#loader .animated {
    max-width: 100%;
    height: auto;
    animation: pulse 2s infinite;
}

.logo {
    max-width: 80%;
    height: auto;
    max-height: 150px;
    width: auto;
}

#content {
    display: none;
}

.banner {
    border-radius: 15px;
    border: 3px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #ff7e5f, #feb47b);
}

.border-gradient {
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #ff7e5f, #feb47b);
}

.rounded-pill {
    border-radius: 50px !important;
}

#buttons .btn {
    font-family: 'Vampire Wars', sans-serif;
    font-size: 16px;
    background-color: transparent;
    color: white;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    margin-bottom: 1rem;
}

#buttons .btn:hover {
    background-color: white;
    color: #ff8c00;
}

footer {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    margin-top: auto;
}

footer nav a {
    color: #fff;
    transition: color 0.3s;
}

footer nav a:hover {
    color: #ff8c00;
}

.bg-success {
    background-color: #28a745 !important;
}

.card.bg-light {
    background-color: #f8f9fa !important;
    color: #000000 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries per diverse dimensioni dello schermo */
@media (max-width: 1200px) {
    .logo {
        max-width: 70%;
    }
}

@media (max-width: 992px) {
    .logo {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 40%;
    }
    #buttons .btn {
        width: calc(100% - 1rem);
        margin: 0.5rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}
