@import url('https://fonts.googleapis.com/css2?family=Island+Moments&family=Quicksand:wght@300&family=Titillium+Web:wght@200;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Code for all pages*/

body{
    font-family: Quicksand;
    font-size: 10pt;
    text-align: center;
    background: linear-gradient(180deg, #e1b800e4, #f8cd1f);
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    color: #090A0B;
    min-height: 100vh;
    margin: 0;
}

html {
    height: 100%;
}


.space {
    min-height: calc(100vh - 170px);
    padding: 20px;
}

nav{
    font-family: Quicksand;
    font-size: 30px !important;  
    display: flex;
    min-height: 8vh;
    width: 100%;
    margin: 0;
    align-items: center;
    text-align: center;
    background-color: black;
    color: #E1B600;
    padding-top: 0px;
}

nav ul{
    display: flex;
    flex: 1 1 40rem;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

nav h1{
    display: inline-block;
    text-align: justify;
    font-size: 2.25em;
}

.vertical {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section h2 {
    margin-bottom: 12px;
}

a:link{
    font-size: 20px;
    border-radius: 10%;
    color:#E1B600;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    color: #E1B600;
    text-decoration: underline;
  }
  
a:visited {
    color: #E1B600;
}

a.nav-link.active{
    color:#E1B600 !important;
    font-weight: 600;    
}

footer{
    font-family: 'Golos Text', sans-serif;
    text-align: center;
    background-color:black;
    color: #E1B600;
    display: flex;
    padding: 15px;
    font-size: 15px;
    box-shadow: 0 10px 15px black;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.align{
    display:flex;
    justify-content:center;
    align-items: center;
}

/*Code for home page*/
/*Code for home page*/
/*Code for home page*/

.home-films-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-film-card{
  background: #f5f5f5;
  padding: 26px;
  box-shadow: 0 10px 15px black;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-film-top{
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.home-film-poster{
  flex: 0 0 160px;
}

.home-film-image{
  width: 150px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.home-film-content{
  flex: 1;
  min-width: 0;
  text-align: left;
}

.home-film-title{
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.home-film-meta{
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.home-film-description{
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-film-times-wrap{
  text-align: left;
}

.home-film-times-group{
  margin-top: 14px;
}

.home-film-day-label{
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  font-size: 1.4rem;
  text-align: left;
}

.home-film-time-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero {
  width: 100%;
  padding-top: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #E1B600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero a {
    color: white;
    text-decoration: none;
}

.hero a:hover {
  color: #E1B600;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.films-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.film-listing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.film-top{
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.film-listing-poster{
  flex: 0 0 160px;
}

.film-listing-image{
  width: 150px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.film-listing-poster a:hover .film-listing-image{
  transform: scale(1.03);
}

.film-listing-content{
  flex: 1;
  min-width: 0;
  text-align: left;
}

.film-listing-content{
  text-align: left;
}

.film-listing-title{
  font-size: 1.1rem;
  font-weight: 700;
}

.film-listing-meta{
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.film-listing-description{
  font-size: 0.8rem;
  line-height: 1.5;
}
.film-times-group{
  margin-top: 14px;
}

.film-day-label{
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  font-size: 1rem;
  text-align: left;
}

.film-time-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.time-btn{
  background: black;
  color: #E1B600;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
}

.time-btn:hover{
  background: #222;
  color: #ffd84d !important;
  transform: translateY(-1px);
  text-decoration: none;
}

@media (max-width: 767px){
  .film-top{
    flex-direction: column;
    align-items: center;
  }

  .film-listing-content{
    text-align: center;
  }

  .film-day-label{
    text-align: center;
  }

  .film-time-buttons{
    justify-content: center;
  }

  .film-listing-image{
    width: 180px;
    height: auto;
  }
}


.box{
    background: #fff;
    width: 100%;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 15px black;
    justify-content: center;
    height: 100%;
    text-align: center;
}
 
.boxkids{
    background: #fff;
    width: 50%;
    margin: 20px auto;  
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 15px black;
    height: 100%;
    text-align: center;
    font-family: 'Indie Flower';
    font-size: 22px;
    display: block;
}

.kids{
    font-family: 'Indie Flower' !important;
    font-size: 22px;;
}

.centre{
    display: flex;
    align-items: center;
    justify-content: center;
}

.picture-centre{
    display: flex;
    justify-content: center;
}

.box .background{
    width: 100%;
    aspect-ratio: 1.2;
    margin: 10px;
    border-radius: 6px;
    box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.4);
}

/*Code for buttons*/
/*Code for buttons*/
/*Code for buttons*/

.btn{
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: #E1B600;;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    transition: .3s;
}

.btn:hover{
    background-color: #E1B600;
}

button{
    outline: none;
    border: none;
    cursor: pointer;
    width: 100px;
    padding: 8px 12px;
    background: black;
    color: white;
    border-radius: 6px;
    font-weight: 800;
}

.material-symbols-rounded {
    font-size: 50px !important;
    color: black;
}

button:hover{
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

.card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: black;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
.quiz-link{
    display: inline-block;
    text-decoration: none;
    background-color: black;
    padding: 12px 24px;
    color: #E1B600;
    font-size: 24px;
    font-weight: bold;
    border-radius: 20px;
    font-family: Quicksand, sans-serif;
}
  .card button:hover {
    opacity: 0.7;
  }


.main {
    padding: 1% 20% 1% 20%;
    justify-content: center;
}


* {box-sizing:border-box}

/*Code for carousel*/
/*Code for carousel*/
/*Code for carousel*/

#kidsCarousel {
  width: 80%;
  margin: 20px auto;   /* centres it nicely */
}

.caro {
    display: flex;
    justify-content: center;
}

.slideshow-container {
  max-width: 50%;
  position: relative;
  margin: auto;
  border-radius: 10px;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.controls-container{
    display: flex;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: black;
  padding: 8px 12px;
  position: absolute;
  bottom: 20px;
  width: 30%;
  text-align: center;   
  background-color: rgba(255,255,255,0.8);
  border-radius: 10px;
}

.center{
    display: flex;
    justify-content: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: black;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media only screen and (max-width: 600px) {
    .row {
        padding: 0 !important;
        margin: 0 !important;
    }
  }

  .pictures {
    padding: 10px;
    border-radius: 15px;
  }

  .space {
    padding: 20px;
  }
  
.film-listing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
  
.space .col-lg-3,
.space .col-md-6,
.space .col-sm-12 {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    padding: 10px;
    flex: 0 0 220px;
    max-width: 220px;
}


.tilebox {
    margin-bottom: 20px;
}
  
.map{
    justify-content: center;
}

.column{
    width: 50%;
    display: flex;
    float: left;
    text-align: center;
}

.contact-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 100px 100px;
    font-family: 'Titillium Web', sans-serif;
}

.contact-container:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bicycle-241514_1280.jpg) no-repeat center;
    z-index: -1;
    filter: blur(50px);
}

/*Code for contact box*/
/*Code for contact box*/
/*Code for contact box*/

.contact-box{
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white ;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
}

.left{
    height: 100%;
    background: url(../images/forest.jpg) no-repeat center;
    background-size: cover;
}

.right{
    padding: 25px 40px; 
}

h2{
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.field{
    width:100%;
    font-family: 'Titillium Web', sans-serif;
    margin-left: -4%;
    padding: 0.5rem 1rem;
    outline: none;
    border: 2px solid rgba(230, 230, 230, 0.6);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: .3s;
}

.field:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

.field:focus{
    background-color: #fff;
    border:2px solid rgba(30, 85, 250, 0.47);
}

.area{
    min-height: 150px;
}

@media screen and (max-width:880px){
    .contact-box{
        grid-template-columns: 1fr;

    }

    .left{
        height: 200px;
    }
}

/*Code for thank you page*/
/*Code for thank you page*/
/*Code for thank you page*/

#thank-you{
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 60px;
    display: flex;
    flex-direction: column;
}

.picture{
    padding: 20px;
    display: flex;
    justify-content: center;
}

.login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
}

.box-login{
    background: #fff;
    width: 400px;
    max-width: 90%;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 15px black;
    text-align: center;
}

.button4 {
    border: none;
    background-color: black;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    width: 150px;
    border-radius: 25px;
    margin-top: 40px;
}

.image-container {
    max-width: 100%;
    height: auto;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }

.moviebox{
    width: 25%;
}

.tilebox {
    display: block;
    width: 100%;
    max-width: 220px;
    background: #fff;
    box-shadow: 0 10px 15px black;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px auto;
    height: auto !important;      /* important */
    min-height: unset !important; /* important */
}

.tilebox img {
    display: block;
    width: 100%;
    height: auto;
}
.modal-body{
    display: flex;
}

.modaltext.h4{
    color:#E1B600; 
    font-family: Quicksand;
}

.modaltext.h5{
    color:white; 
    font-family: Quicksand;
    font-weight: 400;
}

.small-button1{
    outline: none;
    border: none;
    cursor: pointer;
    width: 100px;
    padding: 8px 12px;
    background:#E1B600;
    color: white;
    border-radius: 6px;
    font-weight: 800;
}

.small-button2{
    outline: none;
    border: none;
    cursor: pointer;
    width: 100px;
    padding: 8px 12px;
    background:#E1B600;
    color: black !important;
    border-radius: 6px;
    font-weight: 800;
}

.modaltext {
    background-color: black;
 }

 .quarter{
     display: flex;
     width: 25%;
 }

 .register{
     text-align: right;
     font-size: 10px;
    font-weight: bold;
 }

 .mainregister {
    padding: 1% 35% 1% 35%;
    justify-content: center;
}

.ticket {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 600px;
    padding: 20px;
    border: 2px solid #ccc;
    text-align: center;
    margin: 0 auto;
    background-color: #fff;
    justify-content: center;
}

.ticketbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

#disney-game{
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

#question-box h3,
#result-box h3{
    font-size: 28px;
    margin-bottom: 20px;
    color: black;
}

#result-box p{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#answer1, #answer2{
    min-width: 220px;
    margin: 10px;
}

/* =========================
   KIDS QUIZ PAGE ONLY
   Scoped so it does not affect other pages
========================= */

.kids-quiz-page {
    width: 100%;
    padding: 40px 20px 60px;
}

.kids-quiz-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.kids-quiz-header {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 15px black;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.kids-quiz-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #090A0B;
}

.kids-quiz-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

.kids-quiz-score {
    margin-top: 20px;
    background: #fff7d6;
    border: 2px solid #E1B600;
    border-radius: 16px;
    padding: 18px;
}

.kids-quiz-score h2 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
}

.kids-quiz-score h2:after {
    display: none;
}

.kids-quiz-score p {
    margin: 0;
    font-weight: 600;
}

.kids-quiz-form {
    display: block;
}

.kids-quiz-main-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 15px black;
    padding: 30px;
    text-align: left;
}

.kids-quiz-question-block {
    padding: 22px 0;
}

.kids-quiz-question-block:last-of-type {
    border-bottom: none;
}

.kids-quiz-question-number {
    display: inline-block;
    background: black;
    color: #E1B600;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.kids-quiz-question-block h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #090A0B;
}

.kids-quiz-options-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.kids-quiz-option {
    display: block;
    cursor: pointer;
}

.kids-quiz-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kids-quiz-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #111;
    border: 3px solid transparent;
    border-radius: 16px;
    padding: 14px 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 58px;
}

.kids-quiz-option:hover span {
    background: #ffe37a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.kids-quiz-option input:checked + span {
    background: black;
    color: #E1B600;
    border-color: #E1B600;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.kids-quiz-submit-wrap {
    text-align: center;
    margin-top: 28px;
}

.kids-quiz-submit {
    border: none;
    background: black;
    color: #E1B600;
    padding: 16px 34px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 15px black;
    transition: all 0.2s ease;
}

.kids-quiz-submit:hover {
    background: #222;
    transform: translateY(-2px);
}

.booking-box {
  max-width: 700px;
  margin: 40px auto;
  padding: 10px;
}

.booking-message {
  background: white;
  color: black;
  padding: 12px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

.booking-row {
  display: grid;
  grid-template-columns: 130px 1fr; /* label | input */
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.booking-row label {
  width: 130px;
  text-align: left;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.booking-row input,
.booking-row select {
  width: 100%;        
  flex: none;         
  height: 42px;
  padding: 0 12px;
  border: 2px solid #000;
  border-radius: 8px;
  text-align: center;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
}

.booking-row input[readonly] {
  background-color: #f3f3f3;
  cursor: not-allowed;
}

.booking-submit-wrap {
  text-align: center;
}

/* Centre film posters on kids page */
.space .row {
    display: flex;
    justify-content: center;
}



.movie-poster-col {
    flex: 0 0 220px;
    max-width: 220px;
    display: flex;
    justify-content: center;
    padding: 0;
}

.pictures {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tilebox {
    width: 100%;
    max-width: 220px;
    background: #fff;
    box-shadow: 0 10px 15px black;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px auto;
}


@media (max-width: 900px) {
    .kids-quiz-options-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kids-quiz-page {
        padding: 24px 14px 40px;
    }

    .kids-quiz-header h1 {
        font-size: 1.7rem;
    }

    .kids-quiz-main-box {
        padding: 20px;
    }

    .kids-quiz-question-block h3 {
        font-size: 1.08rem;
    }
}

@media (max-width: 520px) {
    .kids-quiz-options-four {
        grid-template-columns: 1fr;
    }

    .kids-quiz-submit {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    [data-bs-toggle="modal"] {
        pointer-events: none;
        cursor: default;
    }

    .modal,
    .modal-backdrop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .footer-contact {
        display: none;
    }

    footer {
        justify-content: space-between;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .boxkids {
        width: 100%;
        margin: 10px auto;
        padding: 20px;
    }
}

@media (max-width: 768px){
    #question-box h3,
    #result-box h3{
        font-size: 22px;
    }

    #result-box p{
        font-size: 18px;
    }

    #answer1, #answer2{
        width: 100%;
        min-width: unset;
    }
}

  @media (max-width: 768px){
  .films-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .home-films-grid{
    grid-template-columns: 1fr;
  }

  .home-film-top{
    flex-direction: column;
    align-items: center;
  }

  .home-film-content{
    text-align: center;
  }

  .home-film-day-label{
    text-align: center;
  }

  .home-film-time-buttons{
    justify-content: center;
  }

  .home-film-image{
    width: 180px;
    height: auto;
  }
}