/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styling */
header {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #e10200;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 48px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

header:hover {
    border-bottom: 4px solid #e10200;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #ffffff; /* White */
    background-color: #e10200; /* Red background */
    transform: scale(1.1);
}

nav a.active {
    color: #e10200;
    font-size: 1.1em;
}

/* Main Content Styling */
main {
    padding: 20px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Section Styling */
.section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #111111, #222222);
    animation: gradientShift 5s infinite alternate;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.section-title {
    font-size: 36px;
    color: #e10200;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.member-card {  
    position: relative;
    perspective: 1000px;
    width: 100%;
    max-width: 350px;
    height: 400px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000000;
    border: 2px solid #e10200;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Ensures content centers correctly */
    text-align: center;
    padding: 20px;
    margin: 0;
    box-sizing: border-box; /* Ensures padding doesn't increase element size */
}

.card-front {
    background: #000000;
    color: white;
}

.card-back {
    background: #222;
    color: #e10200;
    transform: rotateY(180deg);
}

.member-card.flipped .card-inner {
    transform: rotateY(180deg);
}


/* Tour Dates Section */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

thead th {
    background-color: #e10200;
    color: white;
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

tbody td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #444;
}

tbody tr:nth-child(even) {
    background-color: #111;
}

.tickets-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #e10200;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tickets-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e10200;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.tickets-btn:hover {
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.tickets-btn:hover:before {
    transform: scaleX(1);
}


/* Footer Styling */
footer {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    color: white;
    border-top: 2px solid #e10200;
}

footer a {
    color: #e10200;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        width: 100%;
    }

    .tickets-btn {
        display: block;
        margin: 10px auto;
        width: 90%;
        text-align: center;
    }
}

/* Loader */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #e10200;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Merchandise Section Styling */
.merch-store {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    text-align: center;
    background-color: #111;
    border-radius: 10px;
    margin-top: 40px;
}

.merch-item {
    background: #222;
    border: 1px solid #444;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.merch-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.merch-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #444;
}

.merch-item h3 {
    color: #e10200;
    margin: 10px 0;
}

.merch-item p {
    font-size: 1.1em;
    margin: 10px 0;
    color: #fff;
}

.buy-now {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #e10200;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.buy-now:hover {
    background-color: #fff;
    color: #e10200;
    transform: scale(1.1);
}
/* Contact Info Styling */
#contact-info {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    color: white;
}

#contact-info ul {
    list-style-type: none;
    padding: 0;
}

#contact-info ul li {
    margin: 10px 0;
    font-size: 1.2em;
}

#contact-info ul a {
    color: #e10200;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#contact-info ul a:hover {
    color: white;
    text-decoration: underline;
}

/* Contact Form Styling */
#contact-form {
    background: linear-gradient(135deg, #111111, #222222);
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#contact-form form {
    display: flex;
    flex-direction: column;
}

#contact-form label {
    margin-top: 10px;
    font-weight: bold;
    color: #e10200;
}

#contact-form input, #contact-form textarea {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #e10200;
    border-radius: 5px;
    background-color: #111;
    color: white;
}

#contact-form input:focus, #contact-form textarea:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 5px #e10200;
}

#contact-form button {
    padding: 10px 20px;
    color: white;
    background-color: #e10200;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#contact-form button:hover {
    background-color: white;
    color: #e10200;
    transform: scale(1.05);
}
/* Hero Section */
#hero {
    background: url('/images/Stage Fright Banner Logo.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-buttons .cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    color: white;
    background-color: #e10200;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-buttons .cta-button:hover {
    background-color: white;
    color: #e10200;
    transform: scale(1.1);
}

/* Features Section */
#features {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #111, #222);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: block; /* Make it behave like a block element */
    padding: 20px;
    background: #000; /* Background remains dark */
    border: 1px solid #e10200;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white; /* Ensure text color is white */
    text-decoration: none; /* Remove underline from links */
}


.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}


.feature-item img {
    width: 80px;
    margin-bottom: 15px;
}


.feature-item h3 {
    color: #e10200; /* Keep heading color */
    margin-bottom: 10px;
}


.feature-item p {
    font-size: 1.1em;
}
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #222;
    color: white;
    margin: auto;
    padding: 20px;
    border: 1px solid #e10200;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.close-button:hover {
    color: #e10200;
}

.confirm-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #e10200;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.confirm-button:hover {
    background-color: white;
    color: #e10200;
    transform: scale(1.1);
}
/* Ticket pagaiton/search Styling */

