/* General Body and Page Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* Social Media Bar */
.social-bar {
    display: flex;
    justify-content:center;
    padding: 10px 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icon {
    margin: 0 25px; /* Increase space between icons */
    color: #333;
    text-decoration: none;
    font-size: 45px; /* Increase icon size */
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #F48600;
}

/* Full-Width Header Styling */
header {
    position: relative; /* Position relative for absolute positioning of inner elements */
}

/* Header Image */
.header-image {
    width: 100%; /* Make the image full-width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom space */
}

/* Grid Container for Main Section */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.grid-item {
    position: relative;
    margin: 20px;
    width: 400px; /* Narrower width */
    height: 500px; /* Increased height */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.grid-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.04);
}

/* Overlay Styling */
.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .overlay {
    opacity: 1;
}

div1{
	align-content: center;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

