/*
 
Author: Alparslan 
Date: 8.09.2025

*/

html,body
{
    overflow: hidden;
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;


}


body {
    background: linear-gradient(to top, rgba(17, 7, 7, 0.4)40%, rgba(17, 14, 14, 0.3)70%), url(../assets/images/blurredbg2.jpg);
    background-color: gray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}


#red {
    color: red;
}



/* Header Start */

header {
    width: 150px;             
    height: 50vh;           
    background: #212121;
    opacity: 0.9;
    position: fixed;          
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;   
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
}

header ul {
    display: flex;
    flex-direction: column;  
    gap: 20px;                
}

header ul li {
    list-style: none;
    margin: 0;
}

header ul li a {
    text-decoration: none;
    color: #fff;
    font-family: Arial;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    display: block;
    padding: 10px;
}

header ul li a:hover {
    color: #f47e00;
}


/* Header End */

/* Main start */

main 
{
    margin-left: 160px;
   
}

/* Container */
.container {
    background-color: green;
    height: 80vh;
    margin: 25px 0;
    display: flex;
    overflow: hidden;
}






main .container-right {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}




.container-right img {
    width: 350px;

}




.paleiskwartier {
    height: 33%;
    display: flex;
}

.container-right p
{
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    /* 2 px mate waarin de schaduw naar rechts verschuift */
    /* 2 px mate waarin de schaduw naar beneden verschuift */
    /* 5 px de mate van vervaging */
    /* rgba Kleur van de schaduw met 70% opacity */
}


.sintjans {
    height: 33%;
    display: flex;
    flex-direction: row-reverse;
}

.kasteel {
    display: flex;
    height: 34%;

}

/* Container Left */
main .container-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ol
{
    list-style-position: inside;
    
}

.container-left p
{
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-size: 50px;
    font-family: 'Merriweather', serif;
    text-decoration: underline;

}
.container-left a
{
    color: white;
    font-size: 50px;
    margin: 50px;
    font-family: 'Merriweather', serif;
    text-decoration: none;
     transition: 0.5ms;
     text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
}

.container-left a:hover
{
         color: #bfff00; /* neon lime tarzı */
}
.container-left ol
{
    color: white;
    font-size: 50px;
    margin: 50px;
    font-family: 'Merriweather', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);

}

.container-left ol li
{
    margin: 50px;
    font-family: 'Merriweather', serif;

}


/* Container end */
/* Main end */











 footer {
    display: flex;
    width: 100%;
    height: 90px;
    background: #212121;
    opacity: 0.8;
    position: relative;   
    bottom: 0;         
    left: 0;           
    justify-content: center;
}




footer ul
{
    list-style: none;
    display: flex;
    justify-content: center;
}


footer ul li
{
        list-style: none;
    margin-left: 57px;
    margin-top: 25px;
    font-size: 14px;
}
footer ul a 
{
    text-decoration: none;
    color: #fff; 
    font-family: Arial;
    font-weight: bold;
    transition: 0.5ms;   
    font-size: 20px; 
    cursor: unset;
}
/* Footer End */