/* 
    All fonts
*/

@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');

@font-face {
    font-family: 'Two-Weekends-Sans';
    src: url('https://ghouala.fr/fonts/twoweekendssans-regular.woff') format('woff'),
        url('https://ghouala.fr/fonts/twoweekendssans-regular.woff2') format('woff2');
}

/* 
    General
*/

body {
    margin: 0;
    padding: 0;
}

/*
    Main
*/

.main {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;}

.main .welcome {
    display: flex;
    width: 100%;
    height: 100%;
}

.main .welcome .left, .right {
    flex: 1;
}

.main .welcome .left {
    margin-left: 6%;
    margin-top: 15%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s ease-in-out, transform 1.4s ease-in-out;
}

.main .welcome .left .text {
    font-size: 48px;
    font-family: 'Two-Weekends-Sans';
    line-height: 70px;
    margin-right: 30%;
    color: black;
}

.main .welcome .left .button * {
    font-family: 'ABeeZee', sans-serif;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    border: 2px solid;
    border-color: black;
    color: white;
    background-color: black;
    background-color: blur(20px);
    padding: 12px 40px;
    border-radius: 9px;
    transition-duration: 0.4s;
}

.main .welcome .left .button *:hover {
    background-color: white;
    font-family: 'ABeeZee', sans-serif;
    font-size: 16px;
    color: black;
}

.main .welcome .right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s ease-in-out, transform 1.4s ease-in-out;
}

.main .welcome .right .video {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.1);
    margin-right: 10%;
}

.main .welcome .active {
    opacity: 1;
    transform: translateY(0);
}


/* 
    Media Queries
*/

@media (max-width: 1200px) {
    .main .welcome .text {
        font-size: 40px;
        line-height: 60px;
    }
}

@media (max-width: 950px) {
    .main .welcome .right .video {
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .main .welcome {
        top: 15%;
    }
    .main .welcome .text {
        font-size: 30px;
        line-height: 40px;
    }
}