/* Base Styles */
body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

/* Default background image */
body {
    background-image: url('/assets/BackTexturedBackground-1920.webp');
    color: white;
}

/* Smaller screens (e.g., mobile devices) */
@media (max-width: 600px) {
    body {
        background-image: url('/assets/BackTexturedBackground-600.webp');
    }
}

/* Medium screens (e.g., tablets) */
@media (min-width: 601px) and (max-width: 1000px) {
    body {
        background-image: url('/assets/BackTexturedBackground-1000.webp');
    }
}

/* Large screens (e.g., desktops) */
@media (min-width: 1001px) and (max-width: 1920px) {
    body {
        background-image: url('/assets/BackTexturedBackground-1920.webp');
    }
}

/* Extra large screens (e.g., large monitors) */
@media (min-width: 1921px) {
    body {
        background-image: url('/assets/BackTexturedBackground-3840.webp');
    }
}


/* Base Styles for the Cutout Image */
.cameron-cutout {
    position: fixed; /* Fixes the image in place */
    bottom: 0px; /* Adjust positioning as needed */
    left: 20px; /* Adjust positioning as needed */
    width: auto;
    height: auto;
    z-index: -1; /* Ensure it appears above the background */
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/assets/CameronCutout-500.png'); /* Default image */
}

footer {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
}

/* Small screens */
@media (max-width: 600px) {
    .cameron-cutout {
        background-image: url('/assets/CameronCutout-300.png');
        width: 150px; /* Adjust size as needed */
        height: 200px; /* Adjust size as needed */
    }
}

/* Medium screens */
@media (min-width: 601px) and (max-width: 1000px) {
    .cameron-cutout {
        background-image: url('/assets/CameronCutout-500.png');
        width: 250px; /* Adjust size as needed */
        height: 350px; /* Adjust size as needed */
    }
}

/* Large screens */
@media (min-width: 1001px) {
    .cameron-cutout {
        background-image: url('/assets/CameronCutout-700.png');
        width: 1000px; /* Adjust size as needed */
        height: 600px; /* Adjust size as needed */
    }
}











  
  
  .form, #ticket-links {
    background: transparent;
    border: 2px solid white;
    padding: 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .form h2, #ticket-links h2 {
    text-align: center;
  }

  #ticket-links ul li a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    padding: 0.5rem 1rem;
  }
  
  .hidden {
    display: none;
  }
  
  h2 {
    margin-bottom: 20px;
  }
  
  input[type="email"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
  }
  
  button {
    background-color: transparent;
    color: white;
    padding: 10px;
    border: 2px solid white;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: 300ms ease-in-out;
  }
  
  button:hover {
    background-color: white;
    color: black;
    transition: 300ms ease-in-out;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }
  
  input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid white;
  }
  
  .checkbox-label {
    font-size: 14px;
    cursor: pointer;
  }
  
  /* Optional: Style the checkbox when it's checked */
  input[type="checkbox"]:checked {
content: 'Y';
  }

  /* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
  }
  
  /* Custom checkbox container */
  .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
  }
  
  /* Create a custom checkbox using a span */
  .custom-checkbox .checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    border: 1px solid white; 
    border-radius: 4px;
    transition: background-color 0.2s, border-color 0.2s;
  }

  #marketing-label {
    padding-left: 10px;
  }
  
  /* The tick (white check) when checked */
  .custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  /* Show the tick when the checkbox is checked */
  .custom-checkbox input:checked + .checkmark::after {
    display: block;
  }
  
  /* Styling for the checkbox label */
  .custom-checkbox label {
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
  }
  
  ul {
    list-style: none;
  }

  li {
    margin: 1rem;
    border: 2px solid white;
    transition: 300ms ease-in-out;
  }

  li a {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  li:hover {
    background: white;
    color: black;
    transition: 300ms ease-in-out;
    cursor: pointer;
  }

  @media (max-width: 1000px) {
    .cameron-cutout,
    #largeLogo,
    .header-spacer {
      display: none;
    }
    .flexContainer {
      max-width: 100%;
    }
    #marketing-label {
      max-width: 90%;
    }
    footer {
      position: relative;
    }
    ul {
      margin-left: 0;
    }
    .form, #ticket-links {
      padding: 1rem 0.5rem;
    }
    #ticket-links ul li a {
      font-size: 26px;
    }
  }