body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #F7F7F2;
    color: #1D1D1F;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: #C1272D;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
}
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section:nth-child(even) {
    background: #fff;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.instructor img {
    width: 100%;
    border-radius: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
}
.slider {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    border-radius: 6px;
}

.slide.active {
    display: block;
}

.caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 12px;
    font-size: 0.9rem;
}
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.post-card img {
    width: 100%;
    border-radius: 6px;
}

.post-card h3 {
    margin-top: 15px;
}

.site-header {
    width: 100%;
    z-index: 100;
}

.site-header.top-bar {
    position: sticky;
    top: 0;
    background: #fff;
}

.site-header.below-hero {
    position: relative;
    background: #fff;
}
.site-header.sticky {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
