/* ==========================================
   SCHOOL GALLERY PAGE
   Madarasatu Abu-Huraiara Islamiyya
========================================== */

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

body{
background:#eef6ff;
color:#222;
}

/* HEADER */

.gallery-header{

background:linear-gradient(135deg,#0f3d91,#16a34a);

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 20px;

color:white;

box-shadow:0 5px 18px rgba(0,0,0,.18);

position:sticky;

top:0;

z-index:1000;

}

.back-home{

background:white;

color:#0f3d91;

padding:10px 18px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.back-home:hover{

background:#ffe066;

transform:translateY(-3px);

}

/* HERO */

.gallery-hero{

padding:70px 20px;

text-align:center;

background:linear-gradient(180deg,#ffffff,#eef6ff);

}

.gallery-hero h1{

font-size:42px;

color:#0f3d91;

margin-bottom:15px;

}

.gallery-hero p{

max-width:750px;

margin:auto;

font-size:18px;

line-height:1.8;

color:#555;

}

/* CATEGORY BUTTONS */

.gallery-categories{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

padding:20px;

}

.gallery-categories button{

border:none;

padding:12px 24px;

border-radius:50px;

background:white;

font-weight:600;

cursor:pointer;

transition:.35s;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.gallery-categories button.active,

.gallery-categories button:hover{

background:#0f3d91;

color:white;

transform:translateY(-3px);

}

/* GALLERY GRID */

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

padding:40px 20px;

max-width:1400px;

margin:auto;

}

.gallery-card{

background:white;

border-radius:22px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.10);

transition:.4s;

}

.gallery-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 35px rgba(0,0,0,.18);

}

.gallery-card img{

width:100%;

height:240px;

object-fit:cover;

display:block;

transition:.5s;

}

.gallery-card:hover img{

transform:scale(1.08);

}

.gallery-card h3{

padding:18px;

text-align:center;

color:#0f3d91;

font-size:20px;

}

/* LOAD MORE */

.gallery-load{

text-align:center;

padding:20px 0 60px;

}

.gallery-load button{

background:linear-gradient(135deg,#16a34a,#0f3d91);

color:white;

border:none;

padding:16px 38px;

font-size:17px;

font-weight:700;

border-radius:50px;

cursor:pointer;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.gallery-load button:hover{

transform:translateY(-4px) scale(1.05);

}

/* FOOTER */

.gallery-footer{

background:#0f3d91;

color:white;

text-align:center;

padding:25px;

margin-top:20px;

}

/* MOBILE */

@media(max-width:768px){

.gallery-header{

flex-direction:column;

gap:15px;

text-align:center;

}

.gallery-hero{

padding:50px 15px;

}

.gallery-hero h1{

font-size:30px;

}

.gallery-hero p{

font-size:15px;

}

.gallery-grid{

grid-template-columns:1fr;

padding:20px 15px;

}

.gallery-card img{

height:210px;

}

.gallery-load button{

width:90%;

}

}
