html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent}a:active,a:hover{outline-width:0}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea,optgroup{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
h1, h2, h3, h4, h5, h6 {margin:0;padding:0;}
/* End extract */

@font-face {
    font-family: "kurri-island";
    src: url( "/public/fonts/KurriIslandCapsPERSONAL-Thin.ttf" );
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "kurri-island";
    src: url( "/public/fonts/KurriIslandCapsPERSONAL-Reg.ttf" );
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "kurri-island";
    src: url( "/public/fonts/KurriIslandCapsPERSONAL-Med.ttf" );
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "kurri-island";
    src: url( "/public/fonts/KurriIslandCapsPERSONAL-Bold.ttf" );
    font-weight: 900;
    font-style: normal;
}

html {
    font-weight: 400;
    font-size: 16px;
    font-family: 'kurri-island', Verdana, Sans-serif;
}

body {
    --car-show-blue: #073f6f;
    --car-show-yellow: #ffde59;
    --font-size-text-normal: 2rem;
    --font-size--text-small: 1.5rem;
    --font-size-title-normal: 3.5rem;
    --font-size--title-small: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: var(--body-background-color);
    color: var(--body-color);
    min-height: 100vh;
}

p {
    margin-top: 0;
}

.cookies-notice-wrapper {
    position: sticky;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center; 
}
.cookies-notice-wrapper .cookies-notice {
    background-color: var(--car-show-blue);
    color: #f9f9f9;
    border-radius: 3px;
    padding: 15px;
    margin: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4); 
}
.cookies-notice-wrapper .cookies-notice .cookies-notice-image,
.cookies-notice-wrapper .cookies-notice .cookies-notice-message,
.cookies-notice-wrapper .cookies-notice .cookies-notice-button {
    display: flex;
    padding: 10px; 
}
.cookies-notice-wrapper .cookies-notice .cookies-notice-image {
    justify-content: left; 
}
.cookies-notice-wrapper .cookies-notice .cookies-notice-message {
    justify-content: center; 
}
.cookies-notice-wrapper .cookies-notice .cookies-notice-message p {
    text-align: justify; 
}
.cookies-notice-wrapper .cookies-notice .cookies-notice-button {
    justify-content: center; 
}
.cookies-notice-wrapper .cookies-notice img {
    width: 50px;
    height: 50px; 
}

.cookies-notice-wrapper .cookies-notice .cookies-notice-button .link-button {
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    background-color: var(--car-show-yellow);
    color: var(--car-show-blue);
}


.body-yellow {
    --body-color: var(--car-show-blue);
    --body-background-color: var(--car-show-yellow);
}

.body-blue {
    --body-color: var(--car-show-yellow);
    --body-background-color: var(--car-show-blue);
}

.body-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    height: 100%;
}
@media (min-width: 1280px) {
    .body-content {
        width: 1280px;
    }    
}

