/*General*/

:root {
    --primary-color: hotpink;
}

*{
    margin: 0;
    padding: 0;
}

body{
    height: auto;
    font-family:'Times New Roman', Times, serif;
    width: 100%;
}

#center{
    text-align: center;
}

.boxes{
    display: flex;
    width: 100;
}

.box{
    flex: 1;
    overflow: hidden; /* Ensure contents don't overflow */
    flex-basis: 50%; /* Set initial size to 50% */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 0px; /* Optional: Padding for spacing */
}

.box img {
    max-width: 100%; /* Ensure images don't exceed their container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below images */
}

/*Navigation*/

header{
    width: 100%;
    background: white;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 1010;
    font-size: large;
    position: fixed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar{
    width: 100%;
    margin: auto;
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 30px;
}

.navbar ul li a{
    text-decoration: none;
    color: black;
}

.navbar ul li a:hover{
    color: var(--primary-color);
    transition: 0.5s;
}

.logo{
    width: 7.5%;
    margin-left: 30px;
}

.hamburger{
    cursor: pointer;
    display: none;
}

.hamburger div{
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: white;
    border: 1px solid black;
}

/*Banner*/

.banner{
    height: 90vh;
    width: 100%;
    margin: auto;
    background-image: linear-gradient(rgba(30, 4, 4, 0.7), rgba(30, 4, 4, 0.07)), url(../images/banner1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.bannerText{
    width: 100%;
    position: absolute;
    color: white;
    text-align: center;
    top: 45%;
    left: 0%;
    transform: translate (-50%, -50%);
    text-shadow: 1px 1px 2px black;

}

.bannerText h1{
    font-size: 70px;
}

.bannerText p{
    font-size: xx-large;
}

.bannerButton{
    text-decoration: none;
    color: white;
    display: inline-block;
    border: 1px solid lightblue;
    padding: 12px 34px;
    font-size: medium;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    background: lightblue;
    text-shadow: none;
}

.bannerButton:hover{
    border: 1px solid lightblue;
    background: white;
    color: lightblue;
    transition: 0.5s;
}

/*Section11*/

.section11{
    padding-top: 250px;
    padding-bottom: 250px;
}

.textColumn1{
    width: 50%;
    margin: auto;
}

/*Section*/

.display1{
    width: 100%;
    margin: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: whitesmoke;
}

.display1 div{
    width: 100%;
    margin: auto;
}

.button, .button2, .button3{
    text-decoration: none;
    color: white;
    display: inline-block;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: medium;
    background: black;
    position: relative;
    cursor: pointer;
}

.button:hover, .button2:hover, .button3:hover{
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: white;
    transition: 0.5s;
}

#space{
    width: 90%;
    margin: auto;
}

/*Section*/

.display2{
    width: 100%;
    margin: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    color: black;
    background-color: whitesmoke;

}

.display2 div{
    width: 100%;
    margin: auto;
}

/*Section*/

.display3{
    width: 100%;
    margin: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: whitesmoke;
}

.display3 div{
    width: 100%;
    margin: auto;
}

/*Section*/

.display4{
    width: 100%;
    margin: auto;
    padding-top: 250px;
    padding-bottom: 150px;
}

.display4 div{
    width: 80%;
    margin: auto;
    text-align: center;
}

.display4 img{
    width: 80%;
    margin: auto;
}

/*Footer*/

footer{
    width: 100%;
    margin: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: left;
    background-color: black;
    color: white;
}

footer h1{
    font-size: large;
}

footer img{
    width: 100%;
}

.ftContainer {
    display: flex;
    flex-wrap: wrap;
    margin-left: 75px;
}

.ftContainer div {
    flex: 1 0 10%;
    padding: 0 75px;
}

footer a{
    text-decoration: none;
    color: white;
}

footer a:hover{
    color: var(--primary-color);
}

@media(max-width: 1280px){

    /*Navigation*/
    
    header{
        box-shadow: none;
        font-size: x-large;
        position: absolute;
        background: transparent;
    }

    .hamburger{
        display: block;
        position: absolute;
        left: 10px;
        top: 5px;
        z-index: 1003;
    }

    .navbar{
        position: absolute;
        left: 0px;
        top: -2500%;
        width: 100%;
        background: whitesmoke;
        padding-top: 125px;
        padding-bottom: 125px;
        transition: 0.5s;
        z-index: 1002;
        text-align: center;
        border-bottom: 3px solid black;
        flex-direction: column;
    }

    .logo{
        width: 20%;
        margin-left: 0px;
        margin-bottom: 20px;
    }
    #navCheck:checked ~ .navbar{
        top: 0px;
    }

    .navbar ul li{
        display: block;
        margin: 25px 0;
    }

    .textColumn1{
        width: 65%;
    }
    
    /*Boxes*/

    .boxes{
        flex-direction: column-reverse;
    }

    #normal{
        flex-direction: column;
    }

    /*Section*/

    .display1 div, .display2 div, .display3 div{
        padding-top: 50px;
    }

    .box img {
        padding-top: 50px;
    }

    /*Section*/

    .display4{
        width: 100%;
        margin: auto;
        padding-top: 250px;
        padding-bottom: 150px;
    }

    .display4 h1{
        width: 80%;
        margin: auto;
    }

    .display4 div{
        width: 100%;
    }

    .display4 img{
        width: 100%;
    }
    
/*Footer*/
    
    footer{
        padding-top: 150px;
        padding-bottom: 100px;
        padding-left: 100px;
    }

    .ftContainer {
        margin-left: 0px;
        flex-direction: column;
    }

    .ftContainer div {
        padding-bottom: 50px;
    }

    footer img{
        width: 33%;
    }
    
}

@media(max-width: 580px){

    footer img{
        width: 100%;
    }

    footer{
        padding-left: 0px;
    }

}