/* Hero Section */
.hero {
    background-color: #000;
    color: var(--primary-color);
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 100;
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--primary-color);
    font-family: 'Josefin Sans', sans-serif;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li.separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-list li.active {
    color: #333;
    font-weight: 500;
}

/* All Classes Section */
.all-classes-section {
    background-color: #fff;
    padding: 60px 20px;
}

.all-classes-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    grid-auto-rows: minmax(260px, auto);
    grid-auto-flow: dense;
}

.bento-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bento-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.bento-card:hover::before {
    height: 100%;
}

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

.bento-large {
    grid-column: span 8;
}

.bento-small {
    grid-column: span 4;
}

.bento-wide {
    grid-column: span 12;
}

.bento-third {
    grid-column: span 4;
}

.bento-half {
    grid-column: span 6;
}

.bento-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #000000;
}

.bento-wide .bento-content h3 {
    font-size: 1.75rem;
}

.bento-content p {
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.class-schedule {
    margin-bottom: 1.5rem;
}

.bento-content .schedule-text {
    color: #000000;
    background-color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    display: inline-block;
    padding: 6px 12px;
}

.bento-content .schedule-text.coming-soon {
    color: #999999;
}

.bento-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.bento-card:hover .bento-link {
    opacity: 1;
}

.bento-link:hover {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .bento-large {
        grid-column: span 6;
    }
    
    .bento-small {
        grid-column: span 3;
    }
    
    .bento-third {
        grid-column: span 3;
    }
    
    .bento-wide {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bento-large,
    .bento-small,
    .bento-third,
    .bento-wide {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bento-content h3 {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .section-title {
    margin-bottom: 3rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
}