/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: black;
    color: white;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 50px;
    background: black;
}

/* LOGO */
.logo img {
    height: 300px; /* teste 300 déjà */
    width: auto;
}

/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 55px;
    margin-top: 100px; /* descend le menu */
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 20px;
}

nav a:hover {
    color: #f4c542;
}

/* HERO */
.hero img {
    width: 100%;
    height: auto;
}

.caption {
    padding: 10px;
    color: #aaa;
    font-size: 14px;
}

/* GALERIES */
.galeries {
    text-align: center;
    padding: 60px 20px;
}

.galeries h2 {
    letter-spacing: 2px;
}

.underline {
    width: 60px;
    height: 3px;
    background: #f4c542;
    margin: 10px auto 20px;
}

.galeries p {
    margin-bottom: 40px;
    color: #ccc;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 50px;
}

.grid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px;
}

footer h1 {
    font-weight: normal;
    margin-bottom: 15px;
}

.socials span {
    font-size: 20px;
    margin: 0 5px;
    cursor: pointer;
}