/* ========== Global styles ========== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f3f4f6;
    color: #111827;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ========== Header & Navigation ========== */

.site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #111827;
    color: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-tabs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.nav-tab {
    border: none;
    padding: 8px 14px;
    border-radius: 999px;
    background: transparent;
    color: #e5e7eb;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-tab:hover {
    background: #374151;
}

.nav-tab.active {
    background: #f9fafb;
    color: #111827;
}

/* ========== Layout ========== */

.main-content {
    max-width: 1000px;
    margin: 20px auto 40px;
    padding: 0 16px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.25s ease-out;
}

.tab-content.active {
    display: block;
}

.section-intro {
    max-width: 700px;
    margin-bottom: 20px;
    color: #4b5563;
}

/* ========== Schedule Section ========== */

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #4b5563;
}

.legend-label {
    margin-right: 4px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.legend-dot.group {
    background: #2563eb;
}

.legend-dot.private {
    background: #10b981;
}

.legend-dot.open {
    background: #f59e0b;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.schedule-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border-left: 4px solid transparent;
}

.schedule-card.group {
    border-left-color: #2563eb;
}

.schedule-card.private {
    border-left-color: #10b981;
}

.schedule-card.open {
    border-left-color: #f59e0b;
}

.schedule-card h2 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.schedule-time {
    font-weight: 500;
    margin: 0 0 4px;
    color: #111827;
}

.schedule-location {
    margin: 0 0 8px;
    color: #6b7280;
    font-size: 0.95rem;
}

.schedule-details {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

/* ========== Gallery Section ========== */

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

.gallery-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

/* ========== About Section ========== */

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 4px;
}

.about-tagline {
    margin-top: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-list {
    padding-left: 18px;
    margin-top: 6px;
    margin-bottom: 16px;
}

.about-list li {
    margin-bottom: 4px;
}

.about-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.profile-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    margin-bottom: 10px;
}

.photo-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

/* ========== Pricing / Business Sections ========== */

.pricing-section {
    margin-top: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border-top: 4px solid #2563eb;
}

.pricing-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.pricing-subtitle {
    margin: 2px 0 10px;
    color: #6b7280;
    font-size: 0.95rem;
}

.pricing-list {
    padding-left: 18px;
    margin: 6px 0 10px;
    font-size: 0.95rem;
}

.pricing-list li {
    margin-bottom: 4px;
}

.pricing-note {
    font-size: 0.9rem;
    color: #4b5563;
    margin-top: 6px;
}

/* ========== FAQ Section ========== */

.faq-section {
    margin-top: 32px;
}

.faq-item + .faq-item {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.faq-item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

/* ========== Testimonials Section ========== */

.testimonials-section {
    margin-top: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 10px;
}

.testimonial-name {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* ========== Contact CTA ========== */

.contact-cta {
    margin-top: 32px;
}

/* ========== Footer ========== */

.site-footer {
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
}

/* ========== Responsive Styles ========== */

@media (max-width: 700px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-tabs {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-photo {
        order: -1;
    }
}

/* ========== Animations ========== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
