@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-image: url('images/bg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    animation: moveBackground 20s linear infinite;
}

.icon-container {
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 100px;
    height: auto;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    .logo {
        display: none;
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
}

a {
    transition: all 0.3s ease-in-out;
}

a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}


#map {
    height: 400px;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}