
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Header */

header {
    background: linear-gradient(135deg, #111, #050505);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

header h1 {
    margin: 0 0 20px 0;
    font-size: 32px;
    letter-spacing: 2px;
}

/* Navigation */

nav a {
    display: inline-block;
    color: #ddd;
    text-decoration: none;
    margin: 5px 8px;
    padding: 9px 15px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

nav a:hover {
    color: white;
    background-color: #222;
    transform: translateY(-2px);
}

nav a.active {
    background-color: #333;
    color: white;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

/* Language Button */

#languageButton {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 50px;
    height: 40px;

    background-color: #111;
    color: white;

    border: 1px solid #444;
    border-radius: 6px;

    cursor: pointer;
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
    z-index: 1000;
}

#languageButton:hover {
    background-color: #333;
    border-color: #666;
    transform: translateY(-2px);
}

/* Main */

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero */

.hero {
    background: linear-gradient(145deg, #151515, #0b0b0b);
    padding: 70px 30px;
    text-align: center;
    border: 1px solid #292929;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.hero h2 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero p {
    color: #bbb;
    max-width: 650px;
    margin: 0 auto;
}

/* Content */

.content {
    background: linear-gradient(145deg, #141414, #0b0b0b);
    padding: 30px;
    border: 1px solid #292929;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.content h2 {
    margin-top: 0;
    color: white;
}

/* News */

.news-item {
    border-bottom: 1px solid #292929;
    padding: 20px 0;
    transition: padding-left 0.2s ease;
}

.news-item:hover {
    padding-left: 8px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h3 {
    margin-bottom: 5px;
    color: white;
}

.news-item p {
    color: #ccc;
}

.date {
    color: #888;
    font-size: 14px;
}

/* Gallery */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.picture {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #292929;
    background-color: #111;
}

.picture img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.picture img:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* Footer */

footer {
    margin-top: 60px;
    padding: 25px 20px;
    background: #0b0b0b;
    color: #999;
    text-align: center;
    border-top: 1px solid #292929;
}

/* Links */

a {
    color: #d4af37;
}

a:hover {
    color: white;
}

/* Selection */

::selection {
    background: white;
    color: black;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile */

@media (max-width: 600px) {

    header h1 {
        font-size: 26px;
    }

    nav a {
        display: inline-block;
        margin: 5px;
    }

    main {
        margin: 25px auto;
    }

    .hero {
        padding: 45px 20px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .picture img {
        height: 220px;
    }

    #languageButton {
        bottom: 15px;
        right: 15px;
        width: 46px;
        height: 38px;
    }
}