*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:tahoma,sans-serif;
}

body{
    background:#eef2f5;
    direction:rtl;
    color:#333;
}

/* Container */

.container{
    width:92%;
    max-width:1400px;
    margin:40px auto;
}

/* Top */

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    flex-wrap:wrap;
    gap:20px;
}

h1{
    color:#053734;
    font-size:36px;
}

.subtitle{
    color:#666;
    margin-top:10px;
}

/* Back Button */

.back-btn{
    text-decoration:none;
    background:#053734;
    color:white;
    padding:12px 24px;
    border-radius:10px;
    transition:.3s;
    font-size:16px;
    font-weight:bold;
}

.back-btn:hover{
    background:#D4AF37;
    color:#053734;
}

/* Gallery */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
    gap:30px;
}

/* Card */

.card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* Image */

.gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;
    cursor:pointer;
    transition:.3s;
}

.gallery-img:hover{
    transform:scale(1.04);
}

/* Video */

.gallery-video{
    width:100%;
    height:260px;
    background:black;
    object-fit:cover;
    display:block;
}

/* Info */

.info{
    padding:22px;
}

.info h3{
    color:#053734;
    font-size:22px;
    margin-bottom:12px;
}

.info p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

/* Media Type */

.media-type{
    display:inline-block;
    padding:8px 18px;
    border-radius:25px;
    background:#eef7f5;
    color:#053734;
    font-size:14px;
    font-weight:bold;
}

/* Lightbox */

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    justify-content:center;
    align-items:center;
    z-index:9999;
    animation:fade .3s;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.6);
}

.close{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:50px;
    cursor:pointer;
    transition:.3s;
}

.close:hover{
    transform:rotate(90deg);
    color:#D4AF37;
}

/* Animation */

@keyframes fade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* Responsive */

@media(max-width:900px){

.gallery{
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
}

.gallery-img,
.gallery-video{
    height:220px;
}

}

@media(max-width:700px){

.top-bar{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.back-btn{
    width:100%;
    text-align:center;
}

.gallery{
    grid-template-columns:1fr;
}

.gallery-img,
.gallery-video{
    height:240px;
}

h1{
    font-size:30px;
}

.info{
    padding:18px;
}

.info h3{
    font-size:20px;
}

}