/* =========================================
   BASIS
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #fff9ef;
    color: #211b38;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.site {
    overflow: hidden;
}


/* =========================================
   TYPOGRAFIE
========================================= */

h1,
h2,
h3 {
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
    font-size: 1.7rem;
}

h1 span,
h2 span {
    color: #e83f27;
    display: block;
}

p {
    font-size: 1.05rem;
}


/* =========================================
   HEADER
========================================= */

.header {
    width: min(1200px, 92%);
    margin: auto;

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    width: 150px;
    height: auto;
}

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navigation a {
    font-weight: 700;
    transition: transform 0.2s ease;
}

.navigation a:hover {
    color: #e83f27;
    transform: rotate(-2deg);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.account-link {
    font-weight: 700;
}


/* =========================================
   BUTTONS
========================================= */

.button {
    display: inline-block;
    border: 3px solid #211b38;
    border-radius: 50px;

    padding: 14px 25px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 #211b38;
}

.button-small {
    padding: 9px 17px;
}

.button-primary {
    background: #f7c928;
}

.button-secondary {
    background: white;
}

.button-ticket {
    background: #e83f27;
    color: white;
    border-color: #211b38;
    white-space: nowrap;
}


/* =========================================
   HERO
========================================= */

.hero {
    width: min(1200px, 92%);
    min-height: 650px;

    margin: 35px auto 80px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;
    gap: 50px;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.hero-text {
    max-width: 600px;
    font-size: 1.25rem;
    margin: 25px 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-image {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 80%;
    height: 450px;

    object-fit: cover;

    border: 5px solid #211b38;

    border-radius: 45% 55% 50% 40% / 40% 45% 55% 60%;

    transform: rotate(3deg);

    position: relative;
    z-index: 2;
}

.image-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-one {
    width: 170px;
    height: 170px;

    background: #f7c928;

    top: 15px;
    right: 10px;
}

.shape-two {
    width: 130px;
    height: 130px;

    background: #713bb5;

    bottom: 20px;
    left: 5px;
}

.image-sticker {
    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 50px;

    width: 120px;
    height: 120px;

    background: #e83f27;
    color: white;

    border: 4px solid #211b38;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 900;
    font-size: 1.4rem;

    transform: rotate(12deg);
}


/* =========================================
   QUICK INFO
========================================= */

.quick-info {
    width: min(1200px, 92%);
    margin: auto;

    padding: 25px;

    background: #211b38;
    color: white;

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    position: relative;
    z-index: 5;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 42px;
    height: 42px;

    background: #f7c928;
    color: #211b38;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
}

.info-item strong {
    display: block;
}

.info-item p {
    margin: 0;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    width: min(1200px, 92%);
    margin: 140px auto;
}


/* =========================================
   SECTION LABEL
========================================= */

.section-label {
    display: flex;
    align-items: center;

    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.12em;

    color: black;

    margin-bottom: 40px;
}

.section-label span:first-child {
    background: transparent !important;
    color: black !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline !important;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    margin-bottom: 25px;
}

.text-link {
    color: #e83f27;
    font-weight: 900;
}


/* =========================================
   FEATURES
========================================= */

.features {
    width: min(1200px, 92%);
    margin: 100px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature {
    min-height: 300px;

    padding: 35px;

    border: 4px solid #211b38;
    border-radius: 25px;

    position: relative;

    transition: transform 0.25s ease;
}

.feature:hover {
    transform: rotate(-2deg) translateY(-8px);
}

.feature-yellow {
    background: #f7c928;
}

.feature-orange {
    background: #f47a3c;
}

.feature-purple {
    background: #8d68d8;
    color: white;
}

.feature-number {
    font-weight: 900;
    font-size: 0.8rem;
}

.feature h3 {
    margin: 50px 0 15px;
}


/* =========================================
   AUDIENCE
========================================= */

.audience-section {
    width: min(1200px, 92%);
    margin: 140px auto;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.audience-card {
    background: white;

    border: 3px solid #211b38;
    border-radius: 25px;

    padding: 35px;

    box-shadow: 8px 8px 0 #f7c928;
}

.audience-card:nth-child(2) {
    transform: none;
    box-shadow: 8px 8px 0 #e83f27;
}

.audience-card:nth-child(3) {
    box-shadow: 8px 8px 0 #713bb5;
}

.card-icon {
    font-size: 2.5rem;
}

.audience-card h3 {
    margin: 20px 0 12px;
}


/* =========================================
   NEXT SHOW
========================================= */

.next-show {
    width: min(1200px, 92%);
    margin: 120px auto;

    background: #f7c928;

    border: 4px solid #211b38;
    border-radius: 35px;

    padding: 60px;

    position: relative;

    overflow: hidden;
}

.next-show-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.show-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;

    margin: 35px 0;
}

.show-details div {
    display: flex;
    flex-direction: column;
}

.show-details strong {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.show-details span {
    font-size: 1.2rem;
    font-weight: 800;
}

.price {
    font-size: 2rem;
    font-weight: 900;

    margin-bottom: 30px;
}

.price small {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.burst {
    position: absolute;

    right: -30px;
    top: 50px;

    width: 250px;
    height: 250px;

    background: #e83f27;
    color: white;

    border: 4px solid #211b38;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 2.5rem;
    font-weight: 900;

    transform: rotate(15deg);
}


/* =========================================
   ACCOUNT
========================================= */

.account-section {
    width: min(1000px, 92%);
    margin: 100px auto;

    padding: 50px;

    background: #713bb5;
    color: white;

    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.account-section h2 span {
    color: #f7c928;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    width: min(1200px, 92%);
    margin: 140px auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details {
    background: white;

    padding: 35px;

    border: 3px solid #211b38;
    border-radius: 25px;

    box-shadow: 10px 10px 0 #f47a3c;
}

.contact-details p {
    margin-bottom: 25px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #211b38;
    color: white;

    padding: 50px 4%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    gap: 30px;
}

.footer-logo img {
    width: 130px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a:hover {
    color: #f7c928;
}

.accessibility {
    text-align: right;
}

.accessibility label {
    cursor: pointer;
    text-decoration: underline;
}

.copyright {
    grid-column: 1 / -1;

    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.3);

    font-size: 0.8rem;
}


/* =========================================
   DYSLEXIE-VRIENDELIJKE OPTIE
========================================= */

.accessibility-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#dyslexie-toggle:checked ~ .site {
    font-family: Arial, Verdana, sans-serif;
    letter-spacing: 0.025em;
    line-height: 1.8;
}

#dyslexie-toggle:checked ~ .site p {
    max-width: 75ch;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .hero-image {
        min-height: 400px;
    }

    .quick-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .features,
    .audience-cards {
        grid-template-columns: 1fr;
    }

    .audience-card:nth-child(2) {
        transform: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }

    .accessibility {
        text-align: left;
    }
}


/* =========================================
   RESPONSIVE - TELEFOON
========================================= */

@media (max-width: 600px) {

    .header {
        min-height: 75px;
    }

    .logo {
        width: 120px;
    }

    .account-link {
        display: none;
    }

    .hero {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    .hero-image {
        min-height: 350px;
    }

    .main-image {
        width: 90%;
        height: 330px;
    }

    .image-sticker {
        width: 90px;
        height: 90px;
        font-size: 1rem;
    }

    .quick-info {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .button-ticket {
        text-align: center;
    }

    .about-section,
    .audience-section,
    .contact-section {
        margin: 90px auto;
    }

    .next-show {
        padding: 35px 25px;
    }

    .show-details {
        gap: 20px;
    }

    .burst {
        width: 130px;
        height: 130px;
        font-size: 1.3rem;
        right: -45px;
        top: 20px;
    }

    .account-section {
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .copyright {
        grid-column: auto;
    }
}
/* =========================================
   TOUR CARROUSEL
========================================= */

.tour-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.tour-cards {
    display: flex;
    gap: 30px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    padding: 10px 5px 25px;
    scroll-behavior: smooth;
}

.tour-cards .audience-card {
    flex: 0 0 calc(50% - 15px);
    margin: 0;
    min-width: 0;
}

.tour-arrow {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    border: 3px solid #211b38;
    border-radius: 50%;

    background: #f7c928;
    color: #211b38;

    font-size: 1.5rem;
    font-weight: 900;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-arrow:hover {
    background: #e83f27;
    color: white;
}

.tour-arrow-right {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

@media (max-width: 600px) {

    .tour-cards .audience-card {
        flex: 0 0 100%;
    }

}