.body-content .main-content {
    padding: 16px 16px 0 16px;
    font-size: var(--font-size--text-small);    
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
@media (min-width: 960px) {
    .body-content .main-content {
        padding: 40px 24px 0 24px;
        font-size: var(--font-size-text-normal);
        width: 80%;
        margin-top: 70px;
    }
}

.body-content .main-content > h2:first-child {
    padding-top: 0;
}

.header {
    width: 100%
}

.header .header-title {
    background-color: var(--body-color);
    color: var(--body-background-color);
    height: 85px;
}


.header .header-title,
.header .header-title .header-title-logo {
    overflow: visible;
}

.header .header-title .header-title-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header .header-title .logo {
    z-index: 8;
}

.header .header-title .logo img{
    width: 160px;
    height: auto;
    display: flex;
}
@media (min-width: 960px) {
    .header .header-title .logo img{
        width: 320px;
        height: 287px;
    }
}

.header .header-upper-elements {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}
@media (min-width: 960px) {
    .header .header-upper-elements {
        height: 120px;
    }
}

.header .header-upper-elements .header-upper-element {
    padding: 0 8px;
    font-size: 1.4rem;
}

.header .header-upper-elements .header-upper-element .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.header .header-title {
    display: flex;
    flex-direction: row;
}

.header .header-title .header-title-logo {
    width: 190px;
}
@media (min-width: 960px) {
    .header .header-title .header-title-logo {
        width: 350px;
    }
}

.header .header-title .header-title-text {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.header .header-title .header-title-text h1 {
    padding: 0 0 0 24px;
    font-size: 1.5rem;
    white-space: normal;
    word-wrap: break-word;
}
@media (min-width: 700px) {
    .header .header-title .header-title-text h1 {
        font-size: 2rem;
    }
}
@media (min-width: 960px) {
    .header .header-title .header-title-text h1 {
        padding: 0 0 0 24px;
        font-size: 3rem;
    }
}

.header .header-upper-elements a,
.header .header-upper-elements button
 {
    color: var(--body-color);
}    

.header a,
.header a:visited,
.header a:hover {
    text-decoration: none;
}

.sos * {
    color: #df121c!important;
}

.sos i {
    margin-right: 2px;
}

.welcome {
    width: 100%;
    height: auto;
}

.home-menu {
    background-color: var(--car-show-blue);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    align-self: stretch;
    flex-grow: 1;
    padding-bottom: 40px;
    margin-top: 30px;
}
@media (min-width: 960px) {    
    .home-menu {
        margin-top: 50px;
    }
}

.home-menu img {
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
}

.home-menu .home-menu-entry {
    width: 100%;
    padding: 8px 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.home-menu .home-menu-entry a,
.home-menu .home-menu-entry a:hover,
.home-menu .home-menu-entry a:visited {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--car-show-yellow);
    color: var(--car-show-blue);
    padding: 3px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: var(--font-size--text-small);
    width: 100%;
}
@media (min-width: 700px) {
    .home-menu .home-menu-entry a,
    .home-menu .home-menu-entry a:hover,
    .home-menu .home-menu-entry a:visited {
        width: 500px;
        font-size: var(--font-size-text-normal);
    }
}

.security-page-content,
.exhibitor-list-content {
    background-image: url('/public/images/safety-rules-background.svg');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
@media (min-width: 960px) {    
    .security-page-content,
    .exhibitor-list-content {
        min-height: 1280px;
    }
}

.security-page-content .rules-list {
    color: #ffffff;
}

.security-page-content .rules-list li {
    margin-bottom: 24px;
}

.security-page-content .security-background {
    display: flex;
    margin: 0;
    width: 100%;
    height: auto;
}

.schedule-activities-page-content h2,
.food-trucks-content h2 {
    padding: 16px 0;
    font-size: var(--font-size--title-small);
}  
@media (min-width: 960px) {
    .schedule-activities-page-content h2,
    .food-trucks-content h2 {
        font-size: var(--font-size-title-normal);
    }  
}

.schedule-activities-page-content ul {
    list-style: none;    
    padding-left: 0;
    margin: 0;      
    font-weight: 200;
}

.schedule-activities-page-content ul strong {
    font-weight: 600;
}

.schedule-activities-page-content ul li { 
    margin-bottom: 16px;
}

.schedule-activities-background {
    display: flex;
    margin: 0;
    width: 100%;
    height: auto;
}

.emergency-content ul,
.exhibitor-list-content ul,
.drink-tickets-content ul {
    list-style: none;    
    padding-left: 0;
    margin: 0 0 32px 0;      
}

.exhibitor-list-content ul li {
   margin-bottom: 8px;
}

.exhibitor-list-content ul li span {
    color: #ffffff;
}

.drink-tickets-content ul {
    list-style: none;          /* Remove default bullets */
    padding-left: 0;           /* Remove indent */
    font-weight: 200;
}

.drink-tickets-content ul strong {
    font-weight: 600;
}

.drink-tickets-content ul li {
    display: list-item;        /* Ensure each <li> is a block-style list item */
    position: relative;
    padding-left: 1.5em;       /* Space for icon */
    text-align: left;          /* Make sure text is aligned */
    margin-bottom: 24px;
}

.drink-tickets-content ul li:before {
    position: relative;
    font-family: "Font Awesome 6 Free"; /* or "Font Awesome 5 Free" depending on version */
    font-weight: 900; /* Solid icons */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--car-show-blue); /* Custom color */
}

.drink-tickets-content ul li:nth-child(1):before {
    content: "\f145"; /* Font Awesome unicode for check icon */
}

.drink-tickets-content ul li:nth-child(2):before {
    content: "\f09d"; /* Font Awesome unicode for check icon */
}

.drink-tickets-content ul li:nth-child(3):before {
    content: "\f561"; /* Font Awesome unicode for check icon */
}

.drink-tickets-content ul li:nth-child(4):before {
    content: "\f805"; /* Font Awesome unicode for check icon */
}

.drink-tickets-content table {
    border-collapse: collapse;
    margin: auto;    
}


.drink-tickets-content table td {
    font-size: 1.1rem;
}
@media (min-width: 960px) {
    .drink-tickets-content table td {
        font-size: var(--font-size-text-normal);
    }
}

.drink-tickets-content table td .beers {
    font-size: 0.7rem;
}
@media (min-width: 960px) {
    .drink-tickets-content table td .beers {
        font-size: 1.6rem;
    }
}

.drink-tickets-content table th,
.drink-tickets-content table td {
    border: solid 2px var(--car-show-blue );
    padding: 8px 4px;
    text-align: center;
}
@media (min-width: 960px) {
    .drink-tickets-content table th,
    .drink-tickets-content table td {
        padding: 8px 16px;
    }
}

.drink-tickets-content table th {
    border: solid 2px var(--car-show-blue );
    background-color: var(--car-show-blue );
    color: #ffffff;
    font-size: 1rem;
}
@media (min-width: 960px) {
    .drink-tickets-content table th {
        font-size: var(--font-size-text-normal);
    }
}

.drink-tickets-content table td:nth-child(1) {
    text-align: left;
}

.food-trucks-content p {
    margin: 8px 0;
    color: #ffffff;
}

.food-trucks-content .food-truck-background {
    display: flex;
    align-self: center;
    width: 90%;
    /* margin-top: auto; */
}

.food-trucks-content .foodtruck .foodtruck-detail {
    display: grid;
    align-items: center;
    grid-template-columns: 65% auto;
    font-size: 1.1rem;
}
@media (min-width: 960px) {
    .food-trucks-content .foodtruck .foodtruck-detail {
        font-size: 2rem;
    }
}

.food-trucks-content .foodtruck .foodtruck-detail img {
    height: auto;
    width: 100%;
    margin: 0;
    justify-self: center;
}

.site-map-content {
    background-image: url('/public/images/plan.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0!important;
    width: 100%!important;
    margin-top: 0!important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.site-map-content a,
.site-map-content a:visited,
.site-map-content a:hover { 
    background-color: var(--car-show-blue);
    padding: 8px 24px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4); 
}
@media (min-width: 960px) {
    .site-map-content a,
    .site-map-content a:visited,
    .site-map-content a:hover { 
        font-size: 3rem;
    }
}

.site-map-content a i {
    color: var(--car-show-yellow);
    margin-left: 16px;
}

.cadisco-discount-voucher-content {
    align-items: center!important;
}

.cadisco-discount-voucher-content img {
    width: 100%;
    max-width: 486px;
    height: auto;
}

.cadisco-discount-voucher-content a,
.cadisco-discount-voucher-content a:visited,
.cadisco-discount-voucher-content a:hover { 
    background-color: var(--car-show-blue);
    padding: 8px 24px;
    text-decoration: none;
    color: var(--car-show-yellow);
    font-size: 1.5rem;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4); 
}
@media (min-width: 960px) {
    .cadisco-discount-voucher-content a,
    .cadisco-discount-voucher-content a:visited,
    .cadisco-discount-voucher-content a:hover { 
            font-size: 3rem;
    }
}

.cadisco-discount-voucher-content a i {
    color: var(--car-show-yellow);
    margin-left: 16px;
}

.cadisco-discount-voucher-content p {
    color: var(--car-show-blue);
    text-align: center;
    padding-top: 32px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 63, 111, 0.95); /* dark overlay */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
  
.menu-overlay.active {
    display: flex;
}
  
.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
  
.menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.menu-links a,
.menu-links a:hover,
.menu-links a:visited {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--car-show-yellow);
    color: var(--car-show-blue);
    padding: 3px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: var(--font-size--text-small);
    width: 100%;
}
@media (min-width: 700px) {
    .menu-links a,
    .menu-links a:hover,
    .menu-links a:visited {
        width: 500px;
        font-size: var(--font-size-text-normal);
    }
}

.emergency-content {
    background-image: url('/public/images/emergency-background.svg');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
@media (min-width: 960px) {    
    .emergency-content {
        min-height: 1280px;
    }
}

.emergency-content h2 {
    font-size: var(--font-size--title-small);
}
@media (min-width: 960px) {    
    .emergency-content h2 {
        font-size: var(--font-size--title-normal);
    }
}


.emergency-content a,
.emergency-content a:visited,
.emergency-content a:hover {
    text-decoration: none;
    color: #ffffff;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-text-small);
}
@media (min-width: 960px) {    
    .emergency-content {
        font-size: var(--font-size-text-normal);
    }
}

.emergency-content .contact-coordinator span:first-child {
    margin-right: 16px;
}

.emergency-content .contact-emergency span:first-child {
    margin-right: 16px;
}

.emergency-content ul {
    margin-top: 32px;
}

.emergency-content ul li {
    margin-bottom: 24px;
}

.thumbnails {
    display: flex;
    flex-direction: flow;
    flex-wrap: wrap;
}

.thumbnail {
    display: inline-block;
    margin: 5px;
}
.thumbnail img {
    width: 300px;
    height: auto;
    border: 1px solid #ccc;
    transition: transform 0.2s;
}
.thumbnail img:hover {
    transform: scale(1.05);
}