:root {
    --primary: #F27023; /* Basiskleur Mamacita */
    --secondary: #303030; /* Tweedekleur Mamacita */
}

body {
    margin: 0;
    background-image: url('images/achtergrond_mamacita.jpg');
    background-size: cover; /* Use cover for full coverage */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    max-width: 100%;
}

.pop-up-mobile-container {
    position: fixed; /* Position fixed to cover the whole screen */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with 80% opacity */
    display: flex; /* Center the child elements */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 1000; /* Ensure it's on top of other content */
    transition: opacity 1s ease; /* Transition for fading out */
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.pop-up-mobile-container.visible {
    opacity: 1;
    pointer-events: auto;
}

.pop-up-mobile {
    width: 80%;
    height: 20rem;
    background-color: white; /* White background for the card */
    padding: 20px; /* Padding around the content */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
    align-items: center; /* Center children horizontally */
    position: relative; /* To position the close button */
}

.hidden {
    opacity: 0; /* Fade out effect */
    pointer-events: none; /* Prevent interaction when hidden */
}

.pop-up-mobile p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15pt;
    font-weight: bold;
}


.close-button {
    position: absolute; /* Position the close button */
    top: 1.5rem;
    left: 14.5rem;
    background: none; /* No background */
    border: none; /* No border */
    font-size: 48px; /* Increased size for better visibility */
    color: var(--primary);
    cursor: pointer; /* Pointer cursor on hover */
    line-height: 1; /* Adjust line height if needed */
}

.pop-up-image {
    margin-top: 1rem;
}

.pop-up-button {
    margin-top: 2rem;
    width: 70%;
    height: 15%;
    padding: 10px 20px; /* Button padding */
    background-color: var(--primary);
    color: white; /* Button text color */
    border: none; /* No border */
    border-radius: 5px; /* Optional: rounded button corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.pop-up-button:hover {
    background-color: #365a8a; /* Darker shade on hover */
}

.container-countdown {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 8rem;
    background-color: white;
    opacity: 80%;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container-countdown p {
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 5px; /* Adjust this value to reduce space */
}

.countdown {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    font-weight: bold;
    margin-top: 0; /* Ensure there's no additional margin */
}

.time {
    font-size: 1.5em;
    margin: 0 5px;
}

.countdown span {
    font-size: 14px;
    color: #666;
}

/* Mobile Nav */

.container-nav-mobile {
    width: 100vw; /* Full viewport width */
    height: 7rem;
    display: flex;
    justify-content: center; /* Center .nav-mobile horizontally */
    align-items: center; /* Center items vertically */
    position: fixed; /* Fix container at the top */
    z-index: 15;
    top: 1rem;
}

.nav-mobile {
    width: 82%; /* Keep the original width */
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary);
    border-radius: 15px;
    padding: 0 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative; /* No fixed positioning */
    z-index: 10;
}

.logo-mobile {
    height: 7rem; /* Adjust the height of the logo */
    width: auto; /* Maintain aspect ratio */
    z-index: 35;
}

.dropdown-icon-mobile {
    scale: 3;
    cursor: pointer; /* Pointer cursor for the dropdown */
    color: white; /* Icon color */
    padding-right: 1rem;
}

.dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute; /* Positioned relative to the nav-mobile */
    top: 85%; /* Directly below the navbar */
    height: 21rem;
    right: 0; /* Align it with the dropdown icon */
    background-color: var(--secondary);
    border-radius: 0 0 15px 15px; /* Rounded bottom corners */
    width: 100%; /* Menu width */
    z-index: 20; /* Ensure the dropdown is on top of other content */
}

.dropdown-menu.show {
    display: block; /* Show the dropdown when toggled */
}

.dropdown-menu a {
    margin-top: 2.5rem;
    display: block; /* Make each item a block for easier clicking */
    padding: 0.2rem; /* Padding for spacing */
    text-align: center; /* Center the menu text */
    color: white; /* Text color */
    font-size: 15pt;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-decoration: none;
}

