@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    background-color: #121212; /* Dark background */
    color: #e0e0e0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#app {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-top: -10px;
}

.weather-info p {
    font-size: 1.1rem;
    color: #a0a0a0;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gender-selection, .style-selection {
    display: flex;
    gap: 10px;
}

button {
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

button:hover {
    background-color: #2a2a2a;
    border-color: #555;
}

button.active {
    background-color: #007bff; /* Vibrant blue for active state */
    color: #ffffff;
    border-color: #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); /* Glow effect */
}

#recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.recommendation-item {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* Lifted effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

.recommendation-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.recommendation-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}
