/* Basic Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #3792ed;
    color: #fff;
}

/* Logo */
.navbar .logo a{
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

/* Nav Links - Desktop */
.navbar nav ul{
    display: flex;
    list-style: none;
}

.navbar nav ul li{
    margin-left: 25px;
}

.navbar nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar nav ul li a:hover{
    color: #ffeb3b;
}

/* Hamburger - Mobile */
.hamburger{
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span{
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive */
@media screen and (max-width:768px){
    .navbar nav ul{
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background-color: #1e90ff;
        flex-direction: column;
        display: none;
        border-radius: 0 0 5px 5px;
    }
    .navbar nav ul li{
        margin: 15px 0;
        text-align: center;
    }
    .hamburger{
        display: flex;
    }
    .nav-active{
        display: flex;
    }
}
/* Content Section */

.content{
max-width:1100px;
margin:auto;
padding:40px 20px;
font-family:Arial, sans-serif;
line-height:1.7;
}

.content h1{
font-size:32px;
margin-bottom:20px;
}

.content h2{
font-size:26px;
margin-top:30px;
}

.content h3{
font-size:22px;
margin-top:25px;
}

.content p{
font-size:18px;
margin-top:15px;
color:#444;
}

/* Responsive Gallery */

.gallery{
max-width:1100px;
margin:auto;
padding:20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:6px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* Tablet */

@media (max-width:768px){

.gallery{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media (max-width:480px){

.gallery{
grid-template-columns:1fr;
}

}

/* footer */

.footer{
    background-color: #3773d4;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-column{
    flex: 1 1 220px;
    margin: 15px;
}

.footer-logo{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-column h3{
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p{
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul{
    list-style: none;
    padding: 0;
}

.footer-column ul li{
    margin-bottom: 10px;
}

.footer-column ul li a{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover{
    color: #1eff40;
}

/* Social Icons */
.social-icons a{
    display: inline-block;
    margin-right: 10px;
}

.social-icons img{
    width: 35px;
    height: 35px;

    transition: 0.3s;
}

.social-icons img:hover{
    filter: invert(0.6);
}

/* Newsletter Form */
.newsletter-form input{
    padding: 8px 10px;
    width: 70%;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
}

.newsletter-form button{
    padding: 8px 12px;
    border: none;
    border-radius: 0 3px 3px 0;
    background-color: #1e90ff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover{
    background-color: #bc7c43;
}

/* Footer Bottom */
.footer-bottom{
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
}

/* Responsive - Mobile */
@media screen and (max-width:768px){
    .footer-container{
        flex-direction: column;
        align-items: center;
    }
    .footer-column{
        margin: 15px 0;
    }
    .newsletter-form input{
        width: 100%;
        margin-bottom: 10px;
        border-radius: 3px;
    }
    .newsletter-form button{
        width: 100%;
        border-radius: 3px;
    }
}