:root {
    --background-color-main: #000;
    --text-color-main: #fff;
    --background-color-hr: #626262;
    --background-color-secondary: #070707;
    --background-gold: linear-gradient(91deg, #BF953F 0%, #FCF6BA 16.15%, rgba(179, 135, 40, 0.47) 52.48%, #FBF5B7 86.35%, rgba(170, 119, 28, 0.28) 99.76%);
    --background-gold-secondary: linear-gradient(91deg, #BF953F 0%, #FCF6BA 49.36%, rgba(179, 135, 40, 0.47) 94.05%);
}

* {
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-color-main);
    text-decoration: none;
}

body {
    background-color: var(--background-color-main);
    padding: 0;
    margin: 0;
}

body.no-overflow {
    overflow: hidden;
}

main {
    height: 100svh;
    background-image: url(images/header_img.png);
    background-repeat: no-repeat;
    background-position: left 80%;
}

header {
    background-color: rgb(15, 15, 15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.logo {
    height: 54px;
}

.display-block {
    display: block !important;
}

header p {
    margin: 0 20px;
    font-size: 11px;
}

nav {
    width: 100%;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    background-color: #000000f5;
    position: fixed;
    top: 28px;
    z-index: 9999;
    backdrop-filter: blur(1px);
}


nav .hamburger {
    font-size: 25px;
}

nav ul {
    list-style: none;
    display: none;
}

nav ul li {
    display: inline;
    margin: 0 20px;
    text-transform: uppercase;
}

nav ul li a:hover {
    background: var(--background-gold-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media only screen and (min-width: 750px) {
    nav {
        padding: 10px 15%;
    }

    nav .hamburger {
        display: none;
    }

    nav ul {
        display: block;
    }
    header p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 1300px) {
    nav {
        padding: 10px 5%;
    }
}

.menu {
    z-index: 999999;
    background: #0e0e0e;
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    text-align: center;
    display: none;
}

.menu .close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
}

.menu .close i {
    color: #C8C8C8;
}

.menu .close li {
    color: gray;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    padding: 40px 0;
}

.menu ul li {
    margin: 20px 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}

.menu-fill-page {
    display: none;
    position: fixed;
    top: 28px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000b2;
    z-index: 99999;
}

.location {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.location h1 {
    font-size: 18px;
    text-transform: uppercase;
}

.location .small-hr {
    width: 50px;
    height: 1px;
    background: var(--background-color-hr);
    margin-bottom: 9px;
}

.location p {
    margin: 5px;
    text-transform: uppercase;
}

.scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    text-align: center;
}

.scroll-down p {
    font-weight: bold;
    font-size: 10px;
}

.scroll-down p, .scroll-down li {
    background: var(--background-gold-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.black {
    width: 95%;
    border-radius: 8px;
    position: fixed;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    z-index: 9999;

}

.appointment-button {
    display: inline-block;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    box-sizing: border-box;
    border: none;
    border-radius: 13px;
    height: 2.75em;
    line-height: 2.5em;
    text-transform: uppercase;
    padding: 0 1em;
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4), inset 0 -2px 5px 1px rgba(139,66,8,1), inset 0 -1px 1px 3px rgba(250,227,133,1);
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    color: #000;
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all .2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
    font-weight: bold;
    text-align: center;
}

.menu a:has(.appointment-button) {
    display: flex;
    justify-content: center;
}

.content {
    padding: 20px 23px 15px;
    overflow: hidden;
}

@media only screen and (min-width: 500px) {
    .content {
        padding: 20px 15% 15px;
    }

    .location h1 {
        font-size: 25px;
    }

    .location p {
        font-size: 18px;
    }

    .black {
        display: none;
    }

    .appointment-button {
        font-size: 13px;
        width: max-content;
        display: inline-block;
    }

    .scroll-down {
        bottom: 0px;
    }

    .scroll-down p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
     .black .appointment-button {
        width: 100%;
    }
}

.content.no-padding {
    padding: 20px 0;
}

.content.secondary-bg {
    background: var(--background-color-secondary);
}

h2 {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.time-list {
    margin-bottom: 40px;
}

.time {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--background-color-hr);
}

.time .day {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.time .hours {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
}

@media only screen and (min-width: 500px) {
    .time .day {
        font-size: 16px;
    }
    .time .hours { 
        font-size: 15px;
    }
}

.gold-hr {
    height: 3px;
    flex-shrink: 0;
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    left: 0;
    right: 0;
    margin-bottom: 3px;
}

h3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.category {
    margin-bottom: 45px;
}

.category div {
    border-left: 1px solid rgba(98, 98, 98, 0.48);
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.category div .name {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    min-width: max-content;
}

.category .dashed {
    width: 100%;
    border-bottom: 1px dashed var(--background-color-hr);
    border-left: none;
    padding: 5px;
}

.category div .prize {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
    min-width: max-content;
}

@media only screen and (min-width: 500px) {
    h3 {
        font-size: 20px;
    }
    .category div .name {
        font-size: 16px;
    }
    .category div .prize {
        font-size: 15px;
    }
}

.category div .prize, .category div .name {
    margin: 5px;
}

/* Key container for the scrolling effect */
.marquee {
    height: 100px;
    width: 100%; /* Adjust width to be responsive */
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

/* Carousel for image scrolling */
.carousel {
    display: flex;
    /*animation: marquee 25s linear infinite; /* Smooth scrolling */
    width: 200%; /* Double the width for the scrolling effect */
    position: relative;
    height: 100%;
}

/* Ensure images scale properly */
.carousel img {
    display: inline-block;
}

/* Remove gap between spans for seamless scrolling */
.carousel span {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}

/* Keyframe for smooth infinite scrolling */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* When screen is large enough, stop scrolling and evenly distribute logos */
@media only screen and (min-width: 500px) {
    .carousel {
        animation: none; /* Stop animation */
        width: 100%; /* Fit to the container width */
    }
    .carousel span {
        width: 100%; /* Each span should take full width */
        justify-content: space-evenly; /* Space out the images evenly */
    }
    .carousel span:nth-child(2) {
        display: none; /* Hide second set of images */
    }
}

.people {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.people .person div {
    padding: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4), inset 0 -2px 5px 1px rgb(139, 66, 8), inset 0 -1px 1px 3px rgb(250, 227, 133);
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    border-radius: 12px;
    height: 156px;
    width: 156px;
}

.people .person div img {
    border-radius: 8px;
    width: 146px;
    height: 146px;
    object-fit: cover;
}

.people p {
    margin-top: 5px;
}

.persoon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (min-width: 500px) {
    .people p {
        font-size: 18px;
    }
    .people {
        gap: 20px;
        justify-content: flex-start;
    }
}

footer {
    padding: 20px 0 50px;
    text-align: center;
}

footer a {
    font-size: 25px;
    margin: 0 10px;
}

footer p {
    font-size: 9px;
    color: #3a3a3a;
    text-transform: uppercase;
    margin-top: 30px;
}

@media only screen and (min-width: 500px) {
    footer {
        padding: 20px 0;
    }
    footer p {
        font-size: 13px;
    }
}