html{line-height:1.15;-webkit-text-size-adjust:100%}*,:after,:before{box-sizing:border-box}body{background-color:#fff;color:#333;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin:0;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:inherit;font-family:inherit;font-weight:500;line-height:1.2;margin-block-end:1rem;margin-block-start:.5rem}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}p{margin-block-end:.9rem;margin-block-start:0}a{background-color:transparent;color:#1F3B4D;text-decoration:none;transition:all 0.3s ease}img{border-style:none;height:auto;max-width:100%}.aligncenter{clear:both;display:block;margin-inline:auto}.alignfull{margin-inline:calc(50% - 50vw);max-width:100vw;width:100vw}

:root {
    --brand-dark: #1F3B4D; 
    --brand-light: #ffffff;
    --brand-accent: #1F3B4D;
}

.content-width {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: #f8f9fa; }
.bg-dark { background-color: var(--brand-dark); color: #fff; }

.site-header {
    background-color: var(--brand-dark);
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.site-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 20px;
}
.site-logo {
    max-height: 70px; 
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.site-navigation ul.menu {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
}
.site-navigation ul.menu li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 25px 20px;
    display: block;
    transition: all 0.3s ease;
}
.site-navigation ul.menu li a:hover {
    background-color: var(--brand-light);
    color: var(--brand-accent);
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.video-background video { object-fit: cover; width: 100%; height: 100%; }
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 59, 77, 0.5);
}
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.hero-title { font-size: 4rem; font-weight: 700; margin-bottom: 1rem; }

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: #fff;
    color: var(--brand-dark);
    border: 2px solid #fff;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.feature-card i { font-size: 3rem; color: var(--brand-dark); margin-bottom: 20px; }

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.exp-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.exp-card img { width: 100%; height: 350px; object-fit: cover; }
.exp-card-content { padding: 30px; text-align: center; }

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}
.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}
.event-header {
    padding: 25px 25px 15px;
    background: #fff;
}
.event-header h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-dark);
    line-height: 1.1;
}
.event-image-wrapper { 
    width: 100%; 
    aspect-ratio: 1024 / 377;
    overflow: hidden; 
}
.event-image-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s ease;
}
.event-card:hover .event-image-wrapper img {
    transform: scale(0.9);
}
.event-details-body { padding: 25px; color: #333; }
.event-meta-row { display: flex; gap: 30px; margin-bottom: 20px; font-weight: 600; color: var(--brand-dark); }
.event-meta-row i { margin-right: 8px; }

.ticket-stub {
    background: #fdfdfd;
    border-top: 2px dashed #ccc;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.ticket-stub::before, .ticket-stub::after {
    content: '';
    position: absolute;
    top: -12px;
    width: 24px;
    height: 24px;
    background: #1F3B4D;
    border-radius: 50%;
    z-index: 5;
}
.ticket-stub::before { left: -12px; }
.ticket-stub::after { right: -12px; }

.ticket-info-group { display: flex; flex-direction: column; gap: 5px; }
.ticket-price-label { font-size: 1.6rem; font-weight: 800; color: var(--brand-dark); }
.ticket-admit { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #888; }

.barcode-area { display: flex; flex-direction: column; align-items: center; gap: 5px; border-left: 1px solid #eee; padding-left: 25px; }
.barcode-stripes {
    height: 45px; width: 140px;
    background: repeating-linear-gradient(90deg, #000, #000 1px, #fff 1px, #fff 3px, #000 3px, #000 4px, #fff 4px, #fff 6px);
}
.barcode-val { font-family: monospace; font-size: 0.7rem; color: #000; }

.gallery-filters { margin-bottom: 40px; text-align: center; }
.filter-btn {
    background: none;
    border: 1px solid var(--brand-dark);
    color: var(--brand-dark);
    padding: 10px 25px;
    margin: 5px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.filter-btn.active, .filter-btn:hover { background: var(--brand-dark); color: #fff; }

.gallery-grid { column-count: 3; column-gap: 20px; }
.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.gallery-item img { width: 100%; height: auto; display: block; }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}
.contact-info h2 { color: var(--brand-dark); margin-bottom: 20px; }
.contact-info p { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.contact-info i { color: var(--brand-accent); font-size: 1.2rem; width: 20px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; padding: 10px 0; }
    .site-navigation {
        display: none; 
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--brand-dark);
    }
    .site-navigation.show { display: block !important; }
    .site-navigation ul.menu { flex-direction: column; }
    .site-navigation ul.menu li a { padding: 15px 20px; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .gallery-grid { column-count: 1; }
    .experience-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .event-header h3 { font-size: 1.5rem; }
    .ticket-stub { flex-direction: column; gap: 20px; text-align: center; }
    .barcode-area { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 15px; width: 100%; }
}