body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, serif;
    background: linear-gradient( rgba(255,255,255,0.55), rgba(255,255,255,0.55) ), url('../img/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.top-bar {
    background: rgba(255,255,255,0.9);
    padding: 5px 0;
    font-size: 0.85rem;
}

    .top-bar a {
        color: #777;
        text-decoration: none;
    }

.main-header {
    background: rgba(255,255,255,0.95);
}

.navbar-brand img {
    height: 140px;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.content-wrapper {
    padding: 40px 0 80px;
}

.content-card {
    max-width: 900px;
    margin: auto;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(6px);
    padding: 50px;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
}

    .content-card h1 {
        margin-bottom: 30px;
        font-weight: 700;
    }

    .content-card h2 {
        margin-bottom: 25px;
        font-size: 1.7rem;
    }

.article-date {
    color: #777;
    margin-bottom: 15px;
}

.article-image {
    margin-top: 30px;
    width: 100%;
}

.footer {
    background: #8b0000;
    color: white;
    padding: 15px 0;
}
.gallery-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .2s ease;
}

    .gallery-thumb:hover {
        transform: scale(1.03);
    }

.gallery-view {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.gallery-content {
    padding: 2rem;
}

.gallery-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.gallery-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: white;
    font-size: 2rem;
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}