/* weather_screen.css */

/* General Styles (unchanged) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: black;
    color: #ffffff; /* Pure white (instead of default 'white') */
    overflow: hidden;
}


/* Full-Screen Overlay (unchanged) */
.fullscreen-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
}

/* Weather Container (unchanged) */
.weather-container1 {
    background-color: black;
    padding: 40px;
    width: 100%;
    height: 100vh;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Weather Header (unchanged)
.weather-header {
    position: absolute;
    top: 20px; /* Adjust this value to control how far down from the top
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 1; 
} */

/* .weather-header h2 {
    font-size: 2rem;
    margin: 0; 
    padding: 0;
    color: gold; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
} */

/* ===== UPDATED STYLES ===== */
/* Weather Left Section (Top-Left - Larger Icon/Temp) */
.live-clock {
    position: absolute;
    top: 21vh;     /* A little from the bottom */
    right: 4vw;      /* A little from the right side */
    font-size: 5rem;
    color: white;    /* For visibility on black popup */
    font-weight: bold;
}



.weather-left {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-icon-container {
    width: 225px;  /* Icon size increased to 200px */
    height: 225px;
}

.weather-icon {
    width: 100%;
    height: 100%;
}

#temp1 {
    font-size: 12rem;  /* Larger temperature font */
    font-weight: bold;
    margin: 0;
}

/* Max - Min Temprature (Right Side - Larger Font) */
.weather-right {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}

.daily-temp {
    font-size: 3rem;  /* Increased font size */
    font-weight: bold;
}

#minTemp, #maxTemp {
    margin: 0.5; /* Removes all spacing */
    line-height: 1; /* Optional: tighter vertical spacing */
}

/* Adjust Main Container to Avoid Overlaps */
.weather-main-container {
    margin-top: 25vh;  /* Push content down */
}
/* Horizontal Line */
.horizontal-line {
    width: 100%;
    height: 5px;
    background-color: gold;
    margin: 5px 0;
}

/* Weather Secondary Details */
.weather-secondary-details {
    display: flex;
    justify-content: space-around;
    font-size: 2rem;
    margin: 15px 0;
}

/* Horizontal Line */
.horizontal-line {
    width: 100%;
    height: 5px;
    background-color: gold;
    margin: 5px 0;
}

/* Hourly Forecast */
.hourly-forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 1.75rem;
}

.hourly-window {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 19%;
}

.hourly-window img {
    width: 120px;
    height: 120px;
}