/* Reset & Global */
:root { --primary-color: #ff0000; --bg-color: #050505; --text-color: #ffffff; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-color); color: var(--text-color); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%;
    z-index: 1000; background: #000;
}
.logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--primary-color); font-weight: 700; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links li a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #ddd; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: #000;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    transition: 0.4s; z-index: 2000;
}
.mobile-menu.active { right: 0; }
.mobile-menu a { font-family: 'Oswald', sans-serif; font-size: 2rem; text-transform: uppercase; color: #fff; }
.mobile-menu a:hover { color: var(--primary-color); }
.close-menu { position: absolute; top: 20px; right: 30px; font-size: 3rem; cursor: pointer; color: #fff; }

/* Gallery Content */
.main-content { flex: 1; margin-top: 100px; padding: 0 20px 60px; text-align: center; }
.page-title { font-family: 'Oswald', sans-serif; font-size: 3rem; margin-bottom: 40px; text-transform: uppercase; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    border: 1px solid #222;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(80%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Footer */
footer { padding: 40px 20px; background-color: #000; text-align: center; border-top: 1px solid #222; }
.social-icons a { font-size: 1.5rem; margin: 0 15px; color: #fff; }
.social-icons a:hover { color: var(--primary-color); }
footer p { font-size: 0.8rem; color: #666; margin-top: 10px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
}