body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #5c5d97;
   
}


header {
    background-color: #fff;
    padding: 1rem 0;
}

nav {
    background-color: #5c5d97;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

nav ul li a:hover {
    background-color: #666;
    transition: background-color 0.3s ease;
}

/* Section Layout */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
   
}

/* Row Container */
.row-container {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    background-image: url(images/WhatsApp\ Image\ 2024-08-25\ at\ 19.14.20_8a117a4b.jpg);
    font-weight: 300;
    color:#f6f1f1;
}

.row-container > div{
    flex: 1;
    margin: 10px;
    padding:20px;
    border: 1px solid #ddd;
    
}
/* Gallery Styling */
#gallery img {
    flex:1;
    width: 20%;
    height: 200px;
    margin: 20px;
} 

#gallery {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    
}

form label {
    margin-bottom: 5px;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

form button {
    padding: 10px;
    background-color: #060303;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #555;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1px;
    background-color:#141010;
    color: #efe7e7;
    position:relative;
    width: 100%;
    bottom: 0;
}

/* Parallax Section */
.parallax {
    background-image: url(images/WhatsApp\ Image\ 2024-08-25\ at\ 19.14.20_8a117a4b.jpg);
    height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: larger;
}

h1, p {
    margin: 0;
    padding: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .parallax {
        height: 30vh;
    }

    #gallery img {
        max-width: 30%;
    }
}

.social-list{
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 2em 0 0;
    padding: 0;
}

.social-list__item {
    margin:0 .5em
}

.social-list__link {
    padding: .5em
}