/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 200;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #000000;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    padding: 12px 30px;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #999;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    padding: 12px 30px;
    border: none;
}

.btn-secondary:hover {
    background: #777;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 153, 153, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #202020;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
    filter: invert(1) brightness(0) saturate(100%) invert(100%);
}

.logo-text {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #5a3e62;
}

.nav-link.donate-btn {
    background: #5a3e62;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.donate-btn:hover {
    background: #684c6f;
    transform: translateY(-1px);
}

.nav-link.login-btn {
    background: #333;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 1rem;
}

.nav-link.login-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 50px 20px;
    position: relative;
    min-height: 80vh;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    font-family: 'Futura', sans-serif;
    text-align: left;
    color: #333;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #333;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1rem;
    color: #666;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: clamp(300px, 40vw, 500px);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

/* Upcoming Shows */
.upcoming-shows {
    padding: 5rem 0;
    background: #f8f9fa;
}

.show-card {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.show-dates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.date-item {
    background: linear-gradient(-45deg, #5a3e62 0%, #5a3e62 50%, #5a3e62 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.date-item .date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.date-item .time {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #d6d6d6;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card, .vision-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid #5a3e62;

}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #5a3e62;
}

.value-item h4 {
    color: black;
    margin-bottom: 1rem;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: #d6d6d6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.event-date {
    background: linear-gradient(-45deg, #5a3e62 0%, #684c6f 50%, #684c6f 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.event-info h3 {
    margin-bottom: 0.5rem;
    color: black;

}

.event-venue {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #5a3e62;
}

.event-venue p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.event-time {
    color: #5a3e62;
    font-weight: 600;
    font-size: 1rem;
    margin: 1rem 0;
}

.event-ticket-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.ticket-price {
    font-weight: 600;
    border-radius: .5rem;
    padding: .5rem;
    margin: 1rem;
    color: black;
    font-size: 1.1rem;
}

.buy-show-tickets {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Tickets Section */
.tickets {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.ticket-info {
    max-width: 600px;
    margin: 0 auto;
}

.ticket-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #8B0000;
}

.ticket-price .per {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(-45deg, #5a3e62 0%, #684c6f 50%, #5a3e62 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #000000;
    border: solid black 2px;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: .5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #333333;
    color: white;
    transform: translateY(-1px);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    margin: 0.5rem 1rem 0.5rem 0;
    padding: 10px 20px;
    background: #5a3e62;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #684c6f;
    transform: translateY(-2px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5a3e62;
}

/* Donate Section */
.donate {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.donate-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.donate-btn {
    padding: 15px 25px;
    background: #f8f9fa;
    border: 2px solid #5a3e62;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donate-btn:hover,
.donate-btn.active {
    background: #5a3e62;
    color: white;
}

.custom-amount {
    margin: 1rem 0;
}

.custom-amount input {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 200px;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    filter: invert(1) brightness(0) saturate(100%) invert(100%);
}

.footer-logo .logo-text {
    color: white;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
            
.footer-links a:hover {
    color: #5a3e62;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-social a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    background: #5a3e62;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #684c6f;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 20px 40px 20px;
    }
    
    .hero-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 120px 15px 40px 15px;
        min-height: 70vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-illustration {
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .show-dates {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        text-align: center;
    }
    
    .contact-form button {
        align-self: center;
        width: fit-content;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-ticket-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 110px 10px 30px 10px;
        min-height: 60vh;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .donate-options {
        flex-direction: column;
        align-items: center;
    }
    
    .donate-btn {
        width: 200px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 100px 10px 25px 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-card,
.event-card,
.value-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #5a3e62;
    outline-offset: 2px;
}
