* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: slow;
}

body {
    max-width: 100%;
    height: 100%;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    overflow-x: hidden;
}

h1{font-size:36px;}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}
h1,h2,h3,h4,h5,h6{font-family: "Trebuchet MS", Helvetica,sans-serif;font-weight:400;margin:10px 0}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: all 0.4s ease;
    background: #2196F3;

    background: linear-gradient(to bottom,
    rgba(33, 150, 243, 1.0) 10%,
    rgba(33, 150, 243, 0.2) 100%
    );
    z-index: 1000;
}

/* Header in vaste (gescrollde) toestand */
header.scrolled {
    background-color: rgba(33, 150, 243, 0.8);
    height: 60px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* ==== Logo ==== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 100px;
    width: auto;
    transition: height 0.4s ease;
    border-radius: 8px;
}

/* Bij scrollen wordt het logo kleiner */
header.scrolled .logo {
    height: 40px;
}

#open_menu {
    display: none;
}

nav a {
    color: #222;
    text-decoration: none;
    margin-left: 60px;
    font-weight: bold;
}

#content {
    margin: 150px auto;
    width: 100%;
    max-width: 1280px;
}

#content h1 {
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    scroll-margin-top: 150px;
}

#content h2 {
    margin-top: 50px;
}

#content .titlediv {
    font-size: 50px;
    text-align: center;
}

#content .titlediv a:link,
#content .titlediv a:visited {
    color: #000;
}

#content .titlediv a:hover {
    color: #2196F3;
}

#content a:link, #content a:visited {
    color: blue;
    text-decoration: none;
}

#content a:hover {
    text-decoration: underline;
}

#content label {
    width: 120px;
    display: inline-block;
    vertical-align: middle;
}

p.error {
    width: 100%;
    max-width: 450px;
    background: red;
    color: white;
    padding: 3px;
}

footer {
    margin: 60px 0 -15px 0;
    width: 100%;
    line-height: 24px;
    clear: both;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

footer #cols {
    width: 100%;
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0 auto;
}

footer .col {
    padding: 20px;
}

footer .col a {
    display: block;
}

footer button,
.Artist_container button {
    color: #999;
    background-color: #222;
    border: none;
    padding: 10px;
    margin: 25px auto;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    line-height: 23px;
    max-width: 270px
}

footer ul {
    margin-top: 0;
    margin-left: -40px;
    list-style-type: none;
}

footer a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

footer #legal {
    width: calc(100vw - 40px);
    border-top: 2px solid #2196F3;
    height: 45px;
    font-size: 14px;
    color: #888;
    margin: 30px auto 15px auto;
    padding: 12px 0;
}

footer #legal a {
    margin-right: 40px;
    color: #888;
    font-weight: normal;
}

footer #legal span {
    float: right;
}

form {
    width: calc(100% - 60px);
    margin: 20px auto;
}

input,
select,
textarea {
    font-size: 14px;
    padding: 10px 5px;
    margin-right: 60px;
    width: 250px;
}

textarea {
    resize: none;
}

#artists {
    width: calc(100% - 60px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 10px auto;
}

#artists a,
.artist_card a {
    text-decoration: none!important;
}

.artist_card {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
}

.artist_card a:link img,
.artist_card a:visited img {
    width: 100%;
    border: 2px solid #C2C2C2;
    border-radius: 8px;
}

.artist_card a:hover img {
    border: 2px solid #2196F3;
}

.artist_card a:link span,
.artist_card a:visited span,
.artist_card a:link h3,
.artist_card a:visited h3 {
    color: #222;
}

.artist_card a:hover span,
.artist_card a:hover h3 {
    color: #2196F3;
}

.artist_card img {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.artist_card span,
.artist_card h3 {
    margin: 3px 0;
}

#form_aanvragen {
    width: 50%;
    float: left;
}

#form_aanvragen p {
    line-height: 30px;
    margin: 4px 0;
    display: flex;
    align-items: center;
}

