/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 25 avr. 2024, 12:57:30
    Author     : PC-Dev
*/

header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    header video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}
@media only screen and (max-width: 768px) {
    header video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0,20,0);
    background: linear-gradient(90deg, rgb(0,20,0) 0%, rgb(0,0,0) 100%);
    opacity: 0.5;
    z-index: 1;
}

header .container{
    width: 100% !important;
    height: 100% !important;
}
header .header-content, header .header-footer{
    position: relative;
}
header .header-content{
    width: 100%;
    height: 75%; 
}
header .header-footer{
    width: 100%;
    height: 25%;
}

@media only screen and (min-width: 970px) {
    header .caption h1{
        margin: 0px;
        text-transform: uppercase;
        display: inline-block;
        font-size: 5em !important;
    }
    header .caption h2{
        margin-left: 180px;
        font-weight: normal;
        font-size: 4em !important;
    }
    header .description {
        width: 70%;
        min-width: 70%;
    }

    header .caption1 {
        bottom: 10%;
        right: 0;
    }
    header .caption2 {
        bottom: 50%;
        left: 10%;
    }
    header .caption3 {
        bottom: 0;
        left: 0;
    }
    header .caption4 {
        bottom: 30%;
        right: 0%;
    }
    header .caption5 {
        bottom: 50%;
        left: 10%;
    }
}
@media only screen and (max-width: 970px) {
    header .caption h1{
        text-align: center;
        margin: 0px;
        text-transform: uppercase !important;
        font-size: 3em !important;
    }
    header .caption h2{
        text-align: center;
        font-weight: normal !important;
        font-size: 2em !important;
    }

    header .description {
        width: 100%;
        min-width: 100%;
    }
    header .caption {
        top: 40% !important;
        left: 0 !important;
        width: 100%;
    }
    header .header-content{ 
        height: 55%;
    }
    header .header-footer{ 
        height: 45%;
    } 
}
header .caption {
    position: absolute;
    display: inline-block;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(114,165,28, 1);
    z-index: 2;
    transition: opacity 1s ease-in-out;
    display: none;
}
header .caption.hidden {
    opacity: 0;
}

header .description {
    z-index: 2;
    text-align: center;
    color: #ffffff !important;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    font-size: 1.2em !important;
    text-shadow: 0px 0px 5px rgba(114,165,28, 1);
}
