.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1500674425229-f692875b0ab7') center/cover no-repeat;
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.current-weather {
    text-align: center;
}

.temperature {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.weather-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.weather-details {
    text-align: left;
    margin-top: 1rem;
}

.forecast-day {
    text-align: center;
    padding: 1rem;
}

.forecast-icon {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.card {
    background: var(--bs-dark);
    border: 1px solid var(--bs-border-color);
}

.forecast-day {
    border-bottom: 1px solid var(--bs-border-color);
}

.forecast-day:last-child {
    border-bottom: none;
}
