#dress-code .closet {
  display: inline;
  margin-left: 12px;
  margin-right: auto;
}

#dress-code h1,
#dress-code p,
#dress-code strong {
  color: var(--main-dark-navy);
}

/* Floating animation keyframes */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* SVG link styling */
#dress-code .svg-link {
  display: block;
  cursor: pointer;
  animation: float ease-in-out infinite;
}

/* Random timing for each SVG */
#dress-code .column:nth-child(1) .svg-link {
  animation-duration: 3.2s;
  animation-delay: 0s;
}

#dress-code .column:nth-child(2) .svg-link {
  animation-duration: 2.7s;
  animation-delay: 0.5s;
}

#dress-code .column:nth-child(3) .svg-link {
  animation-duration: 3.5s;
  animation-delay: 1s;
}

#dress-code .svg-link:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.05);
  opacity: 0.85;
  transition: transform 0.3s ease-out, opacity 0.2s ease-in-out;
}

#dress-code .svg-link:active {
  transform: translateY(-8px) scale(1.02);
  opacity: 0.95;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  #dress-code .closet {
    margin-left: 18px !important;
  }

  #dress-code .svg-link svg {
    max-width: 70px;
    height: 70px;
    margin: 0 8px;
    display: inline-block;
  }

  #dress-code .columns.is-multiline {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  #dress-code .column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    padding: 0;
    margin: 0;
  }
}

.background-fade-out-radius {
  background: radial-gradient(ellipse 60% 80%, rgba(255,255,255,1) 30%, var(--off-white) 70%) !important;
}

.calendar-wrapper {
  max-width: 400px; 
  margin: 0 auto;
}

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

.day-header {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 0;
}

.day-cell {
  padding: 10px;
  font-size: 1.1rem;
}

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

.day-cell.highlighted.heart {
  position: relative;
  color: white;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 2;
}

.day-cell.highlighted.heart::before, .day-cell.highlighted.heart::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 26px;
  height: 34px;
  background: #ff6b6b;
  border-radius: 90% 90% 0 0;
}

.day-cell.highlighted.heart::before {
    transform: translateX(-65%) rotate(-47deg);
    z-index: -1;
}

.day-cell.highlighted.heart::after {
    transform: translateX(-37%) rotate(47deg);
    z-index: -1;
}

@media (min-width: 1015px) {
  .date-info-section .hero-body {
    max-width: 50vw;
  }
}
