
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #fff;
}

/*.weather-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}*/

.weather-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    flex-direction: column; /* Add this line to stack form and card vertically */
    gap: 20px; /* Optional: adds space between form and card */
}

/*.weather-search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}*/

    .weather-search-form input[type="text"] {
        flex: 1 1 200px;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px;
        outline: none;
        width: 100%;
        box-sizing: border-box;
    }

    .weather-search-form button {
        padding: 10px 16px;
        font-size: 16px;
        background-color: #0077cc;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        white-space: nowrap;
    }

        .weather-search-form button:hover {
            background-color: #005fa3;
        }

.weather-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    width: 100%;
    text-align: center;
}

.location {
    font-size: 1.8rem;
    font-weight: bold;
}

.temp {
    font-size: 3.5rem;
    margin: 15px 0;
}

.description {
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    opacity: 0.9;
    gap: 10px;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .weather-card {
        padding: 25px;
    }

    .temp {
        font-size: 3rem;
    }

    .meta {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .weather-container {
        padding: 15px;
    }

    .weather-card {
        padding: 20px;
    }

    .temp {
        font-size: 2.5rem;
    }

    .location {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .meta {
        font-size: 0.9rem;
    }
}


@media screen and (min-width: 768px) {
    .weather-container {
        flex-direction: column; /* Or keep as column if you prefer vertical even on wide */
    }
}


.weather-search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

    .weather-search-form input[type="text"] {
        flex: 1 1 200px;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px;
        outline: none;
        width: 100%;
    }

    .weather-search-form button {
        padding: 10px 16px;
        font-size: 16px;
        background-color: #0077cc;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        white-space: nowrap;
    }

        .weather-search-form button:hover {
            background-color: #005fa3;
        }

.weather-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.navbar {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
}

.navbar-brand {
    font-size: 1.4rem;
}

.nav-link {
    color: #333 !important;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #007BFF !important;
        text-decoration: underline;
    }
header {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.kairos-logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff; /* Or #e0f7fa for soft tone */
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrap {
    flex: 1;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .navbar nav a {
        color: white;
        margin-left: 20px;
        text-decoration: none;
        font-weight: 500;
    }

        .navbar nav a:hover {
            text-decoration: underline;
        }

.kairos-logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-footer {
    background: #013a63; /* Or use matching gradient */
    color: #e0f7fa;
    text-align: center;
    padding: 1rem;
}
