.fraktur-font {
    font-family: 'UnifrakturMaguntia', cursive;
}

body {
    font-size: 16px;
    background-color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
	padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 14px;
		padding-bottom: 60px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 12px;
        background-color: lightgray;
        padding-bottom: 60px; /* Même hauteur que le footer */
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 50px;
    z-index: 1000;
}

.spaced-paragraph {
    margin-bottom: 30px;
    margin: 20px auto;
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.filters {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #000000;
    color: white;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.filter-btn:hover {
    background-color: #333333;
    transform: scale(1.05);
}

.filter-btn.active {
    background-color: #D35400;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.7);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    width: 250px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    display: block;
}

.item a {
    text-decoration: none;
    color: black;
}

.hidden {
    display: none;
}

.lang-switch button {
    margin: 0 5px;
    padding: 6px 12px;
    cursor: pointer;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: white;
    font-weight: bold;
}
.lang-switch button:hover { background-color: #eee; }

.era-description {
    margin: 20px auto;
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.no-results {
    margin-top: 20px;
    font-size: 1.2rem;
    display: none;
    margin: 20px auto;
    color: #555;
    font-style: italic;
}

/* Styles généraux des boutons */
.social-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

/* Icônes SVG */
.social-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Bouton Instagram */
.insta-button {
    background: linear-gradient(45deg, #F56040, #833AB4);
}

.insta-button:hover {
    transform: scale(1.1);
}

/* Bouton Facebook */
.fb-button {
    background-color: #1877F2;
}

.fb-button:hover {
    background-color: #165BD2;
    transform: scale(1.1);
}

.contact-button {
    background-color: #FF9800;
}

.contact-button:hover {
    background-color: #E68900;
    transform: scale(1.1);
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	padding: 20px;
}

.item {
	background: white;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
}
/* Boutons switch langue */
.lang-switch button {
    cursor: pointer;
    transition: 0.3s;
}
.lang-switch button.active {
    background-color: #333;
    color: white;
}