/*
destin chaigneau
16/09/2025

style
*/

/* algemeene stijl voor de hele website */

/* lettertype */
@font-face {
    font-family: SpButch;
    src: url(../fonts/SpButchLiteLight-Yq338.otf);
}

header 
{
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#gemeenteBurenLogo
{
    padding-left: 10px;
    margin: 0;
}

/*dit is element navigatie*/

/* dit is voor de list navigatiebalk */
nav ul
{
    list-style-type: none;
    padding: 15px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.navigation
{
    float: left;
    padding: 17px 20px;
    border-radius: 25px;
    transition: ease-in-out 0.2s;
}

.navigation:hover
{
    background-color: #ed852a;
    scale: 1.20;
    rotate: 5deg;
    transition: ease-in-out 0.2s;
    color: black;
}

a
{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* algemeene stijl voor de body van de website */
body
{
    font-family: 'SpButch'; /* lettertype */
    margin: 0;
    padding: 0;
    background-color: #fbe9e9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../images/background.png'); /* image itself */
    background-size: cover; /* Cover entire area */
    background-position: center; /* Center image */
    background-repeat: no-repeat; /* Do not repeat image */
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
}

main 
{
    flex: 1; /* This makes main take up all available space */
    padding: 20px; ;
}

#gemeenteBurenLogo
{
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
    float: left;
}

/* index */

#scriptname
{
    padding: 0;
    margin: 0;
    top: 100;
    left: 0;
    width: 20px;
    height: 20px;
}

.titel
{
    text-align: center;
    color: #333;
    text-shadow: orange 1px 1px 1px;
    opacity: 1;
}
.titeltext
{
    text-align: center;
    color: #333;
    text-shadow: orange 1px 1px 1px;
    opacity: 1;
    font-size: 20px;
}

#mainIndex 
{
    position: relative; 
}

/* dit zijn drie foto's op index pagina */
#indexPhoto1,
#indexPhoto2,
#indexPhoto3 
{
    width: calc(100% / 1.5);
    border-radius: 25px;
    padding: 5px;
    margin: 10px;
}

#photo
{
    width: 800px;;
    justify-content: center;
}

/* travel */
#museumBuren
{
    width: 200px;
    border-radius: 20px;
    padding: 5px;
    margin: 5px;
    display: flexbox;
    float: left;
}

.subtext
{
    text-align: left;
    font-size: 28px;
    color: #333;
    opacity: 1;
}

#openingHours
{
    border-radius: 10px;
    transition: ease-in-out 0.8s;
}

#openingHours:hover
{  
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: underline;
    transition: ease-in-out 0.3s;
}

/* contact */

#contactSection
{
    padding: 5px;
    border-radius: 20px;
    margin: 20px auto;
    transition: ease-in-out 0.8s;

}

#contactSection:hover
{
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: ease-in-out 0.8s;
height: 50%;
}

#contacttelefoon
{
list-style-type: none;
}

.telefoonList, .emaillist
{
    padding: 10px;
    border-radius: 15px;
    margin: 10px 0;
}

.emaillist
{
    text-align: right;
}
#contactemailtitel
{
    text-align: right;
    font-weight: bold;
    font-size: 23px;
}
#contactemail
{
   float: right; 
   list-style-type: none;
}