.calendar-container { padding: 80px 24px; margin: 0 auto; max-width: 1200px; } .calendar-title { font-size: 2.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; } .calendar-description { font-size: 1.2rem; color: #666; margin-bottom: 3rem; } .calendar-content { position: relative; } .calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 0; } .calendar-event { background: #ffffff; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; } .calendar-event::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #2563eb; opacity: 0; transition: opacity 0.3s ease; } .calendar-event:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); } .calendar-event:hover::before { opacity: 1; } .event-date { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.5rem; background: #f8f9fa; padding: 1rem; border-radius: 8px; width: fit-content; } .event-day { font-size: 2rem; font-weight: 700; color: #2563eb; margin: 0; line-height: 1; } .event-month { font-size: 1rem; font-weight: 600; color: #666; margin: 0; text-transform: uppercase; letter-spacing: 1px; } .event-title { font-size: 1.5rem; font-weight: 600; color: #1a1a1a; margin-bottom: 1rem; } .event-description { font-size: 1rem; line-height: 1.6; color: #666; margin-bottom: 1.5rem; } .event-time { font-size: 0.9rem; color: #2563eb; font-weight: 500; margin: 0; display: flex; align-items: center; } .event-time::before { content: "🕒"; margin-right: 0.5rem; } /* Responsive Styles */ @media (max-width: 1024px) { .calendar-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .calendar-container { padding: 60px 16px; } .calendar-title { font-size: 2rem; } .calendar-description { font-size: 1.1rem; margin-bottom: 2rem; } .calendar-grid { grid-template-columns: 1fr; gap: 1.5rem; } .calendar-event { padding: 1.5rem; } .event-title { font-size: 1.3rem; } } /* Animation */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .calendar-event { animation: fadeInUp 0.6s ease-out; animation-fill-mode: both; } .calendar-event:nth-child(2) { animation-delay: 0.2s; } .calendar-event:nth-child(3) { animation-delay: 0.4s; }