
/* =========================
   ESCURSIONI
========================= */

.excursions{
    padding:100px 8%;
    background:#f7f7f7;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:48px;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.excursions-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.excursion-card:hover{
    transform:translateY(-8px);
}

.excursion-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.excursion-duration{
    display:inline-block;
    background:#d88a4a;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.excursion-content h3{
    font-size:24px;
    color:#111;
    margin-bottom:10px;
}

.excursion-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}


.excursion-btn:hover{
    background:#16204a;
}

.excursion-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;

display:flex;
flex-direction:column;
height:100%;
}

.excursion-content{
padding:25px;

display:flex;
flex-direction:column;
flex:1;
}

.excursion-btn{
display:inline-block;
background:#1f2c68;
color:#fff;
text-decoration:none;
padding:12px 22px;
border-radius:8px;
font-weight:600;

margin-top:auto;
}
