/*
Theme Name: Pauwels Pad
Description: Based on Divi by Elegant Themes
Template: Divi
Version: 1.0
Author: Eric Steur | stom!
Author URI: https://www.stom.nu

*/

@import url("https://pauwelspad.nl/wp-content/themes/Divi/style.css");

a {
    text-decoration: underline;
}

.route-accommodaties {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accommodatie-card {
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.accommodatie-image {
    width: 200px;
    flex-shrink: 0;
    display: block;
}

.accommodatie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accommodatie-content {
    padding: 15px;
    flex: 1;
}

.accommodatie-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.no-image {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
}

.route-bezienswaardigheden {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bezienswaardigheid-card {
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

/* afbeelding */
.bezienswaardigheid-image {
    width: 220px;
    flex-shrink: 0;
}

.bezienswaardigheid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* content */
.bezienswaardigheid-content {
    padding: 15px;
    flex: 1;
}

/* 🔥 BELANGRIJK: zonder image = volledige breedte */
.bezienswaardigheid-card.no-image {
    display: block;
	padding: 15px;
}

.bezienswaardigheid-card.no-image .bezienswaardigheid-content {
    padding-left: 0;
    padding-right: 0;
}

.downloads-overzicht {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s ease;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.download-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-icon {
    width: 28px;
    height: 28px;
    color: #2b6cb0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 100%;
    height: 100%;
}

.download-title {
    font-weight: 600;
    color: #333;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #2b6cb0;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
	text-transform: uppercase;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: #1f4f86;
}

.route-gallery {

margin-bottom:40px;

}


.gallery-main img {

width:100%;
height:700px;
object-fit:cover;
border-radius:18px;

}



.gallery-thumbs {

margin-top:15px;

}



.gallery-thumbs img {

height:150px;
width:100%;
object-fit:cover;
border-radius:8px;
cursor:pointer;

}



.gallery-caption {

/* background:rgba(0,0,0,.55); */
color:white;
padding:12px;
position:absolute;
bottom:0;
left:0;
right:0;

}



.gallery-main .swiper-slide {

position:relative;

}



@media(max-width:767px){

.gallery-main img{

height:280px;

}

.gallery-thumbs img{

height:60px;

}

}

/* Witte navigatiepijlen */
.route-gallery .swiper-button-next,
.route-gallery .swiper-button-prev {
    color: #ffffff;
}


/* Witte paginering bullets */
.route-gallery .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
}


/* Actieve bullet volledig wit */
.route-gallery .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.teamleden-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.teamlid {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Foto links */
.teamlid-foto {
    flex: 0 0 40%;
}

.teamlid-foto img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Tekst rechts */
.teamlid-inhoud {
    flex: 1;
}

/* Even teamleden omdraaien */
.teamlid:nth-child(even) {
    flex-direction: row-reverse;
}


/* Mobiel onder elkaar */
@media (max-width: 767px) {

    .teamlid,
    .teamlid:nth-child(even) {
        flex-direction: column;
        gap: 25px;
    }

    .teamlid-foto {
        width: 100%;
    }

}