/* Special Day Plugin Styles */
.special-day-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  color: #333;
}

/* Breadcrumbs */
.special-day-breadcrumbs {
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.special-day-breadcrumbs a {
  color: #2fc781;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.special-day-breadcrumbs a:hover {
  color: #27a86b;
  text-decoration: underline;
}

.special-day-breadcrumbs i {
  margin-right: 5px;
}

.special-day-separator {
  margin: 0 8px;
  color: #666;
}

.special-day-current {
  color: #333;
  font-weight: 600;
}

/* Header */
.special-day-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.special-day-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.special-day-title {
  font-size: 2.5rem;
  margin: 0 0 15px 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.special-day-title i {
  margin-right: 10px;
  color: #ffd700;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.special-day-subtitle {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Current Date Section */
.special-day-current-date {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.special-day-date-title {
  color: #2fc781;
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.special-day-date-title i {
  margin-right: 8px;
  color: #2fc781;
}

.special-day-date-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.special-day-bangla-date {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2fc781;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.special-day-english-date {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Today's Special Day */
.special-day-today {
  background: linear-gradient(135deg, #2fc781, #27a86b);
  color: white;
  padding: 35px;
  border-radius: 15px;
  margin-bottom: 35px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(47, 199, 129, 0.4);
  position: relative;
  overflow: hidden;
}

.special-day-today::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: slide 3s ease-in-out infinite;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.special-day-today-title {
  margin: 0 0 25px 0;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.special-day-today-title i {
  margin-right: 10px;
  color: #ffd700;
}

.special-day-today-event {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.special-day-event-name {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}

/* Upcoming Events */
.special-day-upcoming {
  margin-bottom: 40px;
}

.special-day-upcoming-title {
  color: #2fc781;
  margin: 0 0 25px 0;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 3px solid #2fc781;
  padding-bottom: 12px;
  position: relative;
}

.special-day-upcoming-title i {
  margin-right: 10px;
  color: #2fc781;
}

.special-day-upcoming-list {
  display: grid;
  gap: 18px;
}

.special-day-upcoming-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.special-day-upcoming-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.special-day-upcoming-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.special-day-upcoming-item:hover::before {
  transform: scaleY(1);
}

.special-day-upcoming-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 25px;
  min-width: 90px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border: 2px solid #2fc781;
}

.special-day-upcoming-day {
  font-size: 2rem;
  font-weight: 700;
  color: #2fc781;
  line-height: 1;
}

.special-day-upcoming-month {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  font-weight: 500;
}

.special-day-upcoming-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.special-day-upcoming-event {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.special-day-upcoming-countdown {
  font-size: 1rem;
  color: #2fc781;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.special-day-upcoming-countdown i {
  color: #2fc781;
}

/* Month Events */
.special-day-month {
  margin-bottom: 40px;
}

.special-day-month-title {
  color: #2fc781;
  margin: 0 0 25px 0;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 3px solid #2fc781;
  padding-bottom: 12px;
}

.special-day-month-title i {
  margin-right: 10px;
  color: #2fc781;
}

.special-day-month-list {
  display: grid;
  gap: 15px;
}

.special-day-month-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.special-day-month-item:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.special-day-month-item-today {
  background: linear-gradient(135deg, #2fc781, #27a86b);
  color: white;
  border: none;
  box-shadow: 0 5px 20px rgba(47, 199, 129, 0.3);
}

.special-day-month-item-today:hover {
  transform: translateX(8px) scale(1.02);
}

.special-day-month-date {
  font-weight: 600;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-day-month-date i {
  color: #2fc781;
}

.special-day-month-item-today .special-day-month-date i {
  color: #ffd700;
}

.special-day-month-event {
  flex: 1;
  margin: 0 15px;
  font-weight: 500;
}

.special-day-today-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.special-day-today-badge i {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .special-day-container {
    padding: 15px;
  }

  .special-day-title {
    font-size: 2rem;
  }

  .special-day-header {
    padding: 30px 15px;
  }

  .special-day-upcoming-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .special-day-upcoming-date {
    margin-right: 0;
    margin-bottom: 15px;
    min-width: auto;
  }

  .special-day-month-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .special-day-month-date {
    min-width: auto;
  }

  .special-day-month-event {
    margin: 0;
  }

  .special-day-today-badge {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .special-day-title {
    font-size: 1.8rem;
  }

  .special-day-subtitle {
    font-size: 1rem;
  }

  .special-day-bangla-date {
    font-size: 1.5rem;
  }

  .special-day-upcoming-day {
    font-size: 1.6rem;
  }

  .special-day-upcoming-event {
    font-size: 1.1rem;
  }
}

/* Loading Animation */
.special-day-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.special-day-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2fc781;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Accessibility */
.special-day-container *:focus {
  outline: 2px solid #2fc781;
  outline-offset: 2px;
}

.special-day-container a:focus {
  background-color: rgba(47, 199, 129, 0.1);
  border-radius: 4px;
}

/* Print Styles */
@media print {
  .special-day-container {
    box-shadow: none;
    border: none;
  }

  .special-day-header {
    background: #f8f9fa !important;
    color: #333 !important;
    box-shadow: none;
  }

  .special-day-today {
    background: #f8f9fa !important;
    color: #333 !important;
    box-shadow: none;
  }

  .special-day-month-item-today {
    background: #f8f9fa !important;
    color: #333 !important;
  }
}
