@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
:root {
    --primary-color: #2c5e1a;
    /* Koyu Yeşil */
    --secondary-color: #a9d18e;
    /* Açık Yeşil */
    --background-color: #f4f9f4;
    /* Çok Açık Yeşil/Beyaz */
    --text-color: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../bg.jpeg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 400;
}

.weather-section {
    padding: 40px 20px;
    text-align: center;
}

.weather-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.weather-section h2 .fa-leaf {
    margin-right: 10px;
    color: var(--secondary-color);
}
.weather-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.weather-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    flex-basis: 220px;
    flex-grow: 1;
    min-width: 200px;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.weather-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.weather-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.weather-icon {
    width: 60px;
    height: 60px;
}

.weather-info .weather-icon {
    width: 70px;  
    height: 70px;
    margin-right: 10px;
}

.temp {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.description {
    font-size: 1rem;
    color: #555;
    text-transform: capitalize;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    margin-top: 40px;
}

footer .fa-tree {
    margin-right: 8px;
}