/* Algemene body instellingen */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Banner */
.banner {
    width: 100%;
    height: 125px;
    background-image: url('https://freeprintedcards.com/png/bannerc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Menu */
nav {
    width: 100%;
    background-color: #ffe07d;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

nav a {
    display: inline-block;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    padding: 6px 12px;
    transition: background-color 0.2s;
}

nav a:hover {
    background-color: #F2C431;
    color: #000;
    border-radius: 4px;
}

/* Header */
header {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 20px auto;
}
.photo-container {
    width: 48%;
    margin-bottom: 30px;
    text-align: center;
    box-sizing: border-box;
}


.main-photo {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1.2); /* zachte schaduw */
    border-radius: 6px; /* optioneel, voor lichte afgeronde hoeken */

}

.caption {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
}

/* Icon row en tooltip */
.icon-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.icon-wrap {
    position: relative;
    display: inline-block;
}

.icon-wrap img.download {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius:12px;
    box-shadow:none;      /* <-- hier wordt schaduw echt uitgeschakeld */
}


/* Tooltip copyright */
.cr-box {
    display: none;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 999;
}

.icon-wrap:hover .cr-box {
    display: block;
}
.download {
    width:40px;
    height:40px;
    border-radius:12px;
    box-shadow:none !important;
}



/* Footer */
footer {
    width: 100%;
    background-color: #ffe07d;
    color: #000;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    box-sizing: border-box;
}

/* Responsiveness */
@media (max-width: 900px) {
    .photo-container {
        width: 100%;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }
}
