﻿body {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #ded1c7; /* Color of the track */
}

::-webkit-scrollbar-thumb {
    background: #143356; /* Color of the handle */
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555; /* Color of the handle when hovered */
    }


.hamburger-menu {
    position: fixed;
    top: 10px;
    right: 30px;
    z-index: 9999;
    width: 40px;
    height: 30px;
    background-color: #143356;
    border-radius: 5px 5px 5px 5px;
    opacity: 0.8;
}

    .hamburger-menu .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 20px;
        cursor: pointer;
        margin-top: 7px;
        margin-left: 5px;
    }

    .hamburger-menu .line {
        width: 100%;
        height: 2px;
        /*background-color: #74f2ff;*/
        background-color: #cbc2bb;
        margin-bottom: 4px;
    }

    .hamburger-menu .menu {
        display: none;
        background-color: #143356;
        padding: 10px;
        position: absolute;
        top: 90%;
        right: 0;
        list-style-type: none;
        border-radius: 20px 2px 20px 20px;
    }

        .hamburger-menu .menu p {
            display: block;
            margin-top: 10px;
            padding: 0px 10px;
            font-size: 15px;
            /*font-weight: bold;*/
            cursor: pointer;
            color: white;
        }


.arrow-container {
    position: fixed;
    top: 150px;
    right: 140px;
    width: 100px;
    height: 80px;
    z-index: 9000;
}

.arrow {
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: slide 0.8s infinite, fadeOut 2s 5s forwards;
    transform: rotate(180deg);  
}

@font-face {
    font-family: 'Cheveuxdange';
    src: url('/fonts/Cheveuxdange.ttf') format('truetype');
}

.Inspiration {
    position: absolute;
    animation: fadeOut 2s 3s forwards;
    transform: rotate(-59deg);
    top: -50px;
    right: -50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Cheveuxdange;
}

