/* Mobile Kitchen 页面样式 */
.mobilekitchen-container {
    padding: 50px 0;
}

.mobilekitchen-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    color: #2e7d32;
}

.mobilekitchen-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #555;
}

.calendar-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.calendar-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2e7d32;
}

.calendar-intro p {
    color: #666;
}

/* 日历样式 */
.calendar-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 50px;
}

.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #2e7d32;
    font-weight: 600;
}

.month-btn:hover {
    text-decoration: underline;
}

.current-month {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.day-header {
    padding: 10px;
    font-size: 14px;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-row {
    display: contents;
}

.calendar-day {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-day:hover {
    background-color: #f5f5f5;
}

.calendar-day.empty {
    background-color: #f5f5f5;
    cursor: default;
}

.calendar-day.empty:hover {
    background-color: #f5f5f5;
}

.event {
    position: relative;
}

.event .day-number {
    position: relative;
    z-index: 1;
}

.event-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #2e7d32;
    border-radius: 50%;
    z-index: 0;
}

/* 活动列表样式 */
.events-section {
    margin-bottom: 50px;
}

.events-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2e7d32;
}

.events-list {
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.event-date {
    width: 100px;
    height: 100px;
    background-color: #2e7d32;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.event-day {
    font-size: 24px;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-details {
    padding: 20px;
    flex-grow: 1;
}

.event-details h3 {
    margin-bottom: 10px;
    color: #333;
}

.event-time, .event-location, .event-description {
    margin-bottom: 10px;
    color: #666;
}

.time-icon, .location-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.event-description {
    margin-bottom: 15px;
}

/* 移动厨房介绍部分样式 */
.mobile-kitchen-info {
    margin-bottom: 50px;
}

.mobile-kitchen-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2e7d32;
}

.info-content {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-text {
    flex: 1;
    padding: 30px;
}

.info-text p {
    margin-bottom: 15px;
    color: #555;
}

/* 志愿者部分样式 */
.volunteer-section {
    text-align: center;
    margin-bottom: 50px;
}

.volunteer-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2e7d32;
}

.volunteer-section > p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

.volunteer-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.volunteer-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.green-btn {
    background-color: #2e7d32;
    color: white;
}

.green-btn:hover {
    background-color: #1b5e20;
}

.yellow-btn {
    background-color: #ffc107;
    color: #333;
}

.yellow-btn:hover {
    background-color: #ffb300;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .info-content {
        flex-direction: column;
    }

    .info-image {
        height: 200px;
    }

    .calendar-body {
        gap: 5px;
    }

    .calendar-day {
        min-height: 60px;
    }
}


/* 弹窗样式 */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.close-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 40%;
}

/* 弹窗样式 */
.thank-you-modal2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content2 {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.close-btn2 {
    background-color: #2E7D32;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 40%;
}

.green-btn {
    background-color: #2e7d32;
    color: white;
}

.green-btn:hover {
    background-color: #1b5e20;
}