/* Dress Code Page Styles */

.dress-code-page {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.dress-code-overlay {
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.dress-code-container {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 48rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.dress-code-content {
  width: 100%;
}

.dress-code-title {
  font-size: calc(var(--font-size-h1) * 0.5);
  font-weight: bold;
  color: var(--color-dark-secondary-200);
  margin-bottom: 2rem;
  text-align: center;
}

.dress-code-intro {
  margin-bottom: 2rem;
  text-align: center;
  color: #4a5568;
}

.dress-code-intro p {
  margin-bottom: 1rem;
}

.color-section {
  margin-bottom: 3rem;
}

.color-section-title {
  font-size: calc(var(--font-size-h2) * 0.4);
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: center;
}

.color-palette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.color-box {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.color-box:hover {
  transform: scale(1.1);
}

/* Pink nuances - placeholder colors (to be replaced by user's color picker) */
.pink-1 {
  background-color: #F3E2E2;
}

.pink-2 {
  background-color: #E9CBCB;
}

.pink-3 {
  background-color: #E2B7B7;
}

.pink-4 {
  background-color: #D59B9A;
}

.pink-5 {
  background-color: #CA7F7E;
}

/* Green nuances - placeholder colors (to be replaced by user's color picker) */
.green-1 {
  background-color: #BCCABA;
}

.green-2 {
  background-color: #A8BCA5;
}

.green-3 {
  background-color: #9AB196;
}

.green-4 {
  background-color: #859F7F;
}

.green-5 {
  background-color: #6E8C69;
}

/* Beige nuances - placeholder colors (to be replaced by user's color picker) */
.beige-1 {
  background-color: #ECDBC1;
}

.beige-2 {
  background-color: #E8D2B0;
}

.beige-3 {
  background-color: #DDC092;
}

.beige-4 {
  background-color: #D3AF73;
}

.beige-5 {
  background-color: #D0A663;
}

.dress-code-footer {
  text-align: center;
  color: #4a5568;
}

.dress-code-footer p {
  margin-bottom: 1.5rem;
}

.dress-code-emphasis {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dress-code-title {
    font-size: calc(var(--font-size-h1) * 0.6);
  }

  .color-section-title {
    font-size: calc(var(--font-size-h2) * 0.4);
  }

  .color-box {
    width: 4rem;
    height: 4rem;
  }

  .color-palette {
    gap: 1rem;
  }

  .dress-code-overlay {
    padding: 4rem;
  }

  .dress-code-container {
    padding: 1.5rem;
  }
}
