@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300&family=Open+Sans:wght@300;400&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&family=Montserrat:wght@100;200;300&family=Open+Sans:wght@300;400&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    font-family: "Ubuntu", sans-serif; 
}

:root {
    --brand-col: rgb(128, 128, 128);
}

.icon {
    color: var(--brand-col);
}

/* Fonts  */

h1 {
    font-family: sans-serif, Helvetica;
    font-weight: 500;
    font-style: normal; 
} 

h2 {
    font-family: sans-serif, Helvetica;
    font-weight: 200;
    font-style: normal;
} 

p {
    font-family: sans-serif, Helvetica;
    font-style: normal; 
}

/* Header & NavMenu*/

nav ul {
    width: 100%; 
    list-style: none; 
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    backdrop-filter: blur(30px);
}

nav li {
    height: 50px;
} 

nav a {
    height: 100%; 
    padding: 0 30px; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    color: white;
} 

nav li:first-child {
    margin-right: auto;
}   

.space {
    margin: 10px;
} 

.logo {  
    height: 50px;
}

.menu-button {
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0; 
    height: 100vh; 
    width: 290px;
    z-index: 999; 
    backdrop-filter: blur(10px);
    background-color: rgba(176, 176, 176, 0.455);
    box-shadow: 3px 3px 5pc rgba(0,0,0, 0.1); 
    display: none; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: flex-start;
} 

.sidebar li{
    width:100%;
} 

.background{
    background-image: url(img/mainBanner.jpeg); 
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: center;
}

.promoBar {
    font-family: sans-serif, Helvetica;
    text-align: center;
    width: auto;
    height: 20px;
    background-color: white;
    font-weight: 200;
}

.intro > p {
    text-align: center;
    padding-top: 300px;
    padding-bottom: 80px;
    font-size: 20px;
    color: white;
    font-style: italic;
}

.contact a {
    border: 10px white solid;
    background-color: white;
    border-radius: 50px;
    color: black;
    margin-left: 5px;
}

.contact a:hover {
    border: 10px white solid;
}

.contact >a:hover {
    color: #f0954f;;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 850px;
    background-color: rgb(236, 236, 236);
}

.about > h2 {
    padding-top: 25px;
    text-align: center;
    font-size: 40px;
}

.about > p {
    padding-top: 20px;
    text-align: center;
    font-size: 20px;
    padding-bottom: 50px;
}

.aboutbox {
    width: 500px;
    height: 600px;
    margin: 5px;
    margin: 0 20px;
}

.abouttext h2 {
    text-transform: uppercase; 
    font-weight: 300;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
} 

.profilephoto {
    background-image: url(/img/mainLogo.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50px;
}

.abouttext {
    margin: 0;
    padding: 25px 0;
} 

.spacebelow {
    padding-bottom: 25px;
}

.spacebelowtext {
    padding-bottom: 40px;
}  

.listSpace {
    padding-bottom: 20px;
} 

.about ul {
    margin: 0 25px;
} 

.about li {
    margin: 10px 0;
}

footer {
    width: 100%;
    height: 25px;
    text-align: center; 
    justify-content: center;
    background-color: rgb(236, 236, 236);
    color: rgb(98, 98, 98);
    padding: 25px 0; 
}  

footer a {
    text-decoration: none; 
    color: rgba(201, 131, 0, 0.855);
} 

footer a:hover {
    color: rgba(255, 166, 0, 0.855);
}


@media (max-width: 1000px){

    .container {
        width: 100%; 
        margin: 0 auto;
    }

}  

@media (max-width: 993px){ 

    .intro > h1 {
        font-size: 80px;
    }

    .abouttext {
        margin: 25px 0;
    } 

}   

@media (max-width: 800px){ 

    /* Header */

    .hideOnMobile {
        display: none;
    } 
    
    .menu-button {
        display: block;
    }
}    

@media (max-width: 768px){   

    footer > p {
        font-size: 0.8rem;
    }
}


@media (max-width: 700px){ 

    .intro > p {
        font-size: 15px;
    } 

    .container {
        display: block;
    }

    .about {
        height: auto;
    } 

    .about > p {
        padding-bottom: 10px;
    } 

    .aboutbox {
        margin: 0 20px; 
        padding: 0;
        width: auto;
        height: auto;
    }

    .abouttext {
        height: auto; 
        margin: auto;
    } 

    .profilephoto {
        display: block;
        height: 400px;
        width: 400px; 
        margin: 0 auto;
        align-content: center;
    }

}   

@media (max-width: 539px){  

    .intro > p {
        margin: 0 20px;
    }

}      

@media (max-width: 495px){  

    .abouttext {
        padding: 10px 0 0 0;
    }

} 

@media (max-width: 441px){   

    h1 {
        font-size: 1.4em;
    }

} 

@media (max-width: 446px){   

    .about > h2 {
        font-size: 3em;
    } 

    .about > p {
        font-size: 1.1em; 
        padding-bottom: 20px; 
        margin: 0 10px;
    } 

    .profilephoto {
        display: block;
        height: 300px;
        width: 300px; 
        margin: 20px auto 5px auto;
        align-content: center;
    }

} 

@media (max-width: 411px){   

    h1 {
        font-size: 1.3em;
    }

} 

@media (max-width: 395px){    

    h1 {
        font-size: 1.2em;
    }

    .about > h2 {
        font-size: 2.6em;
    } 

    .about > p {
        font-size: 1em; 
    }

    footer > p {
        font-size: 0.8rem;
        margin: 0 18px;
    }

}  

@media (max-width: 379px){   

    h1 {
        font-size: 1.1em;
    }

    footer > p {
        font-size: 0.8rem;
    }
} 

@media (max-width: 350px){    

    h1 {
        font-size: 1em;
    }

    footer > p {
        font-size: 0.8rem;
    }
}