body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Top Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 30px;
    background: transparent;
    transition: background 0.5s ease-in-out;
    z-index: 1000;
}

.navbar.scrolled {
    background: black;
}

/* Menu Icon */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

/* Navbar Logo - Initially Hidden */
.navbar-logo {
    width: 250px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
}

.navbar.scrolled .navbar-logo {
    opacity: 1; 
}

@media screen and (max-width: 768px) {
    .navbar-logo {
       width: 150px;
    }
}

/* Book Tickets Button */
.book-button {
    background: red;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    position: absolute;
    right: 7%;
    top: 25%;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    text-decoration: none;
}

.book-button a {
    text-decoration: none;
    color: #ffffff;
}

.book-button:hover {
    background: darkred;
}


@media screen and (max-width: 768px) {
    .book-button {
        display: none;
    }
}

/* Sponsor Logos */
.sponsors {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.sponsors img {
    width: 70px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 2s;
}

/* Header Styling */
header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url('images/sor-landscape.png') center/cover no-repeat;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    header {
        background: url('images/sor-portrait.png') center/cover no-repeat;
        max-height: 60vh;
    }
}



.logo {
    width: 350px;
    opacity: 0;
    animation: scaleUp 1.5s ease-in-out forwards;
    animation-delay: 1s;
}


.musical-info, .musical2-info {
    opacity: 0;
    font-size: 18px;
    line-height: 1.2; /* Reduced spacing */
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 2s;
}

/* About the Show Section */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.about-text {
    width: 50%;
    padding: 20px;
    line-height: 1.7;
}

.about-text h2 {
    color: #f90029;
    text-transform: uppercase !important;
}



.about-text2 h3 {
    color: #fff;
    text-transform: uppercase !important;
}

.about-image {
    width: 40%;
    padding: 20px;
    
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    padding-top: 50px;
}

.about-image h2 {
    color: #f90029;
    text-transform: uppercase !important;
}

.about-text h3 {
    color: #ffff;
    
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text, .about-image {
        width: 100%;
    }
}

/* Animations */
@keyframes scaleUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Creative Team Section */
#creative-team {
    background: url('images/113.jpg') center/cover no-repeat;
    padding: 50px;
    text-align: center;
    color: white;
}

#creative-team h2 {
    color: #f90029;
}

/* Tab Buttons */
.team-tabs {
    margin-bottom: 40px;
    margin-top: 50px;
}

.tab-button {
    background: transparent;
    color: white;
    border: none;
    font-size: 18px;
    padding: 20px 30px;
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-button:hover {
    background: red;
}

.tab-button.active {
    background: red ;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
    padding-right: 120px;
    padding-left: 120px;
}

/* vCards Per Row on Mobile */
@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 4 */
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Updated vcard hover effect */
.vcard {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out; 
}

.vcard:hover {
    transform: scale(1.1); 
}


.vcard img {
    width: 100%;
    height: auto;
    
}

.team-name {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.team-title {
    font-size: 16px;
    color: #ccc;
}

/* Pop-up Modal */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: black;
    padding: 20px;
    display: flex;
    align-items: center;
    width: 60%;
    max-width: 800px;
    border-radius: 10px;
}

.popup-left img {
    width: 250px;
    height: auto;
    
}

.popup-right {
    
    padding: 20px;
    color: white;
    text-align: left;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: red;
}

/* Adjust Team Popup Size for Mobile */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 90%; 
        max-width: 400px; 
        flex-direction: column; 
        padding: 15px;
        max-height: 80vh; 
        overflow-y: auto; 
    }

    .popup-left img {
        width: 100%; 
        max-width: 200px; 
        margin: auto;
    }

    .popup-right {
        padding: 10px;
        text-align: center; 
    }

    .popup-right h2 {
        font-size: 18px; 
    }

    .popup-right h3 {
        font-size: 16px; 
    }

    .popup-right p {
        font-size: 14px; 
        line-height: 1.4;
    }

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


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow-y: auto; 
}




/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 5px 0;
    margin-top: 5px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Footer Links (Left Side) */
