body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

p, a, li {
    font-size: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #333;
}

header img {
    max-width: 100%;
    height: auto;
}

nav {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

nav a {
    text-decoration: none;
    color: #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #444;
    margin: 5px 0;
    transition: background-color 0.3s ease;
    text-align: center;
}

nav a:hover {
    background-color: #555;
}

.content {
    text-align: center;
}

.content img {
    max-width: 100%;
    height: auto;
}

.landing-image {
    width: 100%;
    max-height: 1150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-images img {
    max-width: 30%;
    height: auto;
    border: 3px solid #444;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.about-us-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.about-us-images img {
    width: 60%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    margin: 0 10px;
    cursor: pointer;
}

#tickets {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #fff;
}

#tickets h2 {
    font-size: 36px;
    color: #9370DB;
    margin-bottom: 20px;
}

.ticket-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    
    .portrait-img {
      max-width: calc(33.333% - 10px);
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    
    .landscape-img {
      max-width: calc(70% - 10px);
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
}

.ticket-info p {
    font-size: 20px;
    margin-bottom: 20px;
}

.ticket-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ticket-option {
    background-color: #555;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 300px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 325px;
}

.ticket-option h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ticket-option p {
    font-size: 18px;
    margin-bottom: 10px;
}

.ticket-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.coming-soon {
    background-color: #555;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 325px; 
}

.buy-ticket-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buy-ticket-button:hover {
    background-color: #63b8ff;
}

.video-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;

    video {
        margin-left: 100px;
        margin-right: 100px;
        margin-top: 50px;
    }
}

.video-container {
    width: 48%;
    margin-bottom: 20px;
}

.video-container iframe {
    width: 100%;
}

.centered-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-item img, .gallery-item iframe, .gallery-item video {
    width: 100%;
    height: auto;
    border: 3px solid #444;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    box-sizing: border-box;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #555;
    
    p {
      font-size: 12px;
    }
}

#about a {
    color: #1e90ff;
    text-decoration: underline;
}

#about a:hover {
    color: #63b8ff;
}

#contact p {
    text-align:center;
}

#contact a {
    color: #1e90ff;
    text-decoration: underline;
}

#contact a:hover {
    color: #63b8ff;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1e90ff;
}

h2 {
    font-size: 40px; 
    font-family: 'Arial Black', sans-serif;
    color: #9370DB;
    text-align: center;
    margin-bottom: 20px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #9370DB;
    color: white;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 5px; 
    z-index: 1000;
    display: none; 
    transition: opacity 0.3s;
}

.back-to-top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 18px solid white;
    position: relative;
    top: 11px;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
    
    .menu-icon {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
    
    .about-us-images {
        flex-direction: column;
        align-items: center;
    }

    .about-us-images img {
        width: 80%;
        max-width: 100%;
        margin: 10px 0;
        height: 275px;
        object-fit: cover;
    }
    
    .ticket-images {       
        .portrait-img {
          width: 80%;
          max-width: 100%;
          margin: 10px 0;
        }
        
        .landscape-img {
          width: 90%;
          max-width: 100%;
          margin: 10px 0;
        }
    }
    
    .ticket-options {
        flex-direction: column;
        align-items: center;
    }
    
    .ticket-option {
        width: calc(90% - 20px); 
    }
    
    .back-to-top {
        width: 32px;
        height: 32px;
    }

    .back-to-top::before {
        content: '';
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 10px solid white;
        top: 10px;
    }
    
    .lightbox-content {
        max-width: 100%;
        max-height: 100%;
        overflow: hidden;
    }

    .close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }

    .video-row {
        video {
            margin-left: 0;
            margin-right: 0;
        }
    }
}

