* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #000;
    color: #ffeb3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: #000;
    color: #ffeb3b;
    padding: 16px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffeb3b;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}

nav a:hover,
nav a.active {
    color: #ffd600;
}

.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, .80), rgba(0, 0, 0, .74)), url('unnamed (5).webp') center/cover no-repeat;
    color: #ffd600;
    padding: 65px 0 40px 0;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.gallery-hero h1 span {
    color: #ffeb3b;
}

.gallery-hero p {
    color: #ffeb3b;
    font-size: 1.09rem;
}

.gallery-section {
    padding: 45px 0 35px 0;
    background: #181818;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 23px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 2px 11px rgba(255, 235, 59, 0.07);
    background: #000;
    transition: transform 0.17s, box-shadow 0.14s;
}

.gallery-item:hover {
    transform: scale(1.055) translateY(-7px);
    box-shadow: 0 8px 22px rgba(255, 235, 59, 0.19);
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.17s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

footer {
    background: #000;
    color: #ffeb3b;
    text-align: center;
    padding: 16px 0;
    margin-top: 35px;
    font-size: .9rem;
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
        width: 100%;
    }
    nav a {
        display: inline-block;
        margin: 10px 10px 0 0;
    }
    .gallery-hero h1 {
        font-size: 1.35rem;
    }
    .gallery-hero {
        padding: 30px 0 15px 0;
    }
    .gallery-section {
        padding: 19px 0 12px 0;
    }
    .gallery-item img {
        height: 110px;
    }
}