#form_aanvragen span {
    color: #2196F3;
    font-size: 20px;
    cursor: help;
}

#form_aanvragen input,
#form_aanvragen select,
#form_aanvragen textarea {
    margin-right: 8px;
}

#page_home,
#page_vragen,
#page_contact,
#page_over_ons,
#page_voorwaarden,
#page_privacy_cookies {
    width: 90%;
    max-width: 800px;
    margin: 70px auto;
}

#page_vragen ol {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
}

#page_vragen h3 {
    scroll-margin-top: 150px;
}

#page_vragen form p,
#page_contact form p {
    margin: 6px 0;
}

#page_vragen form label {
    width: 70px;
}

#page_contact h2 {
    margin: 30px 0 8px 0;
}

#page_home p,
#contact_informatie p,
#page_over_ons p,
#page_voorwaarden p,
#page_privacy_cookies p {
    margin: 12px 0;
}

#page_voorwaarden button,
#page_privacy_cookies button {
    color: #999;
    background-color: #222;
    border: none;
    padding: 10px;
    margin: 25px auto;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    line-height: 23px;
    max-width: 320px;
    cursor: pointer;
}

.SuccesMessage {
    width: 90%;
    max-width: 800px;
    background-color: green;
    color: white;
    padding: 15px;
}

.Artist_container {
    width:90%;
    max-width: 800px;
    margin: 50px auto;
}

.Artist_container img{min-width:160px;min-height:160px;margin:5px 5px 15px 0;float: left}
.Artist_info{margin:2px 0 10px 10px;float:left;}
.Artist_info p{margin: 3px 0;}
.Artist_info span#score{color: #2196F3; font-size: 26px;}
.Artist_info label {margin-top: -4px; width:60px!important; font-weight:bold; }
.Artist_prijs {font-size:40px;font-weight:bold;font-style:italic;color:#339966;cursor:help;line-height:40px;}
.Artist_prijs .exclusief {width:60px;height:60px;background-image:url('https://foppersinconcert.nl/images/exclusief.png');cursor:help;display:inline-block;margin-top:-24px}
.hyperlinkcss{position:absolute;font-size:10px;margin-left:5px;margin-top:0px;visibility:hidden;border: 1px solid #000;line-height:10px;z-index:100;background:#FFFFCC;width:250px;padding:2px;text-align:left;clear:both;}
.Artist_bio1, .Artist_bio2{width:98%;margin:3px 3px 10px 3px;float:left;clear:both;}
.Artist_bio1 h2 {margin: -18px 0 -10px 0;}
.Artist_bio1 p{margin:13px 0;}
.quick_info {width:100%;margin:10px 0 0 3px;font-weight:bold;}
#biografie_keywords{margin:8px 0 0 3px;float:left;}
#biografie_keywords a:link,
#biografie_keywords a:visited,
#biografie_keywords a:hover,
#quick_link a:link,
#quick_link a:visited,
#quick_link a:hover{color:#000;text-decoration:none;cursor:pointer;}
.whatsapp-send {color:blue;cursor:pointer;}
.tussenlijn{width:100%;height:3px;margin-top:2px;margin-bottom:10px;background-color:#FF9900;border:none;clear:both;}

#div_biografie {
    float:right;width:35%;margin: 50px 15% 50px 0;
}

#div_beeld_geluid {
    float:left;width:35%;margin: 50px 0 50px 15%;
}

.artist_link {
    color: blue;
}

.artist_link:hover {
    text-decoration: underline;
}

.type_link:hover {
     cursor: pointer;
     color: #2196F3;
}

#Agenda {width:90%; max-width:800px;margin:40px auto;clear:both;}
#Agenda .item {width:100%; border: 0.8px solid black;margin: 5px 0; padding: 12px; border-radius: 8px;overflow:visible;background:#FFF;}
#Agenda .item .date {width:70px;display:inline-block;vertical-align:middle;}
#Agenda .item .venue {width: 220px; display:inline-block;vertical-align:middle;}
#Agenda .item .location {width: 270px; display:inline-flex;vertical-align:middle;align-items:center;}
#Agenda .item .location img {height:16px;margin: 0 10px;}
#Agenda .item .extra-info {width: 30px;display:inline-block;}
#Agenda .item .extra-info img {height: 20px;vertical-align:middle;}
#Agenda .item .location span {vertical-align:middle;display:inline-block;}
#Agenda p {width: 100%;max-width:700px;font-size: 12px !important;text-align:center;margin: -3px auto 0 auto;}

/* Phone / Portrait */
@media screen and (max-width: 450px) and (orientation:portrait) {
#open_menu {
    display: block;
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 40px;
    font-weight: bold;
}

nav {
   width: 230px;
   display: none;
   position: absolute;
   top: 50px;
   right: 8px;
   background-color: #2196F3;
   z-index: 1200;
   border: 1px solid #333;
}

nav a {
    display: block;
    margin: 6px 3px;
}

form {
    width: 100%;
}

#content h1 {
    font-size: 40px;
}

