/* Color preference page specific styles */
.color-preference-form {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.color-preference-form h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.color-preference-form p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.color-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
}

.color-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #16786c;
  transform: translateY(-3px);
}

.color-option.selected {
  background: rgba(22, 120, 108, 0.2);
  border-color: #16786c;
  transform: translateY(-3px);
}

.color-option:active {
  transform: translateY(-1px);
}

.color-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.color-option:hover .color-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.color-option span {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.continue-btn {
  width: 100%;
  max-width: 200px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #16786c, #4a9c8f);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 120, 108, 0.3);
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 120, 108, 0.4);
}

.continue-btn:active {
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .color-preference-form {
    padding: 1.5rem 1rem;
  }
  
  .color-preference-form h1 {
    font-size: 1.5rem;
  }
  
  .color-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .color-circle {
    width: 60px;
    height: 60px;
  }
  
  .color-option span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .color-preference-form h1 {
    font-size: 1.3rem;
  }
  
  .color-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .color-circle {
    width: 50px;
    height: 50px;
  }
  
  .color-option span {
    font-size: 0.8rem;
  }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
  .color-preference-form {
    padding: 3rem 1rem;
  }
  
  .color-preference-form h1 {
    font-size: 2.2rem;
  }
  
  .color-options {
    gap: 2rem;
  }
  
  .color-circle {
    width: 100px;
    height: 100px;
  }
  
  .color-option span {
    font-size: 1.1rem;
  }
  
  .continue-btn {
    max-width: 250px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
} 