/* Fichier CSS commun pour le site Eubélie */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.7);
    text-align: center;
}

img.logo {
    width: 200px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.devise {
    font-style: italic;
    margin-top: 20px;
    color: #c0c0c0;
}

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #757575;
}

.promo-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
    margin-top: 30px;
}

.promo {
    flex: 1 1 calc(50% - 30px);
    background-color: #262626;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.promo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.promo p {
    font-size: 0.9em;
    margin-top: 10px;
}

.identification-card {
     padding: 20px;
     text-align: left;
}
.id-photo {
    float: right;
    width: 150px;
    height: auto;
    border-radius: 6px;
    margin-left: 20px;
}
.id-info {
    margin-top: 20px;
    font-size: 1.1em;
}
.clear {
    clear: both;
}
hr {
            border: 0;
            height: 1px;
            background-color: #444;
            margin: 15px 0;
        }
		
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 5em;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    user-select: none;
}
.access-rights {
    margin-top: 20px;
    font-size: 1em;
}

.access-rights ul {
    list-style-type: disc;
    margin-left: 20px;
}
.header-logo {
            width: 180px;
            display: block;
            margin: 0 auto 20px;
}