/* DESTINATIONS HERO */
.destinations-hero {
    padding: 100px 20px;
    text-align: center;
    background: url('/images/destination1.png') center/cover no-repeat;
    color: white;
    margin-top: 6%;
}

/* FILTERS */
.destination-filters {
    text-align: center;
    padding: 30px;
}

.filter-btn {
    padding: 10px 18px;
    margin: 6px;
    border-radius: 20px;
    border: 1px solid #2e7d32;
    background: transparent;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2e7d32;
    color: white;
}

/* DESTINATION CARDS */
.destinations-list {
    padding: 30px 40px;
    background: #f7faf7;
}

.destination-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.35s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.quick-facts {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.card-cta {
    display: inline-block;
    padding: 12px 26px;
    background: #2e7d32;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
}

/* INSIDE SECTION */
.inside-destination {
    margin: 3.5%;
    text-align: center;
}

.inside-destination ul {
    list-style: none;
    max-width: 600px;
    margin: auto;
}
.inside-destination-listxyz {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.35s;
    margin: 3.5%;
}

.inside-destination-listxyz:hover {
    transform: translateY(-10px);
}
.inside-destination-list li{
	position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    padding: 10px 18px;
    margin: 6px;
    border-radius: 20px;
    border: 1px solid #2e7d32;
    background: transparent;
}

/* MAP */
.destinations-map {
    padding: 80px 20px;
    background: #eef3ee;
    text-align: center;
}

#destinationsMap {
    height: 350px;
    background: #cfcfcf;
    border-radius: 12px;
}

/* CTA */
.destinations-cta {
    margin: 3.5%;
    text-align: center;
}
.destination-cta-btn {
    padding: 10px 18px;
    margin: 6px;
    border-radius: 20px;
    border: 1px solid #2e7d32;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    background: #2e7d32;
    color: white;
}
.destinations-cta h2,
.destinations-cta p{
    margin-bottom: 2%;
}
