﻿:root {
    --bg-deep: #030a16;
    --gold-primary: #D4AF37;
    --gold-light: #F9E076;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.floating-nav {
    display: flex; /* Ensure it's not display: none */
    opacity: 1; /* Ensure it's not opacity: 0 */
    transform: translateY(0); /* Ensure it's not moved off-screen */
    position: fixed; /* Keeps it at the top while scrolling */
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex background: rgba(3, 10, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: 100px;
}


    .floating-nav.visible {
        top: 0;
    }

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    margin-left: auto;
    align-items: center;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: var(--transition-smooth);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold-primary);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

    .nav-links li:last-child {
        margin-left: 1rem;
    }


.btn-enter {
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

    .btn-enter:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
        color: black;
    }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.hero-header {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.pup-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.header-text {
    display: flex;
    flex-direction: column;
}

.uni-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.campus-name {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}


.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 150px;
    color: #fff;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview {
    max-width: 1300px;
    margin: 0 auto; /* Centers the container horizontally */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Centers content horizontally in flex */
    justify-content: center; /* Centers content vertically in flex */
    text-align: center; /* Centers the actual text */
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.user-role {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.1rem;
    align-items: center;
    text-align: center;
    margin-top: 60px
}

.ur {
    text-align: center;
    margin-bottom: 0.5rem;
}



.about-mv {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    align-items: center;
    margin-top: 0;
}
/*mv-space*/
.section-spacing {
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.MV-grid {
    display: grid;
    /* Define 2 columns with a fixed width so they don't grow with text */
    grid-template-columns: repeat(2, 700px);
    justify-content: center; /* Centers the entire 2-column grid in the section */
    align-items: start; /* Prevents cards from stretching vertically */
    gap: 3rem;
    margin-top: 0; /* Removed the -5rem which often causes layout confusion */
    margin-bottom: -5rem;
}

.mv-card h3 {
    margin-bottom: 20px; /* Adjust this value to increase/decrease the gap */
    color: var(--gold-primary); /* Optional: keeps your gold theme consistent */
    font-weight: 700;
    letter-spacing: 1px;
}


.mv-card {
    padding: 2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    justify-content: center;
    text-align: center;
    transition: var(--transition-smooth);
    align-items: center;
    margin-bottom: 0.9rem;
    margin-top: 0;
}



    .mv-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
    }


.info-container {
    max-width: 1600px;
    margin: 60px auto;
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    margin-bottom: 90px
}

    .info-container:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 80px; /* invisible divider */
    row-gap: 28px;
    text-align: center;
}



.label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.value {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */

.footer {
    /* Using your provided container design */
    width: 100%;
    padding: 2rem 3rem;
    /*    background: var(--glass-bg);*/
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    /*    border-radius: 10px;
    margin: 40px 20px;*/
    transition: var(--transition-smooth);
    color: white;
    font-family: sans-serif;
    margin-top: auto;
    background: var(--glass-bg, rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}



.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Sections Styling */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

    .footer-section.left {
        align-items: flex-start;
    }

    .footer-section.right {
        align-items: flex-end;
    }

    /* Left Section: Text and Logo */
    .footer-section h3 {
        margin: 0 0 10px 0;
        font-size: 1.2rem;
        font-weight: bold;
    }
/* Wrapper para sa Logo at Text */
.footer-brand {
    display: flex;
    align-items: center; /* Pantay na vertical alignment */
    gap: 15px; /* Puwang sa pagitan ng logo at text */
}

    /* Siguraduhin na walang extra margin ang text na sisira sa alignment */
    .footer-brand h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: bold;
        color: white; /* O gamitin ang var(--gold-primary) kung gusto mong gold ang text */
    }

/* Optional: Baguhin ang sukat ng logo circle kung kailangan */
.footer-logo-circle {
    width: 50px;
    height: 50px;
    flex-shrink: 0; /* Para hindi mapitpit ang logo */
}

    .footer-logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.footer-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

    .footer-logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Center Section: Copyright */
.footer-section.center p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Right Section: Icons */
.footer-section h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.social-icons .icon {
    font-size: 24px; /* Change size */
    text-decoration: none;
    margin-right: 15px;
}

.fb i {
    color: #1877F2; /* Official Facebook blue */
}

.mail i {
    color: #ea4335; /* Email red (optional) */
}

.icon:hover i {
    opacity: 0.7; /* Simple hover effect */
}


/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

    .feature-icon.qr-code {
        background: rgba(139, 92, 246, 0.1);
        border: 1px solid rgba(139, 92, 246, 0.3);
        color: #a78bfa;
    }

    .feature-icon.payment {
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
        color: #4ade80;
    }

    .feature-icon.analytics {
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.3);
        color: #60a5fa;
    }

    .feature-icon.events {
        background: rgba(236, 72, 153, 0.1);
        border: 1px solid rgba(236, 72, 153, 0.3);
        color: #f472b6;
    }

    .feature-icon.records {
        background: rgba(251, 146, 60, 0.1);
        border: 1px solid rgba(251, 146, 60, 0.3);
        color: #fb923c;
    }

    .feature-icon.security {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid var(--gold-primary);
        color: var(--gold-primary);
    }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

    .feature-stat i {
        color: var(--gold-primary);
        font-size: 1.1rem;
    }

/* Interactive Hover Effect */
.interactive-hover {
    cursor: pointer;
}

    .interactive-hover:hover .feature-stat {
        color: var(--gold-primary);
    }

        .interactive-hover:hover .feature-stat i {
            animation: pulse 1s infinite;
        }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


/* Interactive Hover Effect */
.interactive-hover {
    cursor: pointer;
}

    .interactive-hover:hover .feature-stat {
        color: var(--gold-primary);
    }

        .interactive-hover:hover .feature-stat i {
            animation: pulse 1s infinite;
        }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================================
   AOS ANIMATION LIBRARY SUPPORT
   ============================================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

[data-aos="fade-up"] {
    transform: translateY(50px);
}

    [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

    [data-aos="fade-right"].aos-animate {
        transform: translateX(0);
    }

[data-aos="fade-left"] {
    transform: translateX(50px);
}

    [data-aos="fade-left"].aos-animate {
        transform: translateX(0);
    }

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

    [data-aos="zoom-in"].aos-animate {
        transform: scale(1);
    }
