*,
*::before,
*::after {
    box-sizing: border-box;
}


* {
    /* outline: 2px solid red; */
    margin: 0;
}

/* Font family: ICT Avant Garde Gothic */
/* Gratis gelijkaardige: TeX Gyre Adventor */
    /* header {
        background-image: url(images/portrait-355x512.jpeg);
        background-repeat: no-repeat;
        background-position: top;
        background-size: 100vw auto;
        height: 200vw;
    } */


    /* body, header {
        background-image: url(images/mascotte-1024x1024.jpg);
        background-repeat: no-repeat;
        background-position: right;
        background-size: auto 100vh;
        background-attachment: fixed; 
    } */

/*  Color 1 = Black
    Color 2 = Silver => rgb(197, 190, 186)
    Color 3 = Bronze => rgb(153, 135, 93)
*/

body {
    background-color: black;
    color: #c5beba;
}

header, main, section, footer{
    padding: 1rem;
}

h1, .table-section-header {
    color: #99875d;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h2, .table-subsection-header {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    text-align: left;
    font-size: 1rem;
}

p strong {
    color:#99875d;
}



/*
================================================== 
Section specific CSS 
==================================================
*/

#mascotte-container {
    display: none;
}

header {
    padding: 0;
    margin-bottom: 30vh;
}

.decorative-image img {
    margin: 2rem 0;
    border: 5px solid #99875d;
}

.strenght {
    margin-top: 3rem;
}

.strenght h2 {
    margin-bottom: 1rem;
}

footer p {
    text-align: center;
    margin: 1rem;
}

.table-container {
  display: flex;
  justify-content: center; /* Horizontaal centreren */
  align-items: center;     /* Verticaal centreren */
  /* border: 1px solid #ccc; */ /* Optioneel, om de container te zien */
}

.table-container table {
    line-height: 1.6;
    font-size: 1rem;
    border-collapse: collapse;
}

.table-section-header, .table-subsection-header {
    border: none;
    font-weight: bold;
    background-color: black;
}

#opening-hours td:first-child, .table-item {
    color: #99875d;
}

#opening-hours td:first-child{
    padding-right: 5rem;
}

#prijslijst .table-item {
    padding-right: 7rem;
}

#opening-hours table td {
    border-bottom: 1px solid #c5beba;
}

#prijslijst .table-section-header, #prijslijst .table-subsection-header {
    padding-top: 2rem;
}

#prijslijst table tr:nth-child(even) {
  background-color: #f9f9f926; /* lichte achtergrond */
}

address {
    line-height: 1.6;
    text-align: center;
    font-size: 1rem;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
  }

@media screen and (orientation: landscape) {
    #mascotte-container {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        display: flex;
        justify-content: flex-end;
        z-index: -1;
    }

    #mascotte-container img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }
    
    #content-container {
        width: 50vw;
    }

    header {
        padding: 3rem;
        padding-top: 20vh;
        margin-bottom: 30vh;
    }
}

/*
================================================== 
MEDIA QUERIES
==> Vooral gebruikt voor tekstgroottes aan te passen.
==================================================
*/

@media screen and (min-width: 640px) {
    h1, .table-section-header {
        font-size: 2.5rem;
    }

    h2, .table-subsection-header {
        font-size: 1.75rem;
    }

    p, td, address {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 768px) {
    h1, .table-section-header {
        font-size: 3rem;
    }

    h2, .table-subsection-header {
        font-size: 2rem;
    }

    p, td, address {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1024px) {
    h1, .table-section-header {
        font-size: 3.5rem;
    }

    h2, .table-subsection-header {
        font-size: 2.25rem;
    }

    p, td, address {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 1280px) {
    h1, .table-section-header {
        font-size: 4rem;
    }

    h2, .table-subsection-header {
        font-size: 2.5rem;
    }

    p, td, address {
        font-size: 1.5rem;
    }
}