/* Flexbox for social icons */
.social-icons-mobile {
    display: flex; /* Use flexbox to arrange icons horizontally */
    justify-content: center; /* Center the icons horizontally */
    margin-top: 3rem; /* Add spacing above the social icons */
}

.social-icons-mobile a {
    margin: 0 1rem; /* Spacing between icons */
}

.social-icons-mobile img {
    width: 2rem; /* Adjust the size of the icons */
    height: auto; /* Maintain aspect ratio */
}

/* Desktop Navbar */

nav {
    width: 100%;
    max-width: 70.125rem; 
    height: 5.6875rem; 
    display: flex;
    position: sticky;
    top: 0;
    margin-top: 3rem; /* Space from the top */
    border-radius: 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    z-index: 997;
}

/* Colored part of the navbar */
.nav-colored {
    flex: 1; 
    background-color: #4471B4;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    align-items: center;
    padding-left: 1rem; 
    position: relative; /* For positioning the dropdown icon */
}

/* Logo Styles */
.logo {
    height: 10rem;
    width: auto; 
    margin-right: 4rem; 
    margin-left: 1rem; 
}

/* Text Styles */
.nav-colored p {
    font-size: 1.2rem; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
}

/* White part of the navbar */
.nav-white {
    flex: 0 0 13.0625rem; 
    background-color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Tickets Text Styles */
.nav-white p {
    font-size: 1.5rem; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #4471B4;
}

.nav-white p:hover {
    scale: 1.1;
}

/* Social Icons */
.social-icons {
    display: flex; 
    align-items: center; 
    margin-left: 5rem;
    margin-right: 3rem;
}

.social-icons img {
    height: 2rem; 
    width: auto; 
    margin-left: 1rem; 
    cursor: pointer;
}

.social-icons img:hover {
    scale: 1.2;
}

.container-photo-slider-mobile {
    width: 100%;
    height: 28rem; /* Overall height of the slider */
    margin-top: 9rem; /* Space above the slider */
    display: flex; /* Flexbox for alignment */
    justify-content: center; /* Center the content */
}

.photo-slider-mobile {
    width: 90%; /* Width of the slider */
    border-radius: 15px; /* Rounded corners for the slider */
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the top */
    overflow: hidden; /* Ensure children respect border-radius */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); /* Retain shadow effect */
}

.photo-slider-title-mobile {
    width: 100%; /* Full width of the slider */
    background-color: white; /* Background color for the title */
    height: 3.5rem; /* Fixed height for the title */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center items vertically */
    padding: 0 1rem; /* Horizontal padding */
}

.logo-small {
    height: 2rem; /* Adjust logo height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-right: 1.5rem; /* Space between logo and text */
}

