@import url('https://fonts.googleapis.com/css2?family=Fenix&display=swap');



body  {
    font-family: 'Fenix', Arial, sans-serif;
    background-color: #333;
}

/* Header */


nav {
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 2.5dvw;
    transition: all 0.3s ease-in-out;
}

nav ul li:hover {
    color: orangered;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8), /* More intense shadow with orangered tone */
                0 0 30px rgba(255, 69, 0, 0.8), /* Additional layers for a fiery effect */
                0 0 40px rgba(255, 69, 0, 0.8),
                0 0 50px rgba(255, 69, 0, 0.8),
                0 0 60px rgba(255, 69, 0, 0.8),
                0 0 70px rgba(255, 69, 0, 0.8),
                0 0 80px rgba(255, 69, 0, 0.8),
                0 0 90px rgba(255, 69, 0, 0.8),
                0 0 100px rgba(255, 69, 0, 0.8);
    animation: flame 0.5s infinite alternate; /* Added flame-like animation */
}

@keyframes flame {
    0% {
        text-shadow: 0 0 20px rgba(255, 69, 0, 0.8),
                    0 0 30px rgba(255, 69, 0, 0.8),
                    0 0 40px rgba(255, 69, 0, 0.8),
                    0 0 50px rgba(255, 69, 0, 0.8),
                    0 0 60px rgba(255, 69, 0, 0.8),
                    0 0 70px rgba(255, 69, 0, 0.8),
                    0 0 80px rgba(255, 69, 0, 0.8),
                    0 0 90px rgba(255, 69, 0, 0.8),
                    0 0 100px rgba(255, 69, 0, 0.8);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 69, 0, 0.8),
                    0 0 40px rgba(255, 69, 0, 0.8),
                    0 0 50px rgba(255, 69, 0, 0.8),
                    0 0 60px rgba(255, 69, 0, 0.8),
                    0 0 70px rgba(255, 69, 0, 0.8),
                    0 0 80px rgba(255, 69, 0, 0.8),
                    0 0 90px rgba(255, 69, 0, 0.8),
                    0 0 100px rgba(255, 69, 0, 0.8),
                    0 0 110px rgba(255, 69, 0, 0.8);
    }
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    padding: 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 2000px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 5dvw;
    margin-right: 5%;
    margin-left: 3%;
}

@keyframes flame {
    0% { text-shadow: 0 0 20px #EE3308, 0 0 30px #EE3308, 0 0 40px #EE3308, 0 0 50px #F8A422, 0 0 70px #F8A422, 0 0 80px #F8A422, 0 0 100px #F8A422, 0 0 150px #F8A422; }
    50% { text-shadow: 0 0 20px #EE3308, 0 0 30px #EE3308, 0 0 40px #EE3308, 0 0 50px #F8A422, 0 0 70px #F8A422, 0 0 80px #F8A422, 0 0 100px #F8A422, 0 0 150px #F8A422; }
    100% { text-shadow: 0 0 20px #EE3308, 0 0 30px #EE3308, 0 0 40px #EE3308, 0 0 50px #F8A422, 0 0 70px #F8A422, 0 0 80px #F8A422, 0 0 100px #F8A422, 0 0 150px #F8A422; }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px #EE3308, 0 0 10px #000000, 0 0 15px #EE3308, 0 0 20px #000000, 0 0 25px #F8A422, 0 0 30px #F8A422, 0 0 35px #ffffff, 0 0 40px #F8A422;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}




.header-icon {
    font-size:7dvw;
    color: #EE3308;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    animation: flame 1s infinite alternate;
    animation: flicker 3s infinite;
}

.header-icon:hover {
    transform: scale(1.2);
    color: #F8A422;
    text-shadow: 0 0 20px #EE3308, 0 0 30px #EE3308, 0 0 40px #EE3308, 0 0 50px #F8A422, 0 0 70px #000000, 0 0 80px #000000, 0 0 100px #000000, 0 0 150px #000000;
}

.icon-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.icon-slogan:hover {
    opacity: 1;
}



.icon-slogan span {
    font-size: 26px;
    color: white;
    margin-top: 5px;
}

.logo {
    transition: transform 0.3s ease;
    width: 11dvw;
}

.logo:hover {
    transform: scale(1.1);
}



nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    color: orangered;
}

header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

      
    /* Footer */
    footer {
        background-color: #333;
        color: white;
        text-align: center;
        position: fixed;
        bottom: 0;
        width: 100%;
        border-top: 5px solid;
        border-image: linear-gradient(to right, orangered, yellow, orangered) 1;
    }

    footer p{
        font-size: 24px;
        transition: all 0.3s ease-in-out;
    }

    footer strong:hover, footer p a:hover {
        color: orangered;
        text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
        animation: flame 0.5s infinite alternate;
    }

    @keyframes flame {
        0% {
            text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
        }
        100% {
            text-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
        }
    }

    footer a {
        text-decoration: none;
        color: orangered;
        font-style: italic;
    }

    
    @media screen and (max-width: 768px) {
        body {
            font-size: 16px;
        }

        nav ul li {
            font-size: 18px;
        }

        .header-icons {
            display: none;
        }

        .logo {
            width: 50%;
        }

        footer p {
            font-size: 5dvw;
        }
        ul li a {
            font-size: 10dvw;
        }
       

    }