<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* === Style principal du site Highland Watchers === */
body.page-background {
    margin: 0;
    background-color: #000000;
    color: #FFFF00;
    font-family: 'Old English Text MT', Arial, sans-serif;
}

.site-header {
    text-align: center;
    padding: 10px;
}

.banner {
    max-width: 100%;
    height: auto;
}

.main-menu {
    background-color: #000000;
    text-align: center;
    padding: 10px 0;
}

.main-menu a {
    color: #FFFF00;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
}

.main-menu a:hover {
    text-decoration: underline;
}

.main-menu a.active {
    text-decoration: underline;
    font-weight: bold;
}

.main-section {
    padding: 20px;
    text-align: center;
}

.title-main {
    font-size: 48px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-main, .text-footer {
    font-size: 20px;
    line-height: 1.6;
}

.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    background-color: #111111;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .title-main {
        font-size: 36px;
    }

    .subtitle {
        font-size: 28px;
    }
}

/* === Style spÃŠcifique Ã&nbsp; la galerie === */
.gallery-page body {
    background: #000000;
}

.gallery-page .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1em;
    gap: 1em;
}

.gallery-page .photo-block {
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 300px;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.gallery-page .photo-block img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.gallery-page .actions {
    margin-top: 0.5em;
}

.gallery-page .like-button {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: #c44;
}

.gallery-page .comment-form {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
}

.gallery-page .comment-form textarea {
    resize: vertical;
    min-height: 60px;
    padding: 0.5em;
    margin-bottom: 0.5em;
    font-size: 1em;
}

.gallery-page .comment-form button {
    align-self: flex-end;
    background-color: #304040;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 3px;
    cursor: pointer;
}

.gallery-page .comments {
    margin-top: 1em;
    font-size: 0.95em;
    background: #000000;
    color: #FFFF00;
    padding: 0.5em;
    border-radius: 3px;
}

.gallery-page .comments p {
    color: #FFFF00;
}

/* Style des sous-titres sous les photos */
.gallery-page .caption {
    color: #000000;
    font-size: 16px;
    font-style: italic;
    text-align: center;
    margin: 0.5em 0;
}
</pre></body></html>