@keyframes slide {
    0% {
        bottom: 0;
        left: 70%;
    }

    100% {
        bottom: 100%;
        left: 100%;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.LogoImage {
    position: absolute;
    /*top: 2vh;*/
    /*left: 1vh;*/
    width: 15vh;
    height: auto;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 2);
    border-radius: 0px 0px 30px 0px;
    min-width: 100px;
    background-color: #f1edeb;
    z-index: 9999;
}

.grid-container {
    display: grid;
    grid-template-rows: 100% 100% 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory; /* Enable mandatory vertical scroll snapping */
    /*overflow-y: scroll;*/ /* Enable vertical scrolling */
}

.row-1 {
    scroll-snap-align: start;
    display: grid;
    /*background-color: #78b6e5;*/
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
}

    .row-1 .CompanyText {
        grid-column-start: 2;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 2;
        position: relative;
        padding-top: 200px;
        z-index: 9000;
    }

        .row-1 .CompanyText .text_first {
            margin-top: 3%;
            font-size: 65px;
            font-weight: bold;
            text-align: center;
            color: #143356;
            text-shadow: 0px 0px 10px white;
        }

        .row-1 .CompanyText .special-text_first {
            font-size: 75px;
            font-weight: bold;
            text-align: center;
            color: #143356;
            text-shadow: 0px 0px 10px white;
            position: relative;
        }
            /*     .row-1 .CompanyText .special-text_first {
            position: relative;
        }*/

            .row-1 .CompanyText .special-text_first:after {
                content: '';
                position: absolute;
                top: 100%;
                width: 170%;
                aspect-ratio: 3 / 1;
                left: 50%;
                transform: translate(-50%, 0);
                border-radius: 50%;
                border: 8px solid #00a85c;
                clip-path: polygon(0 0, 50% 50%, 100% 0);
                z-index: 9000;
            }

    .row-1 .BackgroundImage {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 4;
        background-image: url('/Images/BackLarge_orange.jpg');
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        opacity: 0.7;
    }

.row-2 {
    scroll-snap-align: start;
    /*background-color: #5b97c4;*/
    display: grid;
    /*background-color: #78b6e5;*/
    grid-template-columns: 10% auto 10%;
    grid-template-rows: 50% 50%;
}

    .row-2 .BackgroundImage {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 3;
        background-image: url('/Images/contact_orange.jpg');
        background-size: cover;
        opacity: 0.7;
    }

    .row-2 .CompanyContact {
        grid-column-start: 2;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
        position: relative;
        overflow: hidden;
        z-index: 9000;
        opacity: 0.9;
    }

        .row-2 .CompanyContact form {
            object-position: center;
            display: grid;
            grid-gap: 4px;
            color: black;
            margin: auto;
            width: 70vw;
        }

        .row-2 .CompanyContact label {
            font-size: 20px;
            font-weight: 600;
            color: #143356;
            /*text-shadow: 0px 0px 5px white;*/
            border-radius: 5px 5px 0px 0px;
            /*text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;*/
            background-color: #f1cca6;
            padding-right: 10px;
            padding-left: 10px;
        }

        .row-2 .CompanyContact input {
            font-size: 20px;
            font-weight: normal;
            color: #143356;
            /*text-shadow: 0px 0px 15px white;*/
            border-radius: 0px 5px 5px 5px;
            border: none;
            background-color: #f1cca6;
        }

        .row-2 .CompanyContact textarea {
            font-size: 20px;
            font-weight: normal;
            color: #143356;
            /*text-shadow: 0px 0px 15px white;*/
            border-radius: 0px 5px 5px 5px;
            border: none;
            height: 150px;
            background-color: #f1cca6;
        }

        .row-2 .CompanyContact button {
            font-size: 20px;
            font-weight: bold;
            color: #143356;
            /*text-shadow: 0px 0px 15px white;*/
            border-radius: 5px 5px 5px 5px;
            /*border: none;*/
            width: 10vw;
            min-width: 150px;
            min-height: 40px;
            margin: auto;
            border: none;
            background-color: #f1cca6;
        }


.row-3 {
    scroll-snap-align: start;
    display: grid;
    /*background-color: #78b6e5;*/
    grid-template-columns: 5% auto 5%;
    grid-template-rows: 6% auto auto;
}

    .row-3 .text_about {
        grid-column-start: 2;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 2;
        position: relative;
        overflow: hidden;
        margin-top: 6%;
        z-index: 9000;
    }

        .row-3 .text_about p {
            line-height: 1.5;
            font-size: 20px;
            color: black;
            font-weight: 400;
        }

    .row-3 .BackgroundImage {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 4;
        background-image: url('/Images/about_orange.jpg');
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        opacity: 0.6;
    }


@media (max-width: 1220px) {
    .row-3 .text_about {
        margin-top: 8%;
    }

        .row-3 .text_about p {
            font-size: 18px;
        }
}

@media (max-width: 1000px) {
    .row-3 .text_about p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    ::-webkit-scrollbar {
        display: none;
    }

    .LogoImage {
        width: 15vh;
        height: auto;
    }

    .row-1 .CompanyText .text_first {
        font-size: 50px !important;
    }

    .row-1 .CompanyText .special-text_first {
        font-size: 60px !important;
    }

    .row-1 .BackgroundImage {
        background-image: url('/Images/BackGxsmall_orange.JPG');
        background-position: right top;
    }

    .row-2 .BackgroundImage {
        background-image: url('/Images/contactSmall_orange.jpg');
        background-position: left top;
    }

    .row-2 {
        grid-template-rows: 40% 60%;
    }

    .row-3 .text_about {
        margin-top: 12%;
    }

        .row-3 .text_about p {
            font-size: 12px;
        }
}

@media (max-width: 460px) {
    .row-3 .text_about {
        margin-top: 19%;
    }
}

@media (max-width: 380px) {
    .row-3 .text_about {
        margin-top: 19%;
    }

        .row-3 .text_about p {
            font-size: 10px;
        }
}

@media (max-width: 300px) {
    .row-3 .text_about {
        margin-top: 19%;
    }

        .row-3 .text_about p {
            font-size: 9px;
        }
}
