
body{
    font-family: 'Poppins', sans-serif;
    background:
    linear-gradient(rgba(0,25,70,0.9), rgba(0,25,70,0.95)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
}

/* HEADER */

.gallery-header{
    padding: 60px 20px 30px;
    text-align: center;
}

.gallery-header h1{
    font-size: 3rem;
    font-weight: 700;
}

.gallery-header p{
    opacity: 0.85;
    margin-top: 15px;
}

/* CAROUSEL */

.gallery-wrapper{
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.carousel-box{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.carousel-item img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 1.5s ease;
}

.carousel-item.active img{
    animation: randomZoom 8s ease-in-out;
}

/* RANDOM IMAGE EFFECT */

@keyframes randomZoom{

    0%{
        transform: scale(1) rotate(0deg);
        filter: brightness(0.9);
    }

    30%{
        transform: scale(1.06) rotate(0.5deg);
    }

    60%{
        transform: scale(1.03) rotate(-0.5deg);
    }

    100%{
        transform: scale(1);
        filter: brightness(1);
    }

}

/* CAPTION */

.carousel-caption{
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    bottom: 35px;
}

.carousel-caption h3{
    font-weight: 700;
}

.carousel-caption p{
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* CONTROL */

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-size: 60%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

/* THUMBNAIL */

.thumb-wrapper{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.thumb{
    width: 90px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover{
    opacity: 1;
    transform: translateY(-3px);
}

.thumb.active{
    opacity: 1;
    border-color: #ffd54f;
    box-shadow: 0 5px 15px rgba(255,213,79,0.4);
}

/* MOBILE */

@media(max-width: 768px){

    .gallery-header h1{
        font-size: 2rem;
    }

    .carousel-item img{
        height: 350px;
    }

    .carousel-caption{
        padding: 15px;
        bottom: 15px;
    }

    .carousel-caption h3{
        font-size: 1.1rem;
    }

    .carousel-caption p{
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .thumb{
        width: 70px;
        height: 50px;
    }

}

.hero-tagline{

    color: #ffd54f;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: 0.85rem;

    font-weight: 600;

    margin-bottom: 20px;

    animation: fadeBlur 2s ease;

}