

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6e7dff, #fca5a5); /* Gradient background */
 
}
#GalleryPage {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #e74c3c;
}
/* .Main-gallery-header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */
/* .Main-header-div{
    position: unset !important;
} */
.Main-gallery-footer {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
.gallery-container {
    max-width: 100%;
    margin-top: 200px;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.video-section {
    margin-bottom: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 10px;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item video {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.video-item:hover video {
    transform: scale(1.05);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