#search {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #e10200;
    border-radius: 5px;
    background-color: #111;
   color: #ffffff;

}

#pagination {
    margin-top: 10px;
    text-align: center;
}

#pagination button {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
    color: white;
    background-color: #e10200;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#pagination button:hover {
    background-color: white;
    color: #e10200;
    transform: scale(1.05);
}
/* logo */
.logo {
    max-width: 200px;  /* Adjust width as needed */
    height: auto;      /* Maintain aspect ratio */
}

/* General Timeline Styling */
#interactive-timeline {
    margin: 3rem 0;
}

.timeline-wrapper {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Timeline Line with Progress Bar */
.timeline-line {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 8px;
    background-color: #111111;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
}

.progress-bar {
    position: absolute;
    height: 8px;
    background: linear-gradient(90deg, #e10200, #e10200); /* Now solid red */
    width: 0%;
    transition: width 0.5s ease-in-out;
    border-radius: 4px;
    z-index: 1;
}

/* Timeline Points */
.timeline-point {
    width: 32px;
    height: 32px;
    background-color: #b00603; /* Red color */
    border: 4px solid #b00603; /* Matching red border */
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-point.active {
    background-color: #b00603; /* Red */
    border-color: #b00603; /* Red border */
    transform: scale(1.3);
}

.timeline-point:hover {
    transform: scale(1.3);
    background-color: #b00603; /* Red */
    border-color: #b00603; /* Red border */
}

/* Tooltip Styling */
.tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.timeline-point:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* Timeline Content */
.timeline-content {
    max-width: 600px;
    margin-top: 2rem;
    padding: 2rem;
    background: #222222;
    border: 1px solid #444444;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeIn 0.5s ease;
}

.timeline-details h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-details p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}
#meet-the-team {
    padding: 40px 20px;
    background-color: #222; /* Dark background */
    color: white;
    text-align: center;
}


.team-member {
    margin: 20px 0;
}


.team-member h3 {
    color: #e10200; /* Highlight member names */
    margin: 10px 0;
}

.team-member a {
    color: #e10200; /* Highlight member names */
    margin: 10px 0;
}
/* Booking Form Styling */
#booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111111, #222222);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


#booking-form .form-group {
    margin-bottom: 15px;
}


#booking-form label {
    display: block;
    margin-bottom: 5px;
    color: #e10200;
    font-weight: bold;
}


#booking-form input,
#booking-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e10200;
    background-color: #111;
    color: white;
    border-radius: 5px;
}


.ticket-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


.ticket-type {
    background-color: #222;
    border: 1px solid #e10200;
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-radius: 10px;
    width: 250px;
}


.ticket-type h3 {
    color: #e10200;
}

/* Customer Service Specific Styles */
.support-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}


.support-item {
    flex: 1;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
}


.support-item ul {
    list-style-type: none;
    padding: 0;
}


.support-item ul li {
    margin-bottom: 10px;
    color: white;
}


.faq-accordion {
    margin-top: 20px;
}


.faq-item {
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 5px;
}


.faq-question {
    background-color: #111;
    color: #e10200;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}


.faq-answer {
    display: none;
    padding: 10px;
    background-color: #000;
    color: white;
}


.policy-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.policy-item {
    flex: 1;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}


.policy-item h3 {
    color: #e10200;
    margin-bottom: 10px;
}
.product-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-info {
    color: white;
}

.product-title {
    color: #e10200;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.8em;
    margin: 20px 0;
}

.product-description {
    margin: 20px 0;
    line-height: 1.8;
}

.size-selection {
    margin: 20px 0;
}

.quantity-selector {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector input {
    width: 60px;
    padding: 5px;
    text-align: center;
}

.add-to-cart {
    background: #e10200;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: white;
    color: #e10200;
    transform: scale(1.05);
}

.product-features {
    margin-top: 30px;
}

.product-features h3 {
    color: #e10200;
    margin-bottom: 10px;
}

.product-features ul {
    list-style-type: none;
    padding: 0;
}

.product-features li {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
    }
}
.cart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.cart-icon img {
    width: 30px;
    height: 30px;
}

.cart-icon span {
    margin-left: 5px;
    font-weight: bold;
}

.teammember-photo {
    width: 100%;      /* Makes the image scale to the width of the container */
    height: auto;     /* Keeps the aspect ratio intact */
    object-fit: cover; /* Ensures that the image covers the entire area without distortion */
}
.btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #e10200;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e10200;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.btn:hover {
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.btn:hover:before {
    transform: scaleX(1);
}