/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* BODY */
body{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('../Image/map.jpg');
    background-size:cover;
    background-position:center;
    padding:30px;
    color:#fff;
}

/* BACK BUTTON (your current class = btn) */
.btn{
    display:inline-block;
    padding:10px 18px;
    background:linear-gradient(135deg,#ff4d4d,#b30000);
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
    margin-bottom:15px;
}

.btn:hover{
    background:#fff;
    color:#b30000;
}

/* TITLE */
h2{
 
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 28px;
    font-family: 'Lobster Two', cursive;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    text-align: center;
}


/* GRID */
.container{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(240px,1fr));
    gap:25px;
    max-width:1100px;
    margin:auto;
}

/* CARD */
.card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 8px 25px rgba(0,0,0,0.3);
    transition:0.3s;
    min-height:260px;
}

/* HOVER */
.card:hover{
    transform:translateY(-8px);
}

/* TITLE */
.card h3{
    font-size:18px;
    margin-bottom:10px;
}

/* DESCRIPTION */
.card p{
    font-size:14px;
    color:#eee;
    line-height:1.5;
    margin-bottom:8px;
}

/* FOOTER */
.card-footer{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* BUTTON INSIDE CARD */
.card-footer .btn{
    display:block;
    text-align:center;
    padding:10px;
    background:linear-gradient(135deg,#ff5252,#ff1e1e);
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    margin:0;
}

.card-footer .btn:hover{
    transform:scale(1.05);
}

/* EMPTY */
.no-files{
    text-align:center;
    grid-column:1/-1;
    padding:50px;
    color:#ddd;
}

/* RESPONSIVE */
@media(max-width:768px){
    .container{
        grid-template-columns:repeat(auto-fill, minmax(180px,1fr));
    }
}