/* @2025 - Steffen Klausen - steffen@klausenguldbaek.dk*/
/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* DRESSCODE STYLING */

.dresscode-container {
  position: relative;
  max-width: 800px;
  min-height: 550px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
}

.dresscode-main {
  text-align: center;
  margin-bottom: 2rem;
}

.dresscode-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.dresscode-title i {
  margin-right: 10px;
  color: #9243ab;
}

.dresscode-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

.dresscode-colors {
  position: absolute;
  width: 100%;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.dresscode-colors h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #333;
}

.color-swatches {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-name {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.9rem;
  color: #666;
}

.color-note {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #999;
  text-align: center;
}