    
        :root {
            --primary: #000000;
            --secondary: #FFC107;
            --accent: #FFEB3B;
            --light: #F5F5F5;
            --dark: #212121;
            --gray: #757575;
            --white: #FFFFFF;
            --delete-color: #dc3545;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: url('../images/first.png') no-repeat center center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            background-size: cover;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        /* HAMBURGER BUTTON (Mobile Only) */



/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: black;
    color: white;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: right 0.3s ease;
    z-index: 1500;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--secondary);
}

/* CLOSE BUTTON */
.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* SHOW MENU */
.mobile-menu.active {
    right: 0;
}

/* SHOW HAMBURGER ON MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav .nav-links {
        display: none;
    }
}



        .logo {
            font-family: 'Fredoka', cursive;
            font-size: 1.8rem;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }

        .logo img {
            margin-right: 10px;
            height: 40px;
            width: auto;
            vertical-align: middle;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
    /* DESKTOP IMAGE */
    background: linear-gradient(#00000099, rgba(0, 0, 0, 0.6)),
                url('../images/ump1.jpg');
    background-size: cover;
    background-position: center;

    /* keep everything else */
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        /* MOBILE IMAGE */
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                    url('../images/ump.jpg');
        background-size: cover;
        background-position: center;
    }
}


        .hero h1 {
            font-family: 'Fredoka', cursive;
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--secondary);
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 2;
        }

        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 193, 7, 0.1);
            animation: float 15s infinite ease-in-out;
        }

        .bubble:nth-child(1) {
            width: 80px;
            height: 80px;
            left: 10%;
            top: 20%;
            animation-duration: 12s;
        }

        .bubble:nth-child(2) {
            width: 120px;
            height: 120px;
            left: 70%;
            top: 60%;
            animation-duration: 18s;
        }

        .bubble:nth-child(3) {
            width: 60px;
            height: 60px;
            left: 40%;
            top: 80%;
            animation-duration: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
            position: relative;
        }

        .section-title {
            font-family: 'Fredoka', cursive;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--white);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background-color: var(--secondary);
            border-radius: 10px;
        }

        /* About Section */
        .about {
            background-image: url('../images/second.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .about .container {
            position: relative;
            z-index: 2;
        }

        .about .section-title {
            color: var(--white);
        }

        .about .section-title::after {
            background-color: var(--secondary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--secondary);
        }

        .about-text p {
            margin-bottom: 1rem;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 4px solid var(--secondary);
        }

        /* Past Events Section */
        .past-events {
            background-image: url('../images/third.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .past-events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            z-index: 1;
        }

        .past-events .container {
            position: relative;
            z-index: 2;
        }

        /* Upcoming Events Section */
        .upcoming {
            background-image: url('../images/fourth.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .upcoming::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            z-index: 1;
        }

        .upcoming .container {
            position: relative;
            z-index: 2;
        }

        /* Events Container */
        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .event-card {
            background-color: var(--primary);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .event-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 193, 7, 0.5);
        }

        .event-image {
            height: 200px;
            background-color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-title {
            font-family: 'Fredoka', cursive;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .event-date {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .event-date i {
            margin-right: 8px;
            color: var(--secondary);
        }

        .event-description {
            margin-bottom: 1rem;
            color: var(--white);
        }

        .event-link {
            display: inline-flex;
            align-items: center;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

        .event-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .event-link:hover {
            color: var(--accent);
        }

        .event-link:hover i {
            transform: translateX(5px);
        }

        .delete-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--delete-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            z-index: 10;
        }

        .delete-btn:hover {
            transform: scale(1.1);
            background-color: #c82333;
        }

        /* Footer */
        footer {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/umpsa2.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-family: 'Fredoka', cursive;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--primary);
            border-radius: 15px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s;
            border: 1px solid rgba(255, 193, 7, 0.5);
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-family: 'Fredoka', cursive;
            font-size: 1.8rem;
            color: var(--secondary);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--secondary);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border: 3px solid var(--secondary);
        }

        .modal-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .modal-info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
        }

        .modal-info-item i {
            color: var(--secondary);
        }

        .modal-description {
            color: var(--white);
        }

        .modal-body p {
            color: #ffffff !important;
        }


        /* Loading Spinner */
        .spinner {
            display: inline-block;
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--white);
            animation: spin 1s ease-in-out infinite;
            margin: 0 auto;
            display: block;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .events-container {
                grid-template-columns: 1fr;
            }
        }

        /* Clean thin text outline */
    

    /* Clean logo shadow for PNG */
    .logo img {
    filter: drop-shadow(2px 2px 2px black);
    }

    header .logo a,
    header .logo span {
    text-shadow: 0 0 2px #000;
    }

    .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 14px;
    z-index: 2000;
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: #000;
    margin: 2px 0;
    border-radius: 5px;
}


.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: black;       /* SOLID background so it blocks clicks */
    padding: 10px 15px;      /* Bigger tap area */
    border-radius: 8px;      /* Optional – looks nicer */
    border: none;
    color: white;
    cursor: pointer;
    z-index: 5000;           /* Always on top of hamburger */
}


.mobile-menu.active {
    right: 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none; /* hide top links on mobile */
    }
}




    