/* Dresscode Section */
.dresscode-section {
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    padding: 80px 20px;
}

.dresscode-content {
    max-width: 1000px;
    margin: 0 auto;
}

.color-scheme-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.color-group {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(149, 167, 184, 0.15);
}

.color-group h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.color-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

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

.color-box {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 0.5rem;
}

.color-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.avoid-colors {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.avoid-box {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 0.5rem;
}

.avoid-box:hover {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 900px) {
    .color-scheme-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dresscode-section {
        padding: 60px 20px;
    }

    .color-group {
        padding: 2rem;
    }

    .color-group h3 {
        font-size: 1.5rem;
    }

    .color-box,
    .avoid-box {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
}