/* Reset default margin and padding */
body {
    background-color: rgb(85, 85, 85, 0.9);
    font-family: 'Roboto', sans-serif;
    align-items: center;
    justify-content: center;
}
body, ul {
    margin: 0;
    padding: 0;
  }
  
  /* Header styles */
  header {
    background-color: black;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 10px;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: purple; /* Change color on hover */
    transform: scale(1.1);
    transition: 0.5s;
  }
  
  .nav-links li a.active {
    color: purple; /* Active link color */

  }
  
  /* Social icons */
  .social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 20px;
  }
  
  .social-icons a:hover {
    color: purple; /* Change color on hover */
    transform: scale(1.5);
    transition: 0.5s;
    border: purple 2px solid;
  }
  
  main {
    padding-top: 80px; /* Adjust according to the height of your header */
    display: flex;
  }
.section-container {
    display: flex;
    width: 100%;
    margin: 0 10%;
  }
  
  .section-left {
    flex: 1;
    padding: 20px;
  }
  
  .section-right {
    flex: 1;
    position: relative; /* Ensure relative positioning for background image */
    overflow: hidden; /* Hide overflowing content */
  }
  

.background-image {
  background-image: url('../images/_MG_2883-removebg-preview.png');
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 50%;
  height: 100%;
  z-index: -1; /* Place the background image behind the content */  
  background-position: right; /* Align background image to the right */
}

/*.section-left h1 {
    font-size: 4em;
    text-transform: uppercase;
    color: rgb(220, 231, 115);
    margin-bottom: 0px;
  }*/
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr; /* Define column widths */
    gap: 0px; /* Adjust gap between grid items as needed */
    margin: 0% 0% 0% 0%;
    padding: 0% 0% 0% 0%;
  }
  .grid-container > div {
    padding: 10px;
    width: fit-content;
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    color: rgb(220, 231, 115);
  }
  .span-two-rows {
    grid-row: span 2; /* Span two rows */
    font-size: 5em;
    width: fit-content;
    margin-left: -34%;
    margin-top: -25%;
  }

  .cell {
    font: 2.5em sans-serif;
  }
  .last {
    margin-top: -10%;
  }
  .ul {
    margin-left: -40%;
    margin-top: -12%;
  }
  .l {
    margin-left: 25%;
    margin-top: -30%;
  }
  .sec {
    margin-left: -35%;
  }

  .des {
    color: aliceblue;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 25%;
}

.buy-ticket-btn {
  background-color: darkyellow;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.buy-ticket-btn:hover {
  background-color: yellow;
}

.section-left h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-left h3 {
    text-transform: uppercase;
}

.shows {
    margin-top: 20px;
    background-color: rgb(0, 0, 0, 0.9);
    color: rgb(255, 255, 255);
    padding: 20px;
    margin-bottom: 0;
  }
  .shows p {
    color: #d3d1d1;
  }

  .news {
    margin-top: 20px;
    background-color: rgba(253, 251, 251, 0.9);
    color: rgb(14, 13, 13);
    padding: 20px;
    margin-top: 0;
    margin-bottom: 30%;
  }
  hr {
    margin: 20px 0;
    border: none;
    border-top: 3px solid rgb(220, 231, 115);
    width: 10%;
  }
  .section-left p {
    font-size: 1.2em;
  }
  
  section {
    margin-bottom: 20px;
  }
  
  
  footer .sub {
    margin-top: 20px;
    color: white;
  }

  .sub {
    padding: 20px;
  }
  
  form input[type="email"] {
    padding: 10px;
    width: 85%;
    margin-right: 10px;
    background-color: black;
    color: white;
    border: #fff 5px solid;
    margin-top: 2%;
  }
  
  form button {
    margin-top: 2%;
    padding: 10px 20px;
    width: 90%;
    background-color: rgb(220, 231, 115);
    color: #444242;
    border: none;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #fcfbfb;
  }

  /* Hamburger icon styles */
.hamburger {
  display: none; /* Initially hide the hamburger icon */
}

.bio {
  color: rgb(220, 231, 115); 
  font-size: 4em; 
  font-weight: 100; 
  margin-bottom: 10%; 
  text-transform: uppercase;
  font-family: 'Courier New', Courier, monospace;
}

/*partners*/


  /* Add media query for small screens */
@media only screen and (max-width: 767px) {
  .section-container {
      flex-direction: column; /* Stack sections vertically on small screens */
  }

  .section-left,
  .section-right {
      width: 100%; /* Full width on small screens */
  }

  .bio {
    font-size: 3em;
  }

  header {
    padding: 10px 0;
    align-items: center;
    position: relative;
  }

  /* Center align navigation links for small screens */
  nav {
      margin:0 7px;
  }

  /* Reduce font size of navigation links for small screens */
  .nav-links li a {
      font-size: 16px;
  }

  /* Reduce font size of social icons for small screens */
  .social-icons a {
      font-size: 18px;
  }

  /* Show hamburger icon on small screens */
  .hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: white; /* Set the color to white */
    
  }

  /* Hide the navigation by default */
  nav ul.nav-links {
    display: none;
  }

  /* Show the navigation when the active class is applied */
  nav.active ul.nav-links {
    display: flex;
    flex-direction: column;
  }

  .background-image {
    left: 0;
    right: -40%;
    width: auto;
    height: auto;
    z-index: -1; /* Place the background image behind the content */  
    background-position: right; /* Align background image to the right */
  }

  .span-two-rows {
    margin-left: -47%;
    margin-top: -18%;
    font-size: 4em;
  }

  .ul {
    margin-top: -25%;
    margin-left: -37%;
  }
  .l {
    margin-top: -40%;
  }
  .sec {
    margin-left: -35%;
  }

}

@media only screen and (max-width: 375px) {
  .span-two-rows {
    margin-left: -47%;
    margin-top: -18%;
    font-size: 4em;
  }

  .ul {
    margin-top: -30%;
    margin-left: -44%;
  }
  .l {
    margin-top: -40%;
  }
  .sec {
    margin-left: -35%;
  }
}