html, body {
    height: 100%;
}

body {
    background-image: url(../bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ddd;
    font-family: 'Jura', sans-serif;
    font-weight: 300;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: 120%;
    min-height: 100vh;
}

.navbar {
    width: 100%;
    background: rgba(35, 37, 38, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 12px #0003;
}

.navbar-content {
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
}

.navbar-brand {
    color: #ddd;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.navbar-brand:hover {
    color: #fff;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    background: rgba(35, 37, 38, 0.95);
    color: #ccc;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    left: unset;
    bottom: unset;
    font-size: 1rem;
    letter-spacing: 1px;
}

.main-content {
    flex: 1 0 auto;
    max-width: 1400px;
    margin: 48px auto 32px auto;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    justify-items: center;
    margin-bottom: 2.5rem;
}
.video-grid iframe {
    width: 100%;
    aspect-ratio: 16/9;
    min-width: 220px;
    border-radius: 8px;
    border: none;
}
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin: 2.5rem 0;
    justify-items: center;
}
.photo-gallery a {
    display: block;
    width: 100%;
    max-width: 462px;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.photo-gallery a:hover img {
    box-shadow: 0 4px 24px #0008;
    transform: scale(1.03);
}
.photo-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: block;
}

@media (max-width: 900px) {
    .photo-gallery {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-weight: 400;
}