@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background-color: rgba(26, 12, 12, 0.979);
}


main {
    margin-top: 30px;
}

p {
    text-align: center;
    font-weight: 1rem;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.header-contenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.titre {
    margin-right: auto;
    color: #fff;
    text-transform: uppercase;
    font-family: "Permanent Marker", cursive;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(4, 142, 255, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header nav a {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

header nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #64b5f6;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header nav a:hover {
    color: #64b5f6;
}

header nav a:hover:after {
    width: 100%;
}

.recherche-header {
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 1px 14px;
    border: 1px solid #e0e0e0;
    max-width: 250px;
}

.recherche-header input[type="text"] {
    background: transparent;
    border: none;
    padding: 8px 12px;
    font-size: 1rem;
    outline: none;
    color: #333;
    width: 100%;
}

.recherche-header input::placeholder {
    color: #626569;
}

.about-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

.about-container h1 {
    font-family: "Berkshire Swash", sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.about-container h2 {
    font-family: "DynaPuff", sans-serif;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1976d2;
    border-bottom: 2px solid #64b5f6;
    padding-bottom: 5px;
}

.about-container p {
    margin-bottom: 20px;
    text-align: justify;
}

footer {
    text-align: center;
    color: #fff;
    padding: 20px 0;
}