*{
    box-sizing: border-box;
}     

        body {
                background-color: black;
                margin: 0;
                padding: 0;
                font-family: "Anonymous Pro", sans-serif;
                font-size: 20px;
                color: white;
        }

        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
        }

        tr{
            color: black;
        }

        main {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
        }

        h1, h2 {
            text-align: center;
            font-family: 'DM Serif Display', serif;
            color: white;
            font-size: 3.5rem;
        }

        @media only screen and (max-width: 1000px) {
            .welcome{
                text-align: right ;
                font-family: 'DM Serif Display', serif;
                color: #51DA22;
                font-size: 2.5rem;

                position: relative;
                top: 15px;
                right: -12vw;
            }
        }   

        @media only screen and (min-width: 800px) {
            .welcome{
                text-align: right ;
                font-family: 'DM Serif Display', serif;
                color: green;
                font-size: 6rem;
            }
        }   

        h6{
            text-align: center;
            font-family: 'DM Serif Display', serif;
            font-size: 1.3rem;

        }

        #show-info, #showtimes, #ticket-options, #booking-form {
            margin-bottom: 30px;
        }
        #show-info{
            text-align: center;
            color: white;
            font-size: 1rem;

        }
        #showtimes{
            text-align: center;
            font-family: 'DM Serif Display', serif;
            font-color: white;
            font-size: 1.3rem;

        }


        #tbShowTime {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            border: 1px solid #ccc;
            padding: 10px;
            text-align: center;
        }

        th {
            background-color: #f2f2f2;
        }

        #tbShowTime tbody th, td{
            color:white;
        } 

        ul {
            list-style: none;
            padding: 0;
        }

        li {
            margin-bottom: 10px;
        }

        label {
            display: block;
            margin-bottom: 5px;
        }

        input, select {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
        }
        #divBook{
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .booknow {
          background-color: #333;
          color: #fff;
          padding: 10px 20px;
          border: none;
          cursor: pointer;
          align-items: center !important;
          border-radius: 20px;
        }

        button:hover {
            background-color: #555;
        }


/*-------------------------header starts here--------------------------*/

nav img{
    width: 250px;
    height: auto;
}

nav a{
    display: inline-block;
    font-family: 'DM Serif Display', serif;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
/*  top and bottom, left and right*/
    padding: 0.25em 0.45em;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Adjust top and bottom padding to control the height */
    position: fixed; /* Add this to make the navigation bar sticky */
    top: 0; /* Add this to position the navigation bar at the top */
    left: 0; /* Add this to align the navigation bar to the left */
    right: 0; /* Add this to align the navigation bar to the right */
    background-color: black; /* Optional: Add a background color to the navigation bar */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow effect for the navigation bar */
    height: 90px; /* Set a fixed height for the navigation bar background */
     z-index: 9999; /* Set a high z-index value */
}


    .nav-container .icon {
    display: none;
    }

.logo img {
    margin-right: 20px; /* Optional: Add some right margin to separate logo from nav links */
    width: 200px;
    height: auto;
    margin-left: 10px;
    margin-bottom: 10px;
    margin-top: 20px;
}

ul.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
/*  font-size: 4rem;*/
    display: flex; /* Optional: Display the nav links as flexbox */
    margin-right: 20px;
}

ul.nav-links li {
    margin-left: 10px; /* Optional: Add some left margin between nav links */
    padding-right: 35px;
}

.tickets button {
  /* Remove background-color to have no filled-in color */
  background-color: transparent;
  border: 2.6px solid #9D26B0; /* Add a blue border around the button */
  border-radius: 30px;
  width: 170px;
  outline: none; /* Remove outline on focus */
}

.goodforum:hover a{
    color: #75E8F6;
}

.badforum:hover a{
    color: #51DA22;
}
.fanforum:hover a{
    color: #9D26B0;
}

.tickets button:hover a {
  color: black; /* Change the text color to black on hover */
}

.tickets button:hover {
  background-color: #9D26B0; /* Add a background color on hover */
  color: black; /* Change the text color to black on hover */
}


@media only screen and (max-width: 800px) {
    body {
    font-size: 16px;
  }

  h2 {
    font-size: 40px;/*from50*/
  }
    
     .nav-container {
    flex-direction: column;
    height: auto;
    padding: 5px 0; /* Adjust the top and bottom padding */
  }

/*new*/
  .nav-container ul.nav-links {
    display: none;
  }
  
  /* Show the icon (hamburger) on mobile */
  .nav-container a.icon {
    float: right;
    display: block;
  }

  /* Add styles for the mobile navigation menu */
  .nav-container.active ul.nav-links {
    display: flex;
    flex-direction: column;
  }

  .nav-container ul.nav-links.active {
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-left: 5rem;
}

.nav-container .icon {
  display: none;
  margin-left: 30px; /* Adjust the spacing between the logo and the icon */
  font-size: 40px;
}
/*  end new*/

  .logo img {
    margin-right: 0; /* Remove the right margin */
    margin-bottom: 10px;
    margin-top: 10px; /* Adjust the top margin */
  }

  ul.nav-links {
    display: flex;
    flex-direction: column; /* Stack the nav links vertically */
    margin-right: 0; /* Remove the right margin */
  }

  ul.nav-links li {
    margin-left: 0; /* Remove the left margin */
    padding-right: 0; /* Remove the right padding */
  }
}