.photo-slider-title-mobile p {
    font-size: 1.2rem; /* Font size for the text */
    color: #000; /* Text color */
    margin: 0; /* Remove default margin */
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

.photo-slides {
    width: 100%;
    height: 100%; /* Adjust based on desired size */
    position: relative;
    overflow: hidden; /* Hide overflow for better visual effect */
}

.slide {
    width: 100%;
    height: 100%; /* Set specific height if necessary */
    background-size: cover;
    background-position: center;
    position: absolute; /* Position slides absolutely within the container */
    opacity: 0; /* Start with hidden slides */
    transition: opacity 0.5s ease-in-out; /* Smooth transition effect for opacity */
}

.slide.active {
    opacity: 1; /* Make the active slide visible */
}

.container-questions-mobile {
    margin-top: 0rem;
    margin-bottom: 8rem;
    width: 100vw; /* Full viewport width to avoid white lines */
    background-color: var(--primary);
    opacity: 90%; /* Set the opacity */
    display: flex;
    justify-content: center;
    padding: 0; /* Ensure no internal padding */
    margin-left: calc((100% - 100vw) / 2); /* Center content without side white space */
}

.container-question-cards-mobile {
    width: 90%; /* Width of the card container */
    height: auto; /* Allow height to adjust based on content */
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center the cards horizontally */
    padding: 1rem; /* Add some padding */
}

.container-question-cards-mobile p {
    font-family: Arial, Helvetica, sans-serif; /* Font styling */
    font-size: 18pt; /* Font size */
    font-weight: bold; /* Font weight */
    color: white; /* Text color */
    margin-bottom: 2rem; /* Space below the title */
}

.card-mobile {
    background-color: white; /* Background color for the card */
    width: 90%; /* Full width of the container */
    padding: 1rem; /* Add padding for better spacing */
    margin-bottom: 1rem; /* Space between cards */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Shadow for depth */
    display: flex; /* Use flexbox for card content */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the top */
}

.card-mobile p {
    font-family: Arial, Helvetica, sans-serif; /* Font styling */
    font-size: 14pt; /* Font size for card text */
    margin: 0; /* Remove default margin */
    color: black;
    text-align: left; /* Align text to the left */
}

.answer {
    display: none; /* Initially hide the answer */
    font-size: 14pt; /* Font size for the answer */
    margin-top: 0.5rem; /* Space above the answer */
    color: black; /* Optional: Color for the answer */
    font-family: Arial, Helvetica, sans-serif;
}

/* To make the answer display correctly when clicked */
.card-mobile.active .answer {
    display: block; /* Show answer when card is active */
}

/* Optional: add a hover effect */
.card-mobile:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow effect on hover */
}

.container-after-movie-mobile {
    width: 100%;
    height: 30rem;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    text-align: center;
}

.after-movie-mobile p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
    font-size: 20pt;
}

.after-movie-mobile {
    width: 90%; /* Similar width to the photo slider */
    border-radius: 15px; /* Rounded corners for the container */
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the top */
    overflow: hidden; /* Ensure children respect border-radius */
}

.video-container {
    width: 100%; /* Full width of the content area */
    height: auto; /* Adjust height based on video */
    position: relative; /* Ensure positioning doesn't break layout */
    padding-bottom: 56.25%; /* Aspect ratio for 16:9 video */
    overflow: hidden; /* Prevent overflow */
    border-radius: 0 0 15px 15px; /* Rounded bottom corners */
}

.video-container iframe {
    position: absolute; /* Position the iframe within the container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Remove iframe border */
}

.after-movie-title-mobile {
    margin-top: 3rem;
    width: 100%; /* Full width of the slider */
    background-color: white; /* Background color for the title */
    height: 3.5rem; /* Fixed height for the title */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center items vertically */
    padding: 0 1rem; /* Horizontal padding */
}

