/* --- Minimalist Current Weather Page Styles --- */

/* Full-screen hero background */
.weather-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.weather-hero-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1601134467661-3d775b999c86?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a parallax effect */
}

/* Container to center the card */
.weather-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* The main weather card */
.weather-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 4rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    max-width: 450px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.weather-location h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
}

.weather-date {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0 0 2rem;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.weather-icon {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.weather-temp {
    font-size: 5rem;
    font-weight: 200;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.weather-desc {
    font-size: 1.5rem;
    text-transform: capitalize;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather-feels-like {
    font-size: 1.2rem;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 600px) {
    .weather-card {
        padding: 2rem;
    }
    
    .weather-main {
        flex-direction: column;
        gap: 1rem;
    }
    
    .weather-temp {
        font-size: 4rem;
    }
    
    .weather-location h2 {
        font-size: 1.8rem;
    }
}