@import url('https://fonts.googleapis.com/css2?family=Anek+Malayalam:wght@100..800&display=swap');

body {
    
        font-family: "Anek Malayalam", sans-serif;
        font-weight: 200;
        font-style: normal;
    
        margin: 0;
        padding: 0;
        text-align: center;
        color: #ffffff;
        background: #000000;
    }
    header {
        position: relative;
        text-align: center;
    }
    header img {
        width: 100%;
        height: auto;
    }
    header h1 {
        margin-top: -8%;
     font-size: 2rem;
        font-weight: 100;
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }
    h2 {
        font-size: 3rem;
        font-weight: 200;
    }

    a:link, a:visited {

        color: #d45;
        text-decoration: none;
        transition: color 500ms ease-in-out;
    }
    a:hover{

        color: #F67;
        transition: color 100ms ease-in-out;
    }
    .presentation, .concept, .videos, .gallery {
        padding: 20px;
    }
    .presentation p, .concept p, .videos p, .gallery p{
       width: 80%;
       left: 10%;
       margin-bottom: 50px;
       position: relative;
       font-size: 1.3rem;
    }
    .presentation img{
        width: 75%;
        left: 12.5%;
    }
    .concept img{
        width: 50%;
        left: 25%;
    }
    .video-container, .videosoon {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .video, .videosoon {
        margin: 10px;
        cursor: pointer;
    }
    
    .video img, .videosoon img {
        width: 250px;
        height: auto;
        border-radius: 5px;
    }

    .video img{
        transition: width 500ms ease-in-out;
    }

    .video img:hover{
        width: 270px;
    }
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index:20;
    }
    .modal-content {
        background: white;
        padding: 30px;
        border-radius: 5px;
        position: relative;
    }
    .close {
        position: absolute;
        top: 0px;
        right: 10px;
        cursor: pointer;
        color: #000;
        font-size:2rem;
        font-weight:bold;
    }

    .videosoon {
        position: relative;
        display: inline-block;
        cursor: default;
    }
    
    .videosoon img {
        filter: brightness(90%); /* Assombrit l'image de 10% */
    }
    
    .videosoon .overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        border-radius: 5px;
        z-index: 10;
    }

    footer{
        font-size: 1.3rem;
        padding-bottom: 50px;
    }
    footer img{
        width: 20px;
        vertical-align: middle;
        margin: 0 8px 0 15px;
        
    }