.calendar-section {
    background: var(--bg-cream);
    padding: 60px 20px 80px;
}

.calendar-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 26px;
    color: var(--text-dark);
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 40px;
}

.calendar-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 5px 25px;
}

.calendar-month {
    font-size: 56px;
    font-weight: 700;
    color: #a07850;
    line-height: 1;
    letter-spacing: -2px;
}

.calendar-year {
    font-size: 28px;
    color: #a07850;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.calendar-weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #b08968;
    letter-spacing: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(176, 137, 104, 0.15);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day.today {
    color: var(--primary-color);
    font-weight: 600;
}

.calendar-day.wedding {
    background: linear-gradient(135deg, #d4a96a, #c4956a);
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(196, 149, 106, 0.35);
    animation: pulseHeart 2s ease-in-out infinite;
    position: relative;
}

.calendar-day.wedding::after {
    content: '';
    position: absolute;
    top: -6px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d4a96a' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") no-repeat center/contain;
}

@keyframes pulseHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.calendar-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-lighter);
    letter-spacing: 2px;
}