.after-movie-title-mobile p {
    font-size: 1.2rem; /* Font size for the text */
    color: #000; /* Text color */
    margin: 0; /* Remove default margin */
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

.ticket-button {
    position: fixed; /* Keeps the button fixed on the screen */
    bottom: 2rem; /* 5rem above the bottom of the screen */
    left: 50%; /* Position the button horizontally centered */
    transform: translateX(-50%); /* Offset by 50% to center the button */
    width: 90%; /* Button width */
    background-color: var(--primary);
    height: 4rem; /* Button height */
    border-radius: 10pt; /* Rounded corners */
    display: flex; /* Flexbox for content alignment */
    justify-content: center; /* Center the text inside the button */
    align-items: center; /* Vertically center the text */
    z-index: 999; /* Ensures the button is on top of other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for a floating effect */
}

.ticket-button p {
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
    font-family: Arial, Helvetica, sans-serif; /* Font */
    font-size: 20pt; /* Font size */
    margin: 0; /* Remove default margin */
}

.ticket-button:active{
    background-color: black;
}

a.ticket-button {
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
    font-family: Arial, Helvetica, sans-serif; /* Font */
    font-size: 20pt; /* Font size */
    margin: 0; /* Remove default margin */
    text-decoration: none;
}

@media screen and (min-width: 620px) {
    .nav-mobile {
        width: 85%;
    }

    .container-after-movie-mobile {
        width: 100%;
        height: 32rem;
        display: flex;
        justify-content: center;
        margin-top: 5rem;
        text-align: center;
        margin-bottom: 8rem;
    }

    .close-button {
        left: 27rem;
    }
}

/* Large tablets & laptop styles */
@media screen and (max-width: 960px) {
    /* This will target screens 960px and below */
    
    /* Show mobile navbar */
    .container-nav-mobile {
        display: flex; /* Ensure mobile nav is visible */
    }

    /* Hide desktop navbar */
    nav {
        display: none; /* Hide desktop nav */
    }

    /* Add any additional styles for large tablets and laptops here */
}
@media screen and (min-width: 960px) {
    /* Hide mobile navbar */
    .container-nav-mobile {
        display: none; /* Hide mobile nav on larger screens */
    }

    .ticket-button {
        display: none;
    }

    /* Show desktop navbar */
    .container-nav-desktop {
        width: 100%; /* Full width */
        padding: 1rem; /* Optional padding for aesthetics */
        display: flex;
        justify-content: center;
    }
    
    nav {
        position: fixed;
        display: flex; /* Show desktop nav */
        width: 88.7%;
        height: 5.6875rem;
        top: 0;
        margin-top: 3rem;
        border-radius: 15px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
        z-index: 997;
    }

    .nav-colored a {
        font-size: 1.3rem;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }

    .nav-colored a:hover {
        scale: 1.1;
        cursor: pointer;
    }

    .nav-colored {
        flex: 1;
        background-color: var(--secondary);
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        display: flex;
        align-items: center;
        padding-left: 1rem;
    }

    .logo {
        height: 10rem;
        width: auto;
        margin-right: 4rem;
        margin-left: 1rem;
    }

    .nav-colored p {
        font-size: 1.2rem;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: white;
    }

    .social-icons {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 3rem;
    }

    .social-icons img {
        height: 2rem;
        width: auto;
        margin-left: 1rem;
        cursor: pointer;
    }

    .social-icons img:hover {
        scale: 1.2;
    }

    .nav-white {
        flex: 0 0 13.0625rem;
        background-color: var(--primary);
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .nav-white a {
        text-decoration: none;
    }

    .nav-white p {
        font-size: 1.5rem;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: white;
    }
    
    .nav-white p:hover {
        scale: 1.1; /* Scale effect on hover */
    }

    .photo-slider-title-mobile {
        width: 100%; /* Full width of the slider */
        background-color: white; /* Background color for the title */
        height: 5rem; /* Fixed height for the title */
        border-radius: 15px 15px 0 0; /* Rounded top corners */
        display: flex; /* Flexbox for alignment */
        align-items: center; /* Center items vertically */
        padding: 0 1rem; /* Horizontal padding */
    }

    .photo-slider-title-mobile p {
        font-size: 1.1rem; /* Font size for the text */
        color: #000; /* Text color */
        margin: 0; /* Remove default margin */
        font-weight: bold;
        font-family: Arial, Helvetica, sans-serif;
    }

    .container-after-movie-mobile {
        width: 100%;
        height: 40rem; /* Overall container height remains */
        display: flex;
        justify-content: center;
        margin-top: 5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .after-movie-title-mobile {
        margin-top: 3rem; /* Reduced margin */
        width: 100%; /* Full width of the slider */
        background-color: white; /* Background color for the title */
        min-height: 3.5rem; /* Changed from height to min-height */
        border-radius: 15px 15px 0 0; /* Ensure top right and left corners are rounded */
        display: flex; /* Flexbox for alignment */
        align-items: center; /* Center items vertically */
        padding: 0 1rem; /* Horizontal padding */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add shadow for depth */
    }
    
    .after-movie-title-mobile p {
        font-size: 1.1rem; /* Increased font size for better visibility */
        color: #000; /* Text color */
        margin: 0; /* Remove default margin */
        font-weight: bold;
        font-family: Arial, Helvetica, sans-serif;
    }    
    
    .video-container iframe {
        height: 84%; /* Adjusted as needed */
    }
        
    .close-button {
        left: 45rem;
    }

}

/* Desktop Styles */
@media screen and (max-width: 1200px) {
    .container-photo-slider {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    nav {
        width: 100%;
        max-width: 70.125rem; 
        height: 5.6875rem; 
        display: flex;
        position: sticky;
        top: 0;
        margin-top: 3rem; /* Space from the top */
        border-radius: 15px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
        z-index: 997;
    }

    /* Colored part of the navbar */
.nav-colored {
    flex: 1; 
    background-color: var(--secondary);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    align-items: center;
    padding-left: 1rem; 
    position: relative; /* For positioning the dropdown icon */
}

/* Logo Styles */
.logo {
    height: 10rem; 
    width: auto; 
    margin-right: 4rem; 
    margin-left: 1rem; 
}

/* Text Styles */
.nav-colored p {
    font-size: 1.2rem; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
}

/* White part of the navbar */
.nav-white {
    flex: 0 0 13.0625rem; 
    background-color: var(--primary);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Tickets Text Styles */
.nav-white p {
    font-size: 1.5rem; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
}

.nav-white p:hover {
    scale: 1.1;
}

/* Social Icons */
.social-icons {
    display: flex; 
    align-items: center; 
    margin-left: 18rem;
}

.social-icons img {
    height: 2rem; 
    width: auto; 
    margin-left: 1rem; 
    cursor: pointer;
}

.social-icons img:hover {
    scale: 1.2;
}

.container-photo-slider-mobile {
    display: none;
}

.container-countdown {
    margin-top: 5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 12rem;
    background-color: white;
    opacity: 80%;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container-countdown p {
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 5px; /* Adjust this value to reduce space */
}

.countdown {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    font-weight: bold;
    margin-top: 0; /* Ensure there's no additional margin */
}

.time {
    font-size: 3rem;
    margin: 0 5px;
}

.countdown span {
    font-size: 1rem;
    color: black;
}

.container-questions-mobile {
    height: auto;
    margin-top: 2rem;
    width: 100vw; /* Full viewport width to avoid white lines */
    background-color: var(--primary);
    opacity: 90%; /* Set the opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    margin-left: calc((100% - 100vw) / 2); /* Center content without side white space */
}

.container-question-cards-mobile {
    max-width: 76rem; 
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center the cards horizontally */
}

.container-question-cards-mobile p {
    font-family: Arial, Helvetica, sans-serif; /* Font styling */
    font-size: 25pt; /* Font size */
    font-weight: bold; /* Font weight */
    color: white; /* Text color */
    margin-bottom: 2rem; /* Space below the title */
    text-align: center;
}

.cards-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 76rem;
}

.card-mobile {
    background-color: white; /* Background color for the card */
    width: calc(33% - 2rem); /* Full width of the container */
    padding: 1.5rem; /* Add padding for better spacing */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Shadow for depth */
    display: flex; /* Use flexbox for card content */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the top */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-mobile:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-mobile p {
    font-family: Arial, Helvetica, sans-serif; /* Font styling */
    font-size: 16pt; /* Font size for card text */
    margin: 0.5rem; /* Remove default margin */
    color: black;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.answer {
    display: none; /* Initially hide the answer */
    font-size: 16pt; /* Font size for the answer */
    margin-top: 0.5rem; /* Space above the answer */
    color: black; /* Optional: Color for the answer */
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

/* To make the answer display correctly when clicked */
.card-mobile.active .answer {
    display: block; /* Show answer when card is active */
}

/* Optional: add a hover effect */
.card-mobile:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow effect on hover */
}

.aftermovie-image {
    display: none;
}

.container-after-movie-mobile {
    width: 100%;
    height: 50rem;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    text-align: center;
}

.after-movie-mobile {
    max-width: 70.125rem; /* Similar width to the photo slider */
    border-radius: 15px; /* Rounded corners for the container */
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the top */
    overflow: hidden; /* Ensure children respect border-radius */
}

.video-container {
    width: 100%; /* Full width of the content area */
    height: auto; /* Adjust height based on video */
    position: relative; /* Ensure positioning doesn't break layout */
    padding-bottom: 56.25%; /* Aspect ratio for 16:9 video */
    overflow: hidden; /* Prevent overflow */
    border-radius: 0 0 15px 15px; /* Rounded bottom corners */
}

.video-container iframe {
    position: absolute; /* Position the iframe within the container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Remove iframe border */
}

.after-movie-title-mobile {
    margin-top: 3rem;
    width: 100%; /* Full width of the slider */
    background-color: white; /* Background color for the title */
    height: 3.5rem; /* Fixed height for the title */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center items vertically */
    padding: 0 1rem; /* Horizontal padding */
}

.after-movie-title-mobile p {
    font-size: 1.2rem; /* Font size for the text */
    color: #000; /* Text color */
    margin: 0; /* Remove default margin */
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

.container-photo-slider {
    height: 45rem;
    width: 100%;
    max-width: 70.125rem;
    position: relative;
    overflow: hidden; /* To hide overflow due to rotation */
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: nowrap; /* Default behavior to not wrap elements */
}

.photo-slider {
    width: 100%;
    max-width: 50.438rem;
    height: 34.063rem;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: rotate(2.41deg) translateX(-10px); /* Rotate and translate */
    overflow: hidden; /* Ensure slides do not overflow */
}

.photo-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover; /* Ensure the image covers the entire slider */
    background-position: center; /* Center the background image */
    position: absolute; /* Stack the slides */
    top: 0;
    left: 0;
    opacity: 0; /* Hide slides by default */
    z-index: 0; /* Place slides below the active one */
    transition: opacity 0.5s ease-in-out; /* Smooth transition effect */
}

/* Title bar */
.photo-slider-title {
    width: 100%;
    height: 5rem;
    background-color: white;
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: flex-start; /* Horizontally center */
    z-index: 1;
}

.photo-slider-title p {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15pt;
    margin-left: 1rem; /* Add some spacing between the logo and text */
    font-weight: bold;
}

.logo-small {
    height: 3rem;
    margin-left: 2rem;
    margin-right: 1rem;
}

/* Ticket Card */
.ticket-card {
    max-width: 31.688rem;
    width: 100%;
    height: 16.426rem;
    border-radius: 15px;
    background-color: white;
    position: absolute; /* Position the card absolutely */
    top: 25rem; /* Adjust the top position as needed */
    left: 0; /* Ensure the left edge touches the container */
    z-index: 1; /* Ensure it sits above the photo-slider */
    transform: rotate(-3.12deg) translateX(6px); /* Adjust translateX to counter rotation */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.ticket-card p {
    padding-left: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: bold;
    color: black; /* Default color for other text */
}

/* Add a specific class for highlighted text */
.highlight {
    color: var(--primary);; /* Change this to the desired color */
}

.blue-button {
    width: 100%; /* Full width */
    max-width: 25.813rem; /* Maximum width for the button */
    height: 5.5rem; /* Height of the button */
    background-color: var(--primary); /* Background color of the button */
    border: none; /* No border */
    border-radius: 15px; /* Rounded corners */
    position: absolute; /* Position absolutely */
    bottom: 0.7rem; /* Touch the bottom of the container */
    left: 13%; /* Center horizontally */
    z-index: 2; /* Ensure it sits above the ticket card */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: breathing 7s infinite;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.blue-button {
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
    margin: 0;
    text-decoration: none;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.beer-cup {
    position: absolute;
    scale: 1; /* Adjust size */
    z-index: 5; /* Ensure it's below the ticket-card but above the photo-slider */
    transform: rotate(-18deg);
    right: 52rem;
    top: 4.5rem;
}

.small-beer-cup {
    position: absolute;
    width: 16rem; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    top: 34rem; /* Adjust top positioning */
    right: 35rem; /* Adjust right positioning */
    z-index: 3; /* Ensure it's above the button */
}

.eredivisie-ball {
    position: absolute;
    width: 4rem; /* Adjust the size of the ball */
    height: auto; /* Keep aspect ratio */
    top: 30rem; /* Adjust the vertical position */
    left: 59rem; /* Adjust the horizontal position */
    z-index: 1.5; /* Higher than the photo-slider (z-index 0), but lower than date-card (z-index 2) */
    scale: 4.2;
    transform: rotate(15deg);
}

.blue-button p {
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
    margin: 0;
}

.blue-button:hover {
    background-color: black;
    color: white;
    scale: 1.05;
}

.date-card {
    width: 100%; /* Full width */
    max-width: 23.125rem; /* Maximum width for the date card */
    height: 11.334rem; /* Height of the date card */
    background-color: white; /* Background color */
    border-radius: 15px; /* Rounded corners */
    position: absolute; /* Position absolutely */
    bottom: 5.5rem; /* Position above the blue button */
    left: 80%; /* Center horizontally */
    transform: translateX(-50%); /* Center adjustment */
    z-index: 2; /* Ensure it sits above the photo-slider */
    display: flex; /* Use flexbox for centering text */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    bottom: 0;
    rotate: 3.65deg;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.date-card p {
    font-family: Arial, Helvetica, sans-serif; /* Font family */
    font-size: 38px; /* Font size */
    font-weight: bold; /* Bold text */
    color: black; /* Text color */
    margin: 0; /* Remove default margin */
    text-align: center; /* Center align text */
}

.pop-up-mobile-container {
    position: fixed; /* Position fixed to cover the whole screen */
    width: 100%;
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with 80% opacity */
    display: flex; /* Center the child elements */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 1000; /* Ensure it's on top of other content */
    transition: opacity 1s ease; /* Transition for fading out */
}

.pop-up-mobile {
    max-width: 68rem;
    height: 30rem;
    background-color: white; /* White background for the card */
    padding: 20px; /* Padding around the content */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
    align-items: center; /* Center children horizontally */
    position: relative; /* To position the close button */
}

.hidden {
    opacity: 0; /* Fade out effect */
    pointer-events: none; /* Prevent interaction when hidden */
}

.pop-up-mobile p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15pt;
    font-weight: bold;
}


.close-button {
    position: absolute; /* Position the close button */
    top: 1.5rem;
    left: 14.5rem;
    background: none; /* No background */
    border: none; /* No border */
    font-size: 48px; /* Increased size for better visibility */
    color: var(--primary);
    cursor: pointer; /* Pointer cursor on hover */
    line-height: 1; /* Adjust line height if needed */
}

.pop-up-image {
    margin-top: 1rem;
}

.pop-up-button {
    margin-top: 2rem;
    width: 70%;
    height: 15%;
    padding: 10px 20px; /* Button padding */
    background-color: var(--primary);
    color: white; /* Button text color */
    border: none; /* No border */
    border-radius: 5px; /* Optional: rounded button corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.pop-up-button:hover {
    background-color: #a9470f; /* Darker shade on hover */
}

}

@media (max-width: 1115px) {
    .eredivisie-ball, .beer-cup, .small-beer-cup {
        display: none;
    }
    
}

@media (max-width: 768px) {
    .ticket-card {
        display: none; /* Hide both the ticket card and date card */
    }
}

@media (max-width: 768px) {
    .date-card{
        display: none;
    }
}