/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fb;
    color: #222;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #0b3c7a;
}

.navbar .logo-wrap img {
    width: 120px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #ff9800;
}

.gallery-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #0b3c7a, #42a5f5);
    color: #fff;
}

.gallery-header h1 {
    font-size: 36px;
    margin-bottom: 10px; /* space between h1 and h2 */
    font-weight: 700;
}

.gallery-header h2 {
    font-size: 20px;
    font-weight: 400;
    color: #f0f0f0;
    margin-top: 0;  /* remove default margin */
    line-height: 1.4; /* make subtitle more compact */
}


.gallery-header p {
    font-size: 18px;
}

/* GALLERY */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px 40px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* FOOTER */
.footer {
    background: #0b3c7a;
    color: #fff;
    padding: 40px 20px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: #ff9800;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9800;
}

.social-links a {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ff9800;
}

/* RESPONSIVE */
@media(max-width:768px){
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer .row {
        flex-direction: column;
    }
}
