
body {
    background-color: #f1efe3;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Image Preview Styles */
.galerie-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.galerie-img:hover {
    transform: scale(1.02);
}

/* Preview Modal Overlay */
.image-preview-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.image-preview-overlay.active {
    display: flex;
}

.preview-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.preview-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-preview {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-preview:hover {
    color: #ccc;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.title-page {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 45px;
    color: #6AA043;
}
.subtitle-page {
    text-transform: uppercase;
    font-size: 24px;
    color: #6AA043;
}

.subtitle {
    text-transform: uppercase;
    color: #6AA043;
    font-size: 38px;
    font-weight: bold;
}
.carre_ecole {
    height: 240px;
    text-align: center;
    padding-top: 80px;
    font-size: 64px;
    border: 1px solid white;
    border-radius: 10px;
    background-color: white;
    background-repeat: no-repeat;
    background-position-x: center;
    color: white;
    font-weight: 900;
    box-shadow: inset 0 -120px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.2cap;
    cursor:pointer;
}
.carre_ecole:hover {
    box-shadow: inset 0 -160px 6px rgba(255, 255, 255, 0.4);
    color: black;
}

.holder {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid #6AA043;
    border-radius: 10px;
    background-color: white;
}

.details {
    padding: 10px;
    line-height: 42px;
    text-transform: capitalize;
} 

.schools_long {
    font-size: 18px;
    color: #45682b;
    font-weight: bold;
}

.big-text {
    font-size: 108px;
    color: #45682b;
    letter-spacing: 30px;
}


.button-green {
    background-color: #6AA043;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.button-green a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 576px) {
    
    .big-text {
        font-size: 64px;
        color: #45682b;
        letter-spacing: 10px;
    }

    .button-green-big {
        font-size: 34px;
        padding: 8px 16px;
    }
}
