/* === RESET & BASE === */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f6;
}

/* === HEADER & BANNER === */
.site-header {
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* === NAVIGATION === */
.main-nav {
    background-color: #6d4aff;
    padding: 0 20px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: rgba(255,255,255,0.15);
}

/* === MAIN CONTENT === */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f0eee9;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.tagline {
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
}

.intro {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

/* === FOOTER === */
.site-footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
}

/* === CLASS BLOCKS === */
.class-list {
    max-width: 800px;
    margin: 0 auto;
}

.class-block {
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #e0ddd6;
}

.class-block:last-child {
    border-bottom: none;
}

.class-block h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.class-subtitle {
    font-style: italic;
    color: #6d4aff;
    margin-top: 0;
    margin-bottom: 15px;
}

.enrollment {
    background-color: #f0eee9;
    border-radius: 8px;
    padding: 40px 30px;
    margin-top: 40px;
}

.contact-link a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #6d4aff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.contact-link a:hover {
    background-color: #5a3dd4;
}

/* === FAQ === */
.faq-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0ddd6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.faq-item a {
    color: #6d4aff;
    text-decoration: none;
    font-weight: bold;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-nav a {
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}
/* === HOME PAGE SECTIONS === */
.hero-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.discipline-list {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6a6a6a;
    margin: 0 0 40px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #2a2a2a;
    margin: 0 0 60px 0;
}

/* === CAROUSEL === */
.carousel {
    max-width: 700px;
    margin: 0 auto 40px auto;
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 1;
}

@keyframes fadeCarousel {
    0%, 10% { opacity: 1; }
    16%, 100% { opacity: 0; }
}

.carousel-slide:nth-child(1) { animation: fadeCarousel 12s infinite; animation-delay: 0s; background-size: 50% auto; }
.carousel-slide:nth-child(2) { animation: fadeCarousel 12s infinite; animation-delay: 2s; background-size: 85% auto; background-position: center; }
.carousel-slide:nth-child(3) { animation: fadeCarousel 12s infinite; animation-delay: 4s; background-size: 50% auto; background-position: center; }
.carousel-slide:nth-child(4) { animation: fadeCarousel 12s infinite; animation-delay: 6s; background-size: 80% auto; background-position: center; }
.carousel-slide:nth-child(5) { animation: fadeCarousel 12s infinite; animation-delay: 8s; background-size: 80% auto; background-position: center; }
.carousel-slide:nth-child(6) { animation: fadeCarousel 12s infinite; animation-delay: 10s; background-size: 70% auto; background-position: center; }

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #2a2a2a;
    margin: 0 0 20px 0;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 30px 0;
}

.foundation-statement {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin: 40px 0 80px 0;
}

/* === GENERAL SECTIONS === */
.about-section,
.practice-section,
.work-section,
.serves-section,
.application-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.about-section h2,
.practice-section h2,
.work-section h2,
.serves-section h2,
.application-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 60px 0 20px 0;
    color: #2a2a2a;
}

.about-section p,
.practice-section p,
.work-section p,
.serves-section p,
.application-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 10px 0;
}

.practice-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #2a2a2a;
}

/* === FORM STYLING === */
.application-form {
    margin: 40px 0;
}

.form-group {
    margin: 15px 0;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #2a2a2a;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.application-form button[type="submit"] {
    display: inline-block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    color: #ffffff;
    background-color: #2a2a2a;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
}

.application-form button[type="submit"]:hover {
    background-color: #444;
}

