* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
    min-width: 320px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Header épuré */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 80px;
    height: auto;
}
  
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}
  
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
  
.logo a span {
    color: #8739fa;
}
  
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.menu a {
    display: block;
    padding: 0.5rem 2rem;
    font-size: 18px;
    font-weight: 400;
    transition: 0.2s all ease-in-out;
    color: black;
    font-family: 'Roboto', sans-serif;

}
  
  .menu:hover a {
    opacity: 0.4;
  }
  
.menu a:hover {
    opacity: 1;
    color: black;
}
  
.menu-icon {
    display: none;
}
  
#menu-toggle {
    display: none;
}
  
#menu-toggle:checked ~ .menu {
    transform: scale(1, 1);
}

/* section mention */

.mention-main {
    padding: 5rem 3rem;
}

.mention{
    padding-bottom: 50px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #eee;
}

.footer a {
    color: black;
}

.footer-logo {
    width: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-link {
    margin-top: 8px; 
}

.flex{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.social{
    width: 50px;
    height: 50px;
}

.social2{
    width: 60px;
}