/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     background-color: #323be8; 
    color:#323be8 ;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header img {
    width: 150px;
    height: auto;
}

.header h1 {
    font-size: 2em;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

/* Navigation Styles */
.navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #444;
    padding: 10px 0;
}

.navigation button {
    background-color: #666;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navigation button:hover {
    background-color: #555;
}
/* Contact Icons Styles */
.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between icons */
    padding: 20px 0; /* Padding for spacing */
}

.contact-icons a img {
    width: 50px; /* Icon size */
    height: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-icons a:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow on hover */
}


/* Content Styles */
.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #FAFAFA;
}

.content img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content div {
    flex: 1;
    margin: 10px;
    max-width: 600px;
}

.content h1, .content h2 {
    margin: 10px 0;
}

.content a {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.content a:hover {
    background-color: #555;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .header h1 {
        font-size: 1.5em;
    }

    .header img {
        width: 30px;
    }

    .navigation button {
        padding: 8px 12px;
    }
}

/* Gallery Styles */
#gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    padding: 20px;
    background-color: #EEE;
}

#gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.9em;
}

.footer .social-icons {
    margin: 5px 0;
}

.footer .social-icons a {
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.footer .social-icons a:hover {
    color: #FFA500;
}
