/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.site-nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: #007bff;
}

/* Main content */
.site-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Meetings grid */
.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.meeting-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meeting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.meeting-date {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.meeting-details h3 {
    color: #333;
    margin-bottom: 1rem;
}

.meeting-topic, .meeting-icebreaker {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Schedule page */
.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #007bff;
    color: white;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.schedule-date {
    background: #007bff;
    color: white;
    padding: 0;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    position: relative;
}

.schedule-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.schedule-date time {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
}

.schedule-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.schedule-date .month {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.schedule-date .year {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.schedule-content {
    flex: 1;
}

.schedule-leader h3 {
    color: #333;
    margin-bottom: 1rem;
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    gap: 0.5rem;
}

.detail-label {
    font-weight: 600;
    min-width: 120px;
    color: #666;
}

/* About page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.expectation-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.expectation-item h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.values-list li:last-child {
    border-bottom: none;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .site-nav ul {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .meetings-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
    }

    .schedule-date {
        min-width: 70px;
        align-self: flex-start;
    }

    .schedule-date .day {
        font-size: 1.3rem;
    }

    .schedule-date .month {
        font-size: 0.7rem;
    }

    .schedule-date .year {
        font-size: 0.65rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-label {
        min-width: auto;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility classes */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.no-meetings {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.about-preview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.prayer {
    font-style: italic;
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #ddd;
}
.guidelines {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.check-in-options {
    margin-left: 20px;
}
.section {
    margin: 30px 0;
}

/* Meeting Script Page */
.meeting-script-page {
    max-width: 800px;
    margin: 0 auto;
}

.meeting-script {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.script-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.meeting-date .date-display {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.meeting-time .time-display {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    display: block;
}

.script-content {
    padding: 2rem;
}

.script-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.script-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.script-section h2 {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.script-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.leader-info, .next-leader-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.leader-role {
    color: #666;
    font-style: italic;
    margin: 0;
}

.next-meeting-date {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.no-next-meeting {
    color: #666;
    font-style: italic;
}

.topic-content, .icebreaker-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.topic-guidance h4, .icebreaker-instructions h4 {
    color: #007bff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.topic-guidance ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.topic-guidance li {
    margin-bottom: 0.25rem;
    color: #555;
}

.icebreaker-instructions p {
    color: #555;
    margin: 0;
}

.meeting-script-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.script-part {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.script-part:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.script-part h4 {
    color: #007bff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.script-text {
    line-height: 1.6;
}

.script-text p {
    margin-bottom: 1rem;
    color: #333;
}

.script-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.script-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.script-text strong {
    color: #007bff;
    font-weight: 600;
}

.script-text em {
    color: #666;
    font-style: italic;
}

.prayer {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #007bff;
    margin: 1rem 0;
    font-style: italic;
    color: #555;
}

.prayer p {
    margin: 0;
    line-height: 1.5;
}

.facilitator-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
}

.facilitator-notes ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.facilitator-notes li {
    margin-bottom: 0.5rem;
    color: #856404;
}

.no-meeting-today {
    text-align: center;
    padding: 3rem 2rem;
}

.no-meeting-content h2 {
    color: #666;
    margin-bottom: 1rem;
}

.no-meeting-content p {
    color: #888;
    margin-bottom: 2rem;
}

.next-meeting-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.next-meeting-info h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.next-meeting-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.next-meeting-details strong {
    color: #333;
}

/* Responsive design for meeting script */
@media (max-width: 768px) {
    .script-header {
        padding: 1.5rem;
    }

    .script-content {
        padding: 1.5rem;
    }

    .script-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

        .script-part {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .script-text {
        font-size: 0.95rem;
    }

    .next-meeting-info {
        padding: 1.5rem;
    }
}