#form_aanvragen {
    width: 100%;
}

#artists {
    width: calc(100% - 20px);
    grid-template-columns: repeat(2, 1fr);
}

.artist_card {
    padding: 6px;
}

.Artist_info {
    width: calc(100% - 20px);
    margin: 0 auto;
    float: none;
}

.Artist_info button {
    display:block;
    margin: 25px auto !important;
}

#div_biografie {
    width: calc(100% - 20px);
    padding: 10px 0;
    margin: 0 auto;
    float: none;
}

#div_beeld_geluid {
    width: calc(100% - 20px);
    padding: 40px 0;
    margin: 40px auto;
    float: none;
}

#div_beeld_geluid iframe {
    width:100%;
}

footer #cols {
    max-width: 450px;
    grid-template-columns: repeat(1, 1fr);
}

footer .col {
    border-bottom: 1px solid #C2C2C2;
}

footer button {
    display: block;
}

footer #legal {
    height: 125px;
}

footer #legal a {
    display: block;
}

footer #legal span {
    float: right;
}

}

@media screen and (max-width: 768px) and (orientation:landscape) {
#open_menu {
    display: block;
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 40px;
    font-weight: bold;
}

nav {
   width: 230px;
   display: none;
   position: absolute;
   top: 50px;
   right: 8px;
   background-color: #2196F3;
   z-index: 1200;
   border: 1px solid #333;
}

nav a {
    display: block;
    margin: 6px 3px;
}

#artists {
    width: calc(100% - 20px);
    grid-template-columns: repeat(3, 1fr);
}

.artist_card {
    padding: 6px;
}

#div_biografie {
    width: calc(100% - 20px);
    padding: 10px 0;
    margin: 0 auto;
    float: none;
    clear: both;
}

#div_beeld_geluid {
    width: calc(100% - 20px);
    padding: 40px 0;
    margin: 40px auto;
    float: none;
    clear: both;
}

footer #cols {
    max-width: 630px;
    grid-template-columns: repeat(2, 1fr);
}

footer .col {
    border-bottom: 1px solid #C2C2C2;
}

footer button {
    display: block;
}

footer #legal {
    height: 125px;
}

footer #legal a {
    display: block;
}

footer #legal span {
    float: right;
}
}

@media screen and (max-width: 768px) and (orientation:portrait) {
#open_menu {
    display: block;
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 40px;
    font-weight: bold;
}

nav {
   width: 230px;
   display: none;
   position: absolute;
   top: 50px;
   right: 8px;
   background-color: #2196F3;
   z-index: 1200;
   border: 1px solid #333;
}

nav a {
    display: block;
    margin: 6px 3px;
}

#div_biografie {
    width: calc(100% - 20px);
    padding: 10px 0;
    margin: 0 auto;
    float: none;
    clear: both;
}

#div_beeld_geluid {
    width: calc(100% - 20px);
    padding: 40px 0;
    margin: 40px auto;
    float: none;
    clear: both;
}

}
