
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.04);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
}


.card {
    background: var(--color-surface);
    border-radius: 12px;
    border: 1px solid rgba(217, 70, 166, 0.12);
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

h3 {
    color: var(--color-primary);
    font-size: 1.15rem;
    margin-bottom: 12px;
    text-align: center;
}

.projet-image ,
.projet-video {
    width: 100%;
    height: 220px;
    border : 2px solid var(--color-primary) ;
    border-radius: 8px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.projet-image img,
.projet-video video {
    max-width: 90%;
    max-height: 90%;
    min-height: 80px;
    min-width: 120px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(217, 70, 166, 0.10);
    object-fit: cover;
    background: #ffe4f0;
    display: block;
    margin: 0 auto;
}


a {
    text-decoration: none;
    color: inherit;
}

.card a,
.projet-image a,
.projet-video a {
    text-decoration: none;
}

.card a:hover {
    color: var(--color-primary);
}

p {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: left;
}


.footer-maps {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.footer-map-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
}

.footer-map-block p {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
}

.footer-map-block iframe {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(217, 70, 166, 0.14);
}

