/* تعيين الأساسيات */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('/images/weather_image.webp');
    /* خلفية الصورة */
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    background: rgba(0, 0, 0, 0.8); /* خلفية أكثر ظلاماً لتبرز المحتوى */
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
}

/* العنوان */
h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #ff6f61; /* لون عصري */
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* حقل البحث */
input[type="text"] {
    width: 100%;
    padding: 20px;
    font-size: 1.4rem;
    border: 2px solid #ff6f61;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s ease;
}

/* تأثير عند تمرير الماوس على حقل البحث */
input[type="text"]:focus {
    background-color: rgba(255, 255, 255, 0.3);
    outline: none;
    border-color: #ff6f61;
}

/* زر البحث */
button {
    width: 100%;
    padding: 18px;
    font-size: 1.5rem;
    background-color: #ff6f61;
    border: none;
    border-radius: 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* تأثير عند تمرير الماوس على الزر */
button:hover {
    background-color: #e04f3d;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

/* تأثير عند الضغط على الزر */
button:active {
    transform: scale(0.98);
}

/* عرض نتائج الطقس */
#weather-info {
    margin-top: 30px;
    font-size: 1.3rem;
    text-align: left;
    color: #ffcc00; /* لون جذاب للنتائج */
}

#weather-info p {
    margin: 15px 0;
    font-weight: 600;
}

#weather-info span {
    font-weight: bold;
    color: #ff6f61;
}

/* تأثيرات متقدمة */
@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    input[type="text"],
    button {
        font-size: 1.2rem;
    }

    #weather-info {
        font-size: 1.1rem;
    }
}
