/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f5f5; /* Light grey */
    color: #333;
}

/* Header */
header {
    background: #800000; /* Maroon */
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: #4a4a4a; /* Dark grey */
    border-radius: 10px;
    overflow: hidden;
}

nav ul li {
    padding: 12px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.selected {
    color: #800000;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    position: absolute;
    left: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.image_container {
    position: relative;
    text-align: center;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

.screen_image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: blur(5px); /* Light blur for effect */
}

/* Text on Hero Image */
.text_on_image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    background: rgba(128, 0, 0, 0.7); /* Maroon glass effect */
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 80%;
    text-align: center;
}

/* Bubble Buttons */
.bubbles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}
.bubbles a{
    color: #ffffff;
}
.bubbles div {
    padding: 24px 24px;
    background: maroon;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.9s;
    
















































    }

.bubbles div:hover {
    background: white;
    color: maroon;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* About Page */
.about-container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    color: #800000;
    font-size: 24px;
    border-left: 5px solid maroon;
    padding-left: 10px;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Gallery Section */
.gallery {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.gallery h2 {
    color: #800000;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter {
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    background: maroon;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.filter:hover {
    background: white;
    color: maroon;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 14px;
    margin-top: auto;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #333;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-active {
        display: flex !important;
    }

    .text_on_image {
        font-size: 1.5rem;
        padding: 15px 30px;
        width: 90%;
    }

    .bubbles {
        flex-direction: column;
    }

    .bubbles div {
        font-size: 1rem;
        padding: 10px 20px;
        width: 50%;
        justify-self: center;
        left: 40%;
        display: block;
        align-self: center;
    }
    .bubbles a{
        color: white;
        font-size: x-large;
        font-style: none;
        list-style: none;
    }
}

/* Projects Page */
.projects-container,.events-container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.projects-content h2,.events-content h2 {
    color: #800000;
    font-size: 24px;
    border-left: 5px solid maroon;
    padding-left: 10px;
    margin-bottom: 10px;
}

.projects-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
