
/* ===========================
   CUSTOM CURSOR
=========================== */

/* Standaard cursor */
html,
body,
* {
    cursor: url('../images/cursor.cur'), auto;
}

/* Cursor voor links en klikbare elementen */
a,
button,
.btn,
input[type="submit"],
input[type="button"],
input[type="reset"],
select,
label,
.hero-button img {
    cursor: url('../images/cursor.cur'), pointer;
}
/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   BODY
=========================== */

body{
	
    text-align: center;

    background:
        linear-gradient(
            rgba(216,204,179,.90),
            rgba(216,204,179,.90)
        ),
        url('../images/bg.png');

    background-size:cover;
    background-position:center top;
    background-attachment:fixed;
}

/* ===========================
   HEADER
=========================== */

.top-header{

    background:#b79c6c;

    border-bottom:4px solid #7a5a28;

    box-shadow:0 2px 10px rgba(0,0,0,.25);
}

.header-container{

    width:1440px;

    max-width:95%;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;
}

.logo h1{

    color:#5d3c10;

    font-size:42px;

    letter-spacing:3px;
}

.logo span{

    color:#7a5a28;

    font-size:14px;
}

/* ===========================
   MENU
=========================== */

nav ul{

    display:flex;

    list-style:none;

    gap:25px;
}

nav a{

    text-decoration:none;

    color:#4b3210;

    font-weight:700;

    text-transform:uppercase;

    transition:.3s;
}

nav a:hover{

    color:#c69b46;
}

/* ===========================
   HERO
=========================== */

/* ===========================
   HERO VIDEO
=========================== */

