body {
    margin: 0;
    font-family: sans-serif;
    text-align: center;
    background-color: #f5f5f5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('images/Logo eng white.png') no-repeat center;
    background-size: 450px auto;
    opacity: 0.1;
    z-index: -1;
}

header {
    background: #002b5c;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    background-color: white;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: wheat;
}

.language-switcher .lang-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
}

.language-switcher .lang-link:hover {
    color: wheat;
}

.welcome {
    padding: 80px 20px;
    font-size: 20px;
    color: #002b5c;
}

.news {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff7f7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.news h2 {
    color: #8b1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.news-item {
    margin-bottom: 20px;
}

.news-item h3 {
    margin-bottom: 5px;
    color: #333;
}

.news-item p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

.gallery {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid a {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.gallery-grid img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-grid a.video::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    pointer-events: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 30px;
}

.lightbox:target {
    display: flex;
}

.lightbox img,
.lightbox video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    object-fit: contain;
    background: #000;
}

.lightbox .close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}

.lightbox .close:hover {
    background: #eee;
}

footer {
    background: #002b5c;
    color: white;
    padding: 10px;
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 15px;
    }
    .gallery-grid img {
        height: 180px;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .nav-menu {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
    }