.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #ffffff; 
    text-decoration: none;
    font-size: 15px;
}


/* Sponsors Section (Right Side) */
.footer-sponsors {
    display: flex;
    gap: 30px;
    align-items: center;
    text-align: center;
}

/* Each Sponsor */
.sponsor {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.sponsor p {
    margin: 0 0 5px 0; 
    font-size: 14px;
}

.sponsor img {
    width: 100%; 
    height: auto;
    
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-sponsors {
        flex-direction: column;
        gap: 15px;
    }
}

/* Three Column Layout */


#book-tickets h2 {
    color: #f90029;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#ticket-announcement {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    background: #0a0a0a;
    color: white;
    max-width: 1200px;
    margin: auto;
}

/* Each Column */
.ticket-column, .announcement-column {
    flex: 1;  
    max-width: 33%;  
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Ticket Card */
.ticket-card {
    background: white;
    color: black;
    width: 250px;
    height: 400px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    margin: auto;
}

/* Ticket Cutout Effect */
.ticket-card::before,
.ticket-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #0a0a0a;
    border-radius: 50%;
}

.ticket-card::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.ticket-card::after {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Ticket Title Inside */
.ticket-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    
}

/* Ticket Price */
.ticket-card .price {
    font-size: 42px !important;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 50px; 
}

/* Ticket Button */
.ticket-button {
    background: #f90029;
    color: white;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 50%;
}

.ticket-button:hover {
    background: darkred;
}

.ticket-button a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
}

/* Announcement Column */
.announcement-column {
    text-align: left;
    background: #0a0a0a;
    padding: 200x;
    
    
}

.announcement-column h2 {
    color: #f90029;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Venue */
.venue {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Early Bird Offer */
.early-bird {
    font-size: 18px;
    background: #333;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.5);
}

/* Highlight Text */
.highlight {
    color: #f90029;
    font-weight: bold;
}

/* Showtimes */
.showtimes {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.showtimes li {
    font-size: 18px;
    margin: 8px 0;
}

.showtimes .time {
    color: #f90029;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    #ticket-announcement {
        flex-direction: column;
        align-items: center;
    }

    .ticket-column, .announcement-column {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .ticket-card {
        width: 90%;
    }
}

/* Banner Section */
#banner {
    width: 99%;
    text-align: center;
    margin-top: 20px;
}

.banner {
    width: 100%;
    height: auto;
}



/* Show only landscape image on desktop */
.desktop-banner {
    display: block;
    width: 99%;
}

.mobile-banner {
    display: none;
}

/* Show only portrait image on mobile */
@media screen and (max-width: 768px) {
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }
}

/* Track Record and Awards Section */
#awards {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    color: white;
}

#awards h2 {
    color: #f90029;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#awards h2 a {
    display: inline-block;
    background: #f90029;
    padding: 15px 25px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 30px;
}

#awards h2 a:hover {
   background: darkred;
    
}

/* Awards Container */
.awards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Award Images */
.award-img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.award-img:hover {
    transform: scale(1.1);
}

/* Responsive Design: Show 2 images per row on mobile */
@media screen and (max-width: 768px) {
    .awards-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .award-img {
        width: 75%; /* Adjust size for smaller screens */
        transition: transform 0.3s ease-in-out;
    }

    #awards h2 a {
        display: inline-block;
        background: #f90029;
        padding: 10px 15px;
        border-radius: 5px;
        color: white;
        font-size: 18px;
    }

    #awards h2 a:active {
        background: darkred;
    }
}
}

/* Contact Us Section */
#contact {
    text-align: center;
    padding: 50px;
    background: #0a0a0a;
    color: white;
}

#contact h2 {
    color: #f90029;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Contact Links */
.contact-link {
    display: flex;
    align-items: center;
    background: #0a0a0a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.contact-link:hover {
    background: #f90029;
}

/* Contact Icons */
.contact-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 15px;
    }

    .contact-link {
        justify-content: center;
        background:#111111;
    }
}

    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      max-width: 100%;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
}

.trailer h2 {
    
    color: #f90029;
    text-transform: uppercase !important;
    margin-top: 100px;
}