
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0077b6, #00b4d8, #90e0ef, #a8eb12);
    min-height: 100vh;
    padding-top: 70px;
    color: white;
    display: flex;
    flex-direction: column;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    z-index: 1000;
    margin-bottom: auto;
     height: auto;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.logo {
    width: 100px;
    margin: 0 20px 0 0;
    height: 120px; 
}

.location{
    font-size: 20px;
    margin-right: 20px;
    color:white;
    background-color: #009E6E;
    margin-right:40px ;
    border-radius: 16px;
}
nav a{
    display: block;
    margin-top:20px;
    margin-right: 40px;
    font-size: 16px;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 20px;
}

nav a:hover {
    background-color: #ffffff;
    color: #009E6E;
    border: 1px solid #009E6E;
    border-radius: 16px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    cursor: pointer;
}


.intro, .search-section, .about-section {
    text-align: center;
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

.cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    margin-top: 20px;

}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

input, button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background: rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: rgba(255, 255, 255, 0.6);
}
footer {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 0;
    width: 100%;
}

.image-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-content {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.footer-content a {
  color: green;
  text-decoration: none;
  margin: 0 5px;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-contact {

padding: 5px;
text-align: center;
}


.image-links a {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
border: 2px hidden;
transition: transform 0.3s;
display: inline-block;
}


.image-links a:hover {
transform: scale(1.1);
}


.image-links img {
width: 100%;
height: 100%;
object-fit: cover;
}

#contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem 1rem;
    margin-top:auto;
}

.contact-container {
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    animation: slideUp 0.8s ease-out;
    opacity: 1;
}

.search-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#home-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem 1rem;
}

.home-container {
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    animation: slideUp 0.8s ease-out;
    opacity: 1;
}

@keyframes slideUp{
        0% {
        transform: translateY(100px); 
        opacity: 0;
    }
    100% {
        transform: translateY(0); 
        opacity: 1;
    }
}



.section-divider {
    border: none;
    height: 4px;
    background: linear-gradient(to right, #6ee7b7, #3b82f6);
    border-radius: 2px;
    margin: 20px auto;
    width: 60%;
}
.about{
    text-align: center;
    margin-top: 30px;
    color: #EAEAEA;
}

.container_img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    padding: 50px;
    }
.earth_img,.weather_img,.text_earth, .text_weather {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.weather_img,
.earth_img {
    background: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.weather_img img,
.earth_img img {
    max-width: 100%;
    height: auto;
}

.text_earth,
.text_weather {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text_earth h2,
.text_weather h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
}

.text_earth p,
.text_weather p {
    margin: 0;
    font-size: 0.9em;
}

.earth_img { grid-column: 1; grid-row: 1; }
.text_earth  { grid-column: 2; grid-row: 1; }
.text_weather { grid-column: 1; grid-row: 2; }
.weather_img { grid-column: 2; grid-row: 2; }



