/* ===== Startpagina ===== */
.diamontage-overview {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    background-color: rgba(255, 255, 255, 0.774);
    padding: 2rem;
    border-radius: 25px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Cards */
.card {
    background: linear-gradient(145deg, #ffe6e6, #ffffff);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card h3 {
    color: #e63946;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #555;
    line-height: 1.5;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* ruimte tussen logo en tekst */
    padding: 0.9rem 1.6rem;
    background: rgb(0, 89, 255);
    border-radius: 30px;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.google-btn img {
    width: 22px;   /* klein logo */
    height: 22px;
}

.google-btn span {
    font-weight: bold;
}


/* Responsief grid */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}
.diamontage-afbeelding {
    max-width: 75%;
    height: auto;
    width: auto;
    padding-bottom: 20px;
    border-radius: 90px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .diamontage-afbeelding {
        border-radius: 45px;
    }
}