@font-face {
    font-family: 'Comic_sans';
    src: url('fonts/comic-sans/COMIC.ttf'); 
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #FFD166;
    --accent-color: #06D6A0;
    --text-color: #333;
    --light-bg: #FFF8F0;
    --dark-bg: #1A1A1A;
    --black: #000000;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    height: 100px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* margin-left: -1rem; */
}

.header-logo {
    height: 50px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-family: 'Comic_Sans';
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    /* margin-right: -1rem; */
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 100px;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #ff8535;
    box-shadow: 0 6px 8px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 1rem;
    background-color: var(--white);
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 15px;
    background-color: var(--light-bg);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Upcoming Shows Section */

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

.upcoming-shows {
    padding: 3rem 1.5rem;
    background-color: var(--light-bg);
    /* margin-bottom: 2rem; */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming-shows h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.show-card{
    padding: 0;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    box-sizing: border-box;
}

.year-heading {
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.year-heading:first-of-type{
    margin-top: 0;
}

.year-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.show-info {
    padding: 0.3rem 0.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.show-header {
    margin-bottom: 0.3rem;
}

.show-header h3 {
    font-size: 1.2rem;
    /* margin: -0.5rem 0 0.3rem 0; */
    color: var(--primary-color);
}

.show-title {
    font-weight: 600;
    color: var(--primary-color);
}

.show-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    flex-grow: 1;
}

.venue-time {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.show-venue, .event-venue, .venue {
    font-size: 0.85rem;
    margin: 0.05rem 0;
    line-height: 1.6;
}

.show-address, .event-address, .address {
    font-size: 0.85rem;
    margin: 0.05rem 0;
    line-height: 1.6;
    color: #666;
}

.show-time, .show-price {
    font-size: 0.85rem;
}

.show-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    position: absolute;
    bottom: -1.8rem;
    left: 0.6rem;
    width: calc(100% - 1.2rem);
}

.show-actions .btn, 
.show-card .btn, 
.btn.map-btn, 
.btn.info-btn {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.btn.map-btn {
    background-color: #3498db;
}

.btn.info-btn {
    background-color: #2c3e50;
}

.show-actions .btn:hover, 
.show-card .btn:hover {
    background-color: #1a252f;
    transform: translateY(-1px);
}

.btn.map-btn:hover {
    background-color: #2980b9;
}

.show-card:hover {
    transform: translateY(-20px);
}

.show-card .btn {
    display: inline-block;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.7rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.show-card .btn:hover {
    background-color: #1a252f;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 1rem;
    background-color: var(--white);
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 15px;
    background-color: var(--light-bg);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.burger.toggle .line2 {
    opacity: 0;
    transform: translateX(20px);
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* Shows Page Specific Styles */
.shows-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 6rem;
}


.current-shows {
    padding: 4rem 1rem;
    background-color: var(--white);
}

.current-shows h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.show-card-large {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.show-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.show-card-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.show-info {
    padding: 2rem;
}

.show-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.show-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-date .day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.show-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 0.5rem 0;
    color: white;
}

.show-date .year {
    font-size: 1rem;
    opacity: 0.8;
    color: white;
}

.show-desc {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.show-details i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.past-shows {
    padding: 4rem 1rem;
    background-color: var(--light-bg);
}

.past-shows h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.past-shows .show-card {
    opacity: 0.8;
    transition: all 0.3s;
}

.past-shows .show-card:hover {
    opacity: 1;
    transform: translateY(-10px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem 3rem;
    max-width: 800px;
    backdrop-filter: blur(2px);
}

.contact-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: -40rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: start;
    align-self: start;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* margin-bottom: 20rem; */
    text-decoration: none;
    color: inherit;
}

.info-card.clickable {
    cursor: pointer;
    border: 1px solid transparent;
}

.info-card.clickable:hover {
    border-color: var(--primary-color);
    background-color: #fff8f5;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.info-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.info-card .social-links a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.info-card .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    color: #ff8535;
}

.info-card .fab.fa-instagram {
    background: -webkit-linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card .fab.fa-facebook {
    color: #4267B2;
}

.info-card.clickable:hover .fab.fa-instagram {
    background: -webkit-linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card.clickable:hover .fab.fa-facebook {
    color: #1877F2;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 8rem;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.map-section {
    margin-top: -10rem;
    padding: 4rem 0;
    background-color: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Mobile Menu Styles */
/* .nav-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 80px;
    right: 0;
    height: auto;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
} */

.nav-active li {
    margin: 1rem 0;
    opacity: 0;
}

.nav-active a {
    font-size: 1.2rem;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

/* Calendar Page Styles */
.calendar-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/calendar-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.calendar-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem 3rem;
    max-width: 800px;
    backdrop-filter: blur(2px);
}

.calendar-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.calendar-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    height: 200px !important;
    min-height: 200px !important;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 2.5rem;
    box-sizing: border-box;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    position: absolute;
    top: 0.15rem;
    left: 1rem;
    background: #FF6B35;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 0.6rem 1rem 1.2rem;
    position: relative;
    border-top: none;
}

.event-info h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: -55px;
    margin-bottom: 60px;
    margin-left: 120px;
    line-height: 1.3;
    padding-left: 5px;
    border-left: none;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: -50px;
}

.event-meta p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.event-meta i {
    color: #FF6B35;
    width: 16px;
    font-size: 0.9rem;
}

.event-info .button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #FF6B35;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.event-info .button:hover {
    background-color: #ff8535;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.calendar-legend {
    background: #f8f8f8;
    padding: 3rem 0;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.legend-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-item i {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legend-item p {
    color: #666;
    margin: 0;
}

/* Voting Page Styles */
.voting-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/voting-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-bottom: 0;
}

.voting-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem 3rem;
    max-width: 800px;
    backdrop-filter: blur(2px);
}

.voting-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.voting-hero p {
    font-size: 1.4rem;
}

.voting-form {
    padding: 4rem 0;
    background: #f8f8f8;
}

.show-ratings {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1000px;
}

.show-ratings h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
}

.rating-info {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.rating-card {
    background: #f8f8f8;
    padding: 1.8rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-card h4 {
    color: #333;
    margin-bottom: 1.3rem;
    font-size: 1.3rem;
}

.rating-input input {
    width: 110px;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    font-size: 1.3rem;
    margin: 0 auto;
    display: block;
}

.rating-input input:focus {
    border-color: #FF6B00;
    outline: none;
}

.rating-input input::-webkit-inner-spin-button,
.rating-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.rating-input input[type=number] {
    -moz-appearance: textfield;
}

.form-group.full-width {
    margin-top: 2rem;
}

.form-group.full-width label {
    display: block;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.form-group.full-width textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
}

.form-group.full-width textarea:focus {
    border-color: #FF6B00;
    outline: none;
}


/* Voting CTA Styles */
.voting-cta {
    padding: 4rem 0;
    background: #f8f8f8;
    text-align: center;
}

.voting-content {
    max-width: 600px;
    margin: 0 auto;
}

.voting-content h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.voting-content p {
    color: #666;
    margin-bottom: 2rem;
}

/* Event Detail Page Styles */
.event-detail {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.event-header {
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 6rem;
}

.event-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section, .location-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-section h3, .location-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    margin-top: 0;
    text-align: left;
    position: relative;
    display: block;
    margin-left: 0rem;
    /* width: 100%; */
}

.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.cast-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.cast-member {
    background: #f8f8f8;
    padding: 0.8rem;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.cast-member:hover {
    transform: translateY(-1px);
}

.cast-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.cast-member .role {
    color: var(--text-color);
    font-style: italic;
    font-size: 0.85rem;
    display: block;
}

.cast-member .bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.shows-link {
    text-align: center;
}

.shows-link .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #555;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 1px solid #555;
}

.shows-link .btn:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-1px);
    color: white;
}

/* Commedie Page Styles */
.commedie-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/hero-commedie.jpg');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 100px);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 100px;
    position: relative;
}

.commedie-hero .hero-content {
    max-width: 800px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.commedie-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.commedie-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.commedie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.commedia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.commedia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.commedia-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.commedia-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.commedia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.commedia-card:hover .commedia-image img {
    transform: scale(1.05);
}

.commedia-content {
    padding: 1.5rem;
    position: relative;
}

.commedia-content h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.commedia-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.commedia-content .button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #FF6B35;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.commedia-content .button:hover {
    background-color: #ff8535;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}


/* Stili per la sezione eventi futuri */
.upcoming-events {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 12px;
}

.upcoming-events h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

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

.event-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 0.5rem 0;
    color: white;
}

.event-date .year {
    font-size: 1rem;
    opacity: 0.8;
    color: white;
}

.event-info {
    padding: 1.5rem;
    flex: 1;
}

.event-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-info p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-info .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.event-info .btn:hover {
    background-color: var(--secondary-color);
}


/* Timeline Styles */
.timeline-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
    left: 0;
}

.timeline-item:nth-child(even) {
    padding-left: 3rem;
    text-align: left;
    left: 50%;
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-text);
}

.timeline-content p {
    margin: 0.25rem 0;
    color: var(--light-text);
}

.load-more-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.load-more-btn:hover {
    background-color: var(--secondary-color);
}


/* Styles for event cards on homepage/spettacoli */
.upcoming-shows .event-card {
    /* height: 200px !important;
    min-height: 200px !important; */
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 2rem;
    box-sizing: border-box;
}

.upcoming-shows .event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.upcoming-shows .event-date .day {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
    color: white;
    margin: 0;
}

.upcoming-shows .event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.upcoming-shows .event-info {
    padding: 0.3rem 0.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* min-height: 120px; */
    position: relative;
}

.upcoming-shows .event-info h3, 
.upcoming-shows .event-info h4 {
    color: var(--primary-color);
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.upcoming-shows .event-details {
    margin-bottom: 3rem;
}

.upcoming-shows .event-actions {
    margin-top: auto;
    padding-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    position: absolute;
    bottom: 1.8rem;
    left: 0.6rem;
}

/* Stile più compatto per i dettagli degli eventi */
.show-details .venue-time p,
.event-details .venue-time p {
    margin: 0;
    line-height: 1.6;
}

/* Assicuriamoci che tutte le card abbiano spazio sufficiente per contenere i bottoni allineati */
.show-card, .event-card {
    min-height: 180px;
}

/* History Page Styles */
.history-hero {
    height: 300px; /* Altezza fissa */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/history-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; /* Per centrare verticalmente */
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0;
}

.history-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2rem 3rem;
    max-width: 800px;
    backdrop-filter: blur(2px);
}

.cast-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.5rem;
    text-align: left;
    position: relative;
    display: block;
    margin-left: 0rem;
}

/* Galleria di immagini semplice per le commedie */
.play-gallery {
    margin-top: 1rem; /* Ridotto spazio sopra la galleria */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mantiene 2 colonne per la galleria */
    gap: 1rem;
    width: 100%;
}

.play-gallery img {
    width: 100%;
    height: 280px; /* Stessa altezza di .event-image */
    object-fit: cover;
    border-radius: 10px; /* Stesso border-radius di .event-image img */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Stesso box-shadow di .event-image img */
}


/* Stili per il bottone di voto */
.vote-button {
    display: inline-flex; /* Usa flex per allineare icona e testo */
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem; /* Padding generoso */
    font-size: 1.2rem; /* Font più grande */
    font-weight: bold;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px; /* Arrotondato */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: auto; /* Adatta larghezza al contenuto */
    min-width: 200px; /* Larghezza minima */
}

.vote-button:hover {
    background-color: #ff8535;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.vote-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.vote-button.loading {
    background-color: #ccc; /* Grigio durante il caricamento */
    color: #555;
    box-shadow: none;
    transform: none;
}

.vote-button.success {
    background-color: var(--accent-color); /* Verde per successo */
    color: white;
    box-shadow: none;
    transform: none;
}

.vote-button i {
    font-size: 1.1em; /* Dimensione icona relativa al testo */
}

/* Sovrascrizione Stili Lightbox2 */
.lightbox .lb-image {
    border: none !important; /* Rimuove il bordo dall'immagine */
    border-radius: 0 !important; /* Rimuove eventuali bordi arrotondati */
}

.lb-outerContainer {
    background-color: transparent !important; /* Rende trasparente il contenitore esterno */
    padding: 0 !important; /* Rimuove padding attorno al contenitore */
    box-shadow: none !important; /* Rimuove eventuali ombre */
    border: none !important;
}

.lb-dataContainer {
    display: none !important; /* Nasconde completamente l'area dati (didascalia/contatore) */
}

.lightboxOverlay {
    background-color: rgba(0, 0, 0, 0.85) !important; /* Leggermente più scuro l'overlay */
}

.commedie-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.commedie-section:last-of-type {
    background-color: var(--white);
}

.section-title {
    text-align: left;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0rem;
    font-weight: 700;
    position: relative;
    margin-top: 0;
    margin-left: 2rem;
    padding-left: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-left: 1rem;
}



