html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #020203;
    font-family: Arial, sans-serif;
}

#page {
    width: 100%;
    min-height: 100vh;
}

#bandeau {
    width: 100%;
    height: 500px;
    background-color: #020203;
    background-image: url("img/head.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

#bandeau::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(2, 2, 3, 0.75);
    z-index: 1;
}

#hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;
    text-align: center;
}

#hero-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;

    margin-bottom: 70px;
}

#owlname {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    color: aliceblue;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
}

#owlname h1 {
    margin: 0 0 18px 0;
    font-size: 52px;
    letter-spacing: 7px;
}

#owlname h2 {
    margin: 0 0 30px 0;
    font-size: 28px;
    font-style: italic;
    letter-spacing: 5px;
}

#owlbuttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.header {
    display: inline-block;
    line-height: 2.5;
    padding: 0 25px;

    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;

    color: #020203;
    border: 1px solid aliceblue;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);

    cursor: pointer;
}

.header:hover {
    background-color: #e9edee;
}

.header1 {
    display: inline-block;
    line-height: 2.5;
    padding: 0 25px;

    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;

    color: aliceblue;
    border: 1px solid aliceblue;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0);

    cursor: pointer;
}

.header1:hover {
    background-color: aliceblue;
    color: #020203;
}

#contenu {
    width: 90%;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 80px;
}

#maps {
    width: 60%;
    min-height: 300px;
    border: 3px solid #000;
    background-color: #ffffff;
    padding: 25px;
}

#maps-list {
    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.map-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;

    text-decoration: none;
    color: black;

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.20);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}

.map-card img {
    width: 100%;
    height: 180px;

    object-fit: cover;
    display: block;
}

.map-card h4 {
    padding: 15px;

    font-size: 18px;
    text-align: center;
}

#description {
    width: 40%;
    min-height: 220px;
    border: 3px solid #000;
    background-color: #ffffff;
    padding: 30px;
    font-size: 20px;
}

h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-style: italic;
}

h1 {
    font-size: 50px;
}

#piedpage {
    width: 100%;
    height: 60px;
    background-color: #111111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}