/* Глобальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

header .menu {
    list-style: none;
    display: flex;
    gap: 1rem;
}

header .menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

header .menu li a:hover {
    color: #ff6347;
}

/* Hero секція */
.hero {
    text-align: center;
    padding: 2rem;
    background: url('/assets/images/weather-bg.jpg') no-repeat center center/cover;
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.search-form input {
    padding: 0.5rem;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-form button {
    padding: 0.5rem 1rem;
    background: #ff6347;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-form button:hover {
    background: #e55039;
}

/* Мобільна версія */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .search-form {
        flex-direction: column;
    }
}