body {
    font-family: 'Poppins', sans-serif;
}
/* GALLERY PAGE */
.gallery-page {
    padding: 40px 20px;
}

.gallery-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* SECTION TITLES */
.gallery-title {
    margin: 30px 0 15px;
    font-size: 20px;
    border-left: 5px solid #f0c040;
    padding-left: 10px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* CARD */
.gallery-card {
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top; /* ✅ THIS FIXES IT */
    transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-card:hover img {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-card img {
        height: 200px;
    }
}
/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f0c040;
}
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #f0c040;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}
/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
    color: #fff;
    position: relative;
}

.logo {
    font-weight: 600;
    font-size: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}