
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    background: #ffffff;
    color: #333;
}

/* ==========================
   Dark Header / Introduction
========================== */

.gallery-header {
    background: #1C1A45;
    padding: 55px 0 60px;
    color: #ffffff;
}

.gallery-title {
    text-align: center;
    margin-bottom: 35px;
}

.gallery-title span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.85;
}

.gallery-title h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-title .title-line {
    width: 45px;
    height: 2px;
    background: #ffffff;
    margin: 14px auto 0;
}

.gallery-intro {
    max-width: 1050px;
    margin: 0 auto;
}

.gallery-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.gallery-intro p:last-child {
    margin-bottom: 0;
}

/* ==========================
   Gallery Section
========================== */

.gallery-section {
    background: #ffffff;
    padding: 50px 0 80px;
}

.gallery-item {
    margin-bottom: 25px;
}

.gallery-image {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
}

.gallery-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-image:hover img {
    transform: scale(1.04);
}

/* ==========================
   Tablet
========================== */

@media (max-width: 991px) {

    .gallery-intro {
        max-width: 900px;
    }

    .gallery-image img {
        height: 180px;
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 767px) {

    .gallery-header {
        padding: 40px 0 45px;
    }

    .gallery-title {
        margin-bottom: 28px;
    }

    .gallery-title span {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .gallery-title h1 {
        font-size: 29px;
    }

    .gallery-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .gallery-section {
        padding: 35px 0 50px;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .gallery-image img {
        height: 150px;
    }
}