* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body{
    background: linear-gradient(to bottom right, black, #6532f9);
}

header{
    background-color: #c1e3f8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    width: 100%;
    z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #f0a500;
}

/* Menu icon for mobile */
.menu-icon {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}


.texte_press {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom right, black, #6532f9);
}

.presse{
    margin: 20px;
}

.texte_press h1 {  
    padding: 1em;
    color: #6532f9;
}

.texte_press h2 {  
    padding: 1em;
    color: aliceblue;
}

.texte_press h3 {  
    padding: 1em;
    color: #6532f9;
}

.texte_press p {  
    padding: 1em;
    color: aliceblue;
}

.fotos_press {
    border-radius: 50%;
    width: 30em;
    height: 30em;
}

.l{
    text-align: center;
    font-size: 2rem;
}

.portfolio {
    display: flex;
    justify-content: space-around;
    background-color: black;
}

.column {
    flex: 1;
    margin: 3em;
    border: solid 3px white;
}

.column h2 {
    background-color: black;
    color: white;
    padding: 1em;
    border-radius: 1em;
    text-align: center;
}

.column ul {
    list-style-type: none;
    padding: 0;
}

.column ul li {
    background-color: #6532f9;
    color: white;
    margin: 0.5em;
    padding: 0.5em;
    border-radius: 0.5em;
    text-align: center;
}

.profile-section {
    background: linear-gradient(to bottom right, black, #6532f9);;
    margin: 20px;
}

.profile-section h3{
    color: #6532f9;
    text-align: center;
    padding: 1em;
}

.profile-section h2{
    color: white;
    text-align: center;
    padding: 1em;
}

.profile-section p{
    color: white;
    text-align: center;
    padding: 1rem;
}

.para {
    margin: 0 5rem;
}

.experience-counters {
    display: flex;
    justify-content: center;
    margin: 0.5em;
}

.experience-counters .p {
    display: flex;
    justify-content: center;
    margin: 0.5em;
}



.experience-counter .l {
    color: #6532f9;
    padding: 1em;
    align-items: center;
}

.footer {
    display: flex;
    justify-content: space-around;
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-column {
    flex: 1;
    margin: 0 10px;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-logo {
    max-width: 100px;
    height: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icon {
    position: relative;
    margin: 0 10px;
    width: 80px;
    height: 80px;
}

.icon-base {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover .icon-hover {
    opacity: 1;
}

.social-icon:hover .icon-base {
    opacity: 0;
}

.acceuil img {
    width: 100px;
    height: auto; 
  }

@media (max-width: 768px) {

/* Base styles */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom right, black, #6532f9);
}

.navbar{
    background-color: black;
    padding-bottom: -10px; 
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #6532f9; /* Applique une couleur de fond couvrant toute la largeur */
    position: absolute; /* Positionne le menu de manière absolue */
    top: 50px; /* Distance par rapport à la navbar */
    left: 0; /* Aligné à gauche */
}

.menu-icon {
    display: block;
}

.nav-links.show {
    display: flex;
}

.nav-links li {
    width: 100%; /* Chaque élément occupe toute la largeur */
    text-align: center; /* Centre le texte */
}

.nav-links a {
    padding: 15px 0; /* Ajuste le padding pour le mobile */
    color: white;
    display: block;
}

.container {
    padding : 50px
}

.logo {
    height: 80px;
}

/* Main content styles */
.texte_press {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom right, black, #6532f9);
}

.texte_press h1, .texte_press h2, .texte_press h3, .texte_press p {
    padding: 1em;
    color: #ffffff;
}

.fotos_press {
    width: 100%;
    height: auto;
}

/* Portfolio section styles */
.portfolio {
    display: flex;
    flex-direction: column;
    background-color: black;
    padding: 20px;
}

.column {
    margin: 1em 0;
    text-align: center;
}

.column h2, .column ul li {
    background-color: #6532f9;
    padding: 1em;
    border-radius: 1em;
    margin: 0.5em 0;
}

.column ul {
    padding: 0;
}

.column ul li {
    list-style-type: none;
}

/* Profile section styles */
.profile-section {
    background: linear-gradient(to bottom right, black, #6532f9);
    padding: 20px;
    text-align: center;
}

.para{
    margin: 0;
}

.profile-section h3 {
    color: #6532f9;
    padding: 1em;
}

.profile-section h2, .profile-section p {
    color: white;
    padding: 1em;
}

.experience-counters {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.experience-counter .p{
    margin: 1em 0;
}

.experience-counter .l {
    color: black;
    font-size: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5em 0;
}

/* Footer styles */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
}

.footer-column {
    width: 100%;
    margin-bottom: 20px;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icon {
    margin: 0 10px;
    width: 40px;
    height: 40px;
}

.icon-base, .icon-hover {
    width: 100%;
    height: 100%;
}

}