.hero{
    position:relative;
    height:800px;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-logo{
    width:700px;
    max-width:90%;
    height:auto;

    display:block;
    margin:0 auto 20px auto;

    filter:
        drop-shadow(0 0 10px rgba(0,0,0,.8))
        drop-shadow(0 0 20px rgba(0,0,0,.6));
}

.hero-content h2{
    color:#fff;
    font-size:32px;
    text-shadow:2px 2px 8px #000;
}

.hero-text{
    color:#fff;
    font-size:20px;
    margin-top:10px;
    text-shadow:2px 2px 8px #000;
}
.play-btn{

    display:inline-block;

    margin-top:40px;

    padding:18px 70px;

    background:#b88a36;

    border:2px solid #f0d79f;

    color:white;

    text-decoration:none;

    font-size:24px;

    transition:.3s;
}

.play-btn:hover{

    background:#cf9d42;
}

/* ===========================
   MAIN LAYOUT
=========================== */

.container{

    width:1440px;

    max-width:95%;

    margin:40px auto;

    display:grid;

        grid-template-columns:
        220px
        minmax(700px,1fr)
        220px;

    gap:25px;
}

/* ===========================
   PANELS
=========================== */

.panel{

    position:relative;

    padding:20px;

    margin-bottom:15px;

    background:
        #f1e4c7
        url('../images/parchment.jpg');

    border:1px solid #b18b48;
}
.panel p,
.panel li{

    font-size:16px;
    line-height:1.8;

    color:#4b3210;
}

/* ornament linksboven */

.panel::before{

    content:"";

    position:absolute;

    width:35px;
    height:35px;

    top:-2px;
    left:-2px;

    border-top:4px solid #d9b66a;
    border-left:4px solid #d9b66a;
}

/* ornament rechtsonder */

.panel::after{

    content:"";

    position:absolute;

    width:35px;
    height:35px;

    bottom:-2px;
    right:-2px;

    border-bottom:4px solid #d9b66a;
    border-right:4px solid #d9b66a;
}

/* ===========================
   TITELS
=========================== */

.panel h3{

    text-align:center;

    margin-bottom:15px;

    color:#6b4b1c;

    text-transform:uppercase;

    letter-spacing:2px;

    border-bottom:1px solid rgba(107,75,28,.3);

    padding-bottom:10px;
}

.panel h3::before{

    content:"✦ ";
    color:#c79d47;
}

.panel h3::after{

    content:" ✦";
    color:#c79d47;
}

/* ===========================
   BUTTONS
=========================== */

.btn{

    display:block;

    text-align:center;

    padding:15px;

    margin-bottom:10px;

    background:#b88a36;

    border:1px solid #7a5a28;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.btn:hover{

    background:#d1a34d;
}

/* ===========================
   FOOTER
=========================== */

.footer{

    background:#b79c6c;

    border-top:4px solid #7a5a28;

    margin-top:50px;
}

.footer-content{

    width:1440px;

    max-width:95%;

    margin:auto;

    text-align:center;

    padding:30px;
}
.hero-text{
    margin-top:15px;
    font-size:20px;
    color:white;
}

.feature-list{
    padding-left:25px;
}

.feature-list li{
    margin-bottom:10px;
}

.news-box h4{
    color:#6b4b1c;
    margin-bottom:5px;
}

.news-box span{
    font-size:12px;
    color:#777;
}

hr{
    margin:15px 0;
    border:none;
    border-top:1px solid rgba(0,0,0,.15);
}
/* ==========================
   FORMS
========================== */

.l2-form{

    max-width:600px;
    margin:auto;

    display:flex;
    flex-direction:column;
}

.l2-form label{

    margin-top:15px;
    margin-bottom:5px;

    font-weight:bold;
}

.l2-form input{

    padding:12px;

    border:1px solid #8d6a35;

    background:#fffaf0;

    font-size:16px;
}

/* ==========================
   TABLES
========================== */

.info-table{

    width:100%;

    border-collapse:collapse;
}

.info-table td{

    padding:15px;

    border:1px solid #c7b084;
}

.info-table tr:nth-child(even){

    background:#f7edd8;
}
/* ==========================
   REGISTER PAGE
========================== */

.register-wrapper{

    width:100%;

    min-height:600px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 20px;
}

.register-panel{

    width:500px;

    max-width:100%;
}

.l2-form{

    display:flex;

    flex-direction:column;
}

.l2-form label{

    margin-top:15px;
    margin-bottom:5px;

    font-weight:bold;

    color:#6b4b1c;
}

.l2-form input{

    padding:12px;

    border:1px solid #c9a458;

    background:#fffdf8;

    font-size:16px;
}

.l2-form .btn{

    margin-top:20px;
}
/* ========================================
   COLUMN FRAMES
======================================== */

aside,
main{

    position:relative;

    padding:15px;

    background:#c3a166;

    border:1px solid #4e3410;

    box-shadow:
        inset 0 0 0 1px #f2d38d,
        inset 0 0 0 3px #8d6a35,
        inset 0 0 15px rgba(0,0,0,.12),
        0 3px 10px rgba(0,0,0,.18);
}

/* Hoek linksboven */

aside::before,
main::before{

    content:"";

    position:absolute;

    top:-2px;
    left:-2px;

    width:45px;
    height:45px;

    border-top:4px solid #d9b66a;
    border-left:4px solid #d9b66a;
}

/* Hoek rechtsonder */

aside::after,
main::after{

    content:"";

    position:absolute;

    bottom:-2px;
    right:-2px;

    width:45px;
    height:45px;

    border-bottom:4px solid #d9b66a;
    border-right:4px solid #d9b66a;
}
.hero-logo{

    width:700px;

    max-width:90%;

    height:auto;

    display:block;

    margin:0 auto 20px auto;

    filter:
        drop-shadow(0 0 10px rgba(0,0,0,.8))
        drop-shadow(0 0 20px rgba(0,0,0,.6));
}
.mirror-btn {
    display: block;
    width: 180px;
    margin: 8px auto;
    background: linear-gradient(#7b6327, #4d3b14);
    border: 1px solid #b99847;
    color: #f2e6b3;
    text-align: center;
    transition: all .2s ease;
}

.mirror-btn:hover {
    background: linear-gradient(#a8863b, #6d531d);
    border-color: #d8b45c;
    color: #ffffff;
}
/* ==========================
   LOGIN PANEL
========================== */

.login-input{

    width:100%;

    padding:10px;

    border:1px solid #b18b48;

    background:#fff8e8;

    color:#4d3210;

    border-radius:4px;

    box-sizing:border-box;

}

.login-input:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 8px rgba(212,175,55,.35);

}