body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        Fira Sans,
        Droid Sans,
        Helvetica Neue,
        sans-serif;
    margin: 0;
}
code {
    font-family:
        source-code-pro,
        Menlo,
        Monaco,
        Consolas,
        Courier New,
        monospace;
}
:root {
    --primary: #1b2a4a;
    --primary-light: #2c3e6b;
    --gold: #c9a961;
    --gold-dark: #b08c3e;
    --burgundy: #7b2d3b;
    --text: #333;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #fff;
    --border: #e0dcd5;
    --shadow: 0 2px 12px #00000014;
    --radius: 8px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: #fff;
    background: var(--bg-white);
    color: #333;
    color: var(--text);
    font-family:
        Segoe UI,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    line-height: 1.6;
}
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}
img {
    height: auto;
    max-width: 100%;
}
a {
    color: #1b2a4a;
    color: var(--primary);
    text-decoration: none;
}
.btn {
    border: 2px solid #0000;
    border-radius: 8px;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #c9a961;
    background: var(--gold);
    border-color: #c9a961;
    border-color: var(--gold);
    color: #1b2a4a;
    color: var(--primary);
}
.btn-primary:hover {
    background: #b08c3e;
    background: var(--gold-dark);
    border-color: #b08c3e;
    border-color: var(--gold-dark);
}
.btn-outline {
    background: #0000;
    border-color: #1b2a4a;
    border-color: var(--primary);
    color: #1b2a4a;
    color: var(--primary);
}
.btn-outline:hover {
    background: #1b2a4a;
    background: var(--primary);
    color: #fff;
}
.btn-gold {
    background: #c9a961;
    background: var(--gold);
    color: #1b2a4a;
    color: var(--primary);
}
.btn-gold:hover {
    background: #b08c3e;
    background: var(--gold-dark);
}
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.site-header {
    background: #1b2a4a;
    background: var(--primary);
    box-shadow: 0 2px 10px #00000026;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-bar {
    justify-content: space-between;
    min-height: 70px;
    padding: 0;
}
.logo,
.nav-bar {
    align-items: center;
    display: flex;
}
.logo {
    color: #c9a961;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    font-size: 1.8rem;
}
.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
}
.nav-links a {
    border-radius: 8px;
    border-radius: var(--radius);
    color: #fffc;
    font-weight: 500;
    padding: 8px 18px;
    transition: all 0.3s;
}
.nav-links a.active,
.nav-links a:hover {
    background: #ffffff1a;
    color: #fff;
}
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
}
.hamburger,
.hamburger:after,
.hamburger:before {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: all 0.3s;
    width: 25px;
}
.hamburger:after,
.hamburger:before {
    content: "";
    position: absolute;
}
.hamburger:before {
    top: -8px;
}
.hamburger:after {
    top: 8px;
}
.hamburger.open {
    background: #0000;
}
.hamburger.open:before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger.open:after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        background: #1b2a4a;
        background: var(--primary);
        box-shadow: 0 5px 10px #0003;
        display: none;
        flex-direction: column;
        left: 0;
        padding: 10px 20px 20px;
        position: absolute;
        right: 0;
        top: 70px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 12px 18px;
    }
}
.hero {
    align-items: center;
    background: linear-gradient(135deg, #1b2a4a, #2c3e6b 50%, #7b2d3b);
    background: linear-gradient(135deg, var(--primary) 0, var(--primary-light) 50%, var(--burgundy) 100%);
    background-position: 50%;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 75vh;
    position: relative;
    text-align: center;
}
.hero-overlay {
    background: linear-gradient(135deg, #1b2a4ad9, #1b2a4ab3 50%, #7b2d3bbf);
    inset: 0;
    position: absolute;
}
.hero-content {
    max-width: 700px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}
.hero-cross {
    color: #c9a961;
    color: var(--gold);
    display: block;
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.hero .btn-outline {
    border-color: #ffffff80;
    color: #fff;
}
.hero .btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: #1b2a4a;
    color: var(--primary);
}
.section-padding {
    padding: 60px 0;
}
.section-title {
    color: #1b2a4a;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}
.section-subtitle {
    color: #666;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}
.section-cta {
    margin-top: 40px;
    text-align: center;
}
.page-header {
    background: linear-gradient(135deg, #1b2a4a, #2c3e6b);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 50px 0 40px;
    text-align: center;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
}
.back-link {
    color: #c9a961;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 15px;
}
.schedule-section {
    background: #f8f6f3;
    background: var(--bg-light);
    padding: 60px 0;
}
.schedule-grid {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.schedule-day-card {
    background: #fff;
    border-radius: 8px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px #00000014;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.schedule-day-header {
    align-items: center;
    background: #1b2a4a;
    background: var(--primary);
    color: #c9a961;
    color: var(--gold);
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
}
.schedule-day-header h3 {
    font-size: 1.1rem;
}
.schedule-date {
    color: #ffffffb3;
    font-size: 0.85rem;
    opacity: 0.8;
}
.schedule-events {
    padding: 15px 20px;
}
.schedule-event {
    border-bottom: 1px solid #e0dcd5;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 15px;
    padding: 10px 0;
}
.schedule-event:last-child {
    border-bottom: none;
}
.event-time {
    color: #b08c3e;
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 40px;
    white-space: nowrap;
}
.event-info strong {
    display: block;
    font-size: 0.95rem;
}
.event-info small {
    color: #666;
    color: var(--text-light);
    font-size: 0.85rem;
}
.news-grid {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.latest-news-section {
    padding: 60px 0;
}
.news-card {
    background: #fff;
    border-radius: 8px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px #00000014;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.news-card:hover {
    box-shadow: 0 8px 25px #0000001f;
    transform: translateY(-4px);
}
.news-card-image {
    height: 200px;
    overflow: hidden;
}
.news-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    width: 100%;
}
.news-card:hover .news-card-image img {
    transform: scale(1.05);
}
.news-card-body {
    padding: 20px;
}
.news-card-date {
    color: #b08c3e;
    color: var(--gold-dark);
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.news-card h3 {
    color: #1b2a4a;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 10px;
}
.news-card p {
    color: #666;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.news-card-link {
    color: #b08c3e;
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 600;
}
.news-card-link:hover {
    color: #1b2a4a;
    color: var(--primary);
}
.article-content {
    margin: 0 auto;
    max-width: 800px;
}
.article-image {
    border-radius: 8px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}
.article-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.article-thumb {
    border: 2px solid #0000;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    height: 60px;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.3s ease;
    width: 80px;
}
.article-thumb:hover {
    opacity: 0.9;
}
.article-thumb.active {
    border-color: #c9a961;
    border-color: var(--gold);
    opacity: 1;
}
.article-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.article-date {
    color: #c9a961;
    color: var(--gold);
    font-weight: 600;
}
.contact-banner {
    background: linear-gradient(135deg, #1b2a4a, #7b2d3b);
    background: linear-gradient(135deg, var(--primary), var(--burgundy));
    color: #fff;
    padding: 50px 0;
}
.contact-banner-content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.contact-banner h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}
.contact-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
}
.contact-banner-info {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.contact-item {
    align-items: center;
    display: flex;
    font-size: 0.95rem;
    gap: 8px;
}
.contact-icon {
    font-size: 1.3rem;
}
.contact-banner-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-banner-info a:hover {
    color: #c9a961;
    color: var(--gold);
}
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}
.filter-btn {
    background: #fff;
    border: 2px solid #e0dcd5;
    border: 2px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px 20px;
    transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
    background: #1b2a4a;
    background: var(--primary);
    border-color: #1b2a4a;
    border-color: var(--primary);
    color: #fff;
}
.gallery-grid {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    border-radius: var(--radius);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    width: 100%;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item-overlay {
    background: linear-gradient(#0000, #000000b3);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    padding: 20px 15px 12px;
    position: absolute;
    right: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.lightbox {
    align-items: center;
    background: #000000e6;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 1000;
}
.lightbox-content {
    max-height: 90vh;
    max-width: 900px;
    position: relative;
}
.lightbox-content img {
    border-radius: 8px;
    border-radius: var(--radius);
    max-height: 80vh;
    max-width: 100%;
}
.lightbox-close {
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 40px;
}
.lightbox-caption {
    background: #0009;
    border-radius: 0 0 8px 8px;
    border-radius: 0 0 var(--radius) var(--radius);
    color: #fff;
    margin-top: -5px;
    padding: 15px;
}
.contact-grid {
    grid-gap: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1.5fr;
}
.contact-form-wrapper h2,
.contact-info h2 {
    color: #1b2a4a;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.info-card {
    background: #f8f6f3;
    background: var(--bg-light);
    border-radius: 8px;
    border-radius: var(--radius);
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
}
.info-icon {
    font-size: 1.5rem;
}
.info-card h4 {
    color: #1b2a4a;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.info-card p {
    color: #666;
    color: var(--text-light);
    font-size: 0.9rem;
}
.map-container {
    margin-top: 20px;
}
.donations-section {
    border-top: 2px solid #e0dcd5;
    border-top: 2px solid var(--border);
    margin-top: 30px;
    padding-top: 25px;
}
.donations-section h2 {
    color: #1b2a4a;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.donations-intro {
    color: #666;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.bank-card p {
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-row {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}
.form-group label {
    color: #1b2a4a;
    color: var(--primary);
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    border: 2px solid #e0dcd5;
    border: 2px solid var(--border);
    border-radius: 8px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 14px;
    transition: border-color 0.3s;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #c9a961;
    border-color: var(--gold);
    outline: none;
}
.alert {
    border-radius: 8px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding: 12px 18px;
}
.alert-success {
    background: #d4edda;
    color: #155724;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
}
.pagination {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
.page-info {
    color: #666;
    color: var(--text-light);
}
.loading {
    font-size: 1.1rem;
}
.empty-state,
.loading {
    color: #666;
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}
.empty-state h2 {
    margin-bottom: 15px;
}
.site-footer {
    background: #1b2a4a;
    background: var(--primary);
    color: #fffc;
    padding: 50px 0 0;
}
.footer-grid {
    grid-gap: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 40px;
}
.footer-col h3 {
    font-size: 1.3rem;
}
.footer-col h3,
.footer-col h4 {
    color: #c9a961;
    color: var(--gold);
    margin-bottom: 15px;
}
.footer-col h4 {
    font-size: 1rem;
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.footer-col a {
    color: #fffc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #c9a961;
    color: var(--gold);
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.social-links a {
    color: #fffc;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #c9a961;
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid #ffffff1a;
    font-size: 0.85rem;
    padding: 20px 0;
    text-align: center;
}
.music-notes-filters {
    align-items: center;
    background: #f8f6f3;
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
}
.filter-input,
.filter-select {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 10px 16px;
    transition: border-color 0.3s;
}
.filter-input {
    flex: 1 1;
    min-width: 200px;
}
.filter-select {
    min-width: 180px;
}
.filter-input:focus,
.filter-select:focus {
    border-color: #c9a961;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px #c9a96126;
    outline: none;
}
.filter-clear {
    background: #0000;
    border: 1px solid #7b2d3b;
    border: 1px solid var(--burgundy);
    border-radius: 8px;
    color: #7b2d3b;
    color: var(--burgundy);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.3s;
}
.filter-clear:hover {
    background: #7b2d3b;
    background: var(--burgundy);
    color: #fff;
}
.results-count {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.music-notes-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.music-note-card {
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    color: inherit;
    display: flex;
    gap: 20px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s;
}
.music-note-card:hover {
    border-color: #c9a961;
    border-color: var(--gold);
    box-shadow: 0 4px 15px #00000014;
    transform: translateY(-2px);
}
.music-note-icon {
    align-items: center;
    background: #f8f6f3;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    flex-shrink: 0;
    font-size: 2.5rem;
    height: 60px;
    justify-content: center;
    width: 60px;
}
.music-note-info {
    flex: 1 1;
    min-width: 0;
}
.music-note-info h3 {
    color: #1b2a4a;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 6px;
}
.music-note-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.music-note-category {
    background: #c9a961;
    background: var(--gold);
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 2px 10px;
}
.music-note-file {
    color: #888;
    font-size: 0.85rem;
}
.music-note-download {
    background: #1b2a4a;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    transition: background 0.3s;
}
.music-note-card:hover .music-note-download {
    background: #c9a961;
    background: var(--gold);
}
@media (max-width: 768px) {
    .page-contact > .container.section-padding,
    .page-gallery > .container.section-padding,
    .page-music-notes > .container.section-padding,
    .page-news > .container.section-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        min-height: 60vh;
    }
    .contact-grid,
    .footer-grid,
    .form-row,
    .news-grid {
        grid-template-columns: 1fr;
    }
    .contact-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-banner-info {
        justify-content: center;
    }
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .section-title {
        font-size: 1.6rem;
    }
    .music-notes-filters {
        flex-direction: column;
    }
    .filter-input,
    .filter-select {
        min-width: 0;
        min-width: auto;
        width: 100%;
    }
    .music-note-card {
        flex-wrap: wrap;
    }
    .music-note-download {
        text-align: center;
        width: 100%;
    }
}