.citations-button a {
    text-decoration: none;
}

.mockups-button a {
text-decoration: none;
    
}
/*header ends here*/
@media only screen and (max-width: 768px) {
.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    background-color: black; /* Change the background color as per your design */
    width: 100%;
    height: 100vh;
    text-align: center; /* Align the navigation links to the left */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a shadow effect for better visibility */
}


}

/*--------------------------HERO MESSAGE---------------------------*/
@media only screen and (max-width: 1000px) {
    .hero {
      background-image:url("../img/11.png");
      height: 90vh;
      background-size: cover;
      background-position: 35% 50%;
      position: relative;
     
      text-align: right;
      align: right;
      /*position: relative;/* Change 'position: 0;' to 'position: relative;' */
      margin-top: 90px; /* Add some top margin to create space between hero photo and nav bar */
      padding: 0;
    }
}

@media only screen and (min-width: 1000px) {
    .hero {
      background-image:url("../img/11.png");
      height: 100vh;
      background-size: cover;
      background-position: center;
      text-align: right;
      align: right;
      position: relative; /* Change 'position: 0;' to 'position: relative;' */
      margin-top: 90px; /* Add some top margin to create space between hero photo and nav bar */
      padding: 0;
    }
}

/*.hero img {
    width: 100;
    height: auto;
    padding: 0;
}*/

.hero-text {
    color: white;
    position: absolute;
  top: 53%;
  left: 70%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
   display: flex;
  flex-direction: column;

}

@media screen and (max-width: 1200px){
    .hero-text h2 {
      font-size: 2.25rem; /* Increase font size for "Welcome to the" */
      margin-bottom: -20px;
    }
}

@media screen and (min-width: 1200px){
    .hero-text h2 {
      font-size: 2.85rem; /* Increase font size for "Welcome to the" */
      margin-bottom: -20px;
    }
}

@media screen and (max-width: 1200px){
    .hero-text h1 {
        width: 600px;
      font-size: 2.55rem;
      margin-top: 0px;

      position: relative;
        top: 2vh;
    }
}

@media screen and (min-width: 1200px){
    .hero-text h1 {
      font-size: 4.75rem;
      margin-top: 0px;
    }
}


.cta-text {
    
    margin: 0;
    position: absolute;
  top: 63%; 
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block; 
}

@media screen and (max-width: 1200px){
    .cta-text p {
        font-family: 'Aoboshi One', serif;
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 1200px){
    .cta-text p {
        font-family: 'Aoboshi One', serif;
        font-size: 1.05rem;
    }
}



.main-container{
    max-width: 131rem;
    margin: 0 auto;
    background-color: black;
    padding: 0 rem;
}

@media screen and (max-width: 1200px){
    .wicked-text-body{
            width: 500px;
            font-size: 1rem;

            padding-left: 4rem;
            padding-right: 4rem;
            text-align: left;

            display: flex;
            justify-content: center;

            position: relative;
            top: -15vh;
        }
}

@media screen and (min-width: 1200px){
    .wicked-text-body{
            width: 450px;

            padding-left: 4rem;
            padding-right: 4rem;
            text-align: left;

            position: relative;
            right: -60vw;
        }
    }

/*--------------------------FOOTER---------------------------*/
@media screen and (max-width: 1200px){
    .footer {
        background-color: black;
        height: 170px;
        margin: 0;
        padding: 0;
    }
}

@media screen and (min-width: 1200px){
    .footer {
        background-color: black;
        height: 170px;
        margin: 0;
        padding: 0;
    }
}


@media screen and (max-width: 1200px){
    .citations-button a{
        color: white;
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
        font-size: 1rem;
    }

    .mockups-button a{
        color: white;
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
            font-size: 1rem;
    }
}

@media screen and (min-width: 1200px){
    .citations-button a{
        color: white;
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
        font-size: 1.5rem;
    }

    .mockups-button a{
        color: white;
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
            font-size: 1.5rem;
    }
}

 /*.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }*/

  .first-line {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    opacity: 0.9;
  }

  .first-line img {
    max-width: 33px;
  }

  /*.first-line h2 {
    margin: 0 10px; 
  }*/
@media screen and (max-width: 1200px){
  .first-line a {
    display: inline-block;
    margin: 10px 20px; 

    position: relative;
      top: -3vh;
  }
}

@media screen and (min-width: 1200px){
  .first-line a {
    display: inline-block;
    margin: 20px 30px; 
  }
}


  /*.second-line {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
  }*/

  .second-line {
    display: flex;
  justify-content: center;
  margin-top: 35px;
  }

 @media screen and (max-width: 1200px){
  .second-line p {
/*      padding-top: ;*/
    display: inline-block;
    margin: 0 15px; 
    font-size: 0.5rem;
    opacity: 0.7;
  }
}

@media screen and (min-width: 1200px){
  .second-line p {
/*      padding-top: ;*/
   /* display: inline-block;*/
    margin: 0 45px; 
    font-size: 0.9rem;
    opacity: 0.7;
  }
}



/*.footer h2 {
    font-size: 1.5rem;
}*/

