@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fdfdfd;
    color: #252525;
    text-align: center;
}

 .navbar {
            background-color: #edd225;
            width: 100vw;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            width: 180px;
            height: auto;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #252525;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .dropdown {
            position: relative;
        }

        .dropbtn {
            background: none;
            border: none;
            color: #252525;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 110%;
            background: white;
            min-width: 140px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            z-index: 1001;
            padding: 5px 0;
        }

        .dropdown-content a {
            padding: 10px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #252525;
            text-decoration: none;
            transition: background 0.2s ease;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .language-dropdown.open .dropdown-content {
            display: block;
        }

        .flag-icon {
            width: 22px;
            height: auto;
            border-radius: 3px;
            box-shadow: 0 0 2px rgba(0,0,0,0.3);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: #252525;
            margin: 4px 0;
        }

        /* === RESPONSIVE === */
        @media screen and (max-width: 1024px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 20px;
                background-color: #fff;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .burger-menu {
                display: flex;
            }
        }

        @media screen and (max-width: 768px) {
            .logo img {
                height: 80px;
            }

            .dropbtn,
            .nav-links a {
                font-size: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .logo img {
                height: 60px;
            }

            .dropbtn {
                font-size: 0.95rem;
            }

            .burger-menu {
                margin-left: 5px;
            }

            .nav-right {
                gap: 15px;
            }
        }


.container {
    max-width: 1400px; 
    width: 90%; 
    margin: 180px auto 60px auto; 
    padding: 20px;
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
    color: #ac040a;
}

.container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: slideUp 1.5s ease-in-out;
}

h2 {
    margin: 30px;
    font-size: 2.5rem;
}

.highlight {
    color: #ac040a;
    font-weight: bold;
    margin-bottom: 30px;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px;
}

.gallery img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}

.about-section {
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .gallery {
        flex-wrap: wrap; 
        gap: 10px; 
    }

    .gallery img {
        width: 45%; 
    }
}

@media screen and (max-width: 768px) {
    .gallery img {
        width: 80%; 
    }
}

@media screen and (max-width: 480px) {
    .gallery img {
        width: 100%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

footer {
    background-color: #edd225;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.footer-container p {
    font-size: 18px;
    color:#252525
}
.logo {
    width: 257px;
    margin-bottom: 10px;
}

.socialicons {
    margin: 30px 0;
}

.socialicons a {
    display: inline-block;
    margin: 0 10px;
}

.socialicons img {
    width: 30px;
    height: 30px;
}

.copyright {
    font-size: 16px;
    color: #252525;
}

@media (max-width: 600px) {
    .footer-container {
        padding: 10px;
    }

    .social-icons a {
        font-size: 18px;
    }
}