/* GEM 2028 MASTER STYLESHEET */
body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; background-color: #f4f7f6; }
header { background-color: #1a237e; color: white; padding: 4rem 2rem; text-align: center; border-bottom: 5px solid #ff4081; }
h1 { font-size: 3.5rem; margin: 0; letter-spacing: 2px; text-transform: uppercase; }
.subtitle { font-size: 1.5rem; font-style: italic; margin-top: 10px; color: #c5cae9; }
.container { max-width: 900px; margin: 0 auto; padding: 2rem; }
.section { background: white; padding: 2rem; border-radius: 8px; margin-bottom: 2rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
h2 { color: #1a237e; border-bottom: 2px solid #3f51b5; padding-bottom: 10px; }
.platform-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media(min-width: 768px) { .platform-grid { grid-template-columns: 1fr 1fr; } }
.platform-card { padding: 1.5rem; border: 1px solid #e0e0e0; border-radius: 5px; border-left: 5px solid #3f51b5; background-color: #fafafa; }
.platform-card h3 { margin-top: 0; color: #ff4081; }
.btn { display: inline-block; background-color: #ff4081; color: white; padding: 15px 30px; text-decoration: none; font-size: 1.2rem; border-radius: 50px; font-weight: bold; margin-top: 20px; transition: background 0.3s; }
.btn:hover { background-color: #e91e63; }
footer { text-align: center; padding: 2rem; background-color: #333; color: white; font-size: 0.9rem; }
/* =========================================
   MASTER NAVIGATION STYLES
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a237e; /* Deep navy to match your brand */
    padding: 15px 20px;
    color: white;
    position: relative;
    z-index: 1000;
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    list-style-type: none; /* Kills the bullet points */
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style-type: none; /* Double-tap to ensure no bullets */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4081; /* Neon pink hover effect */
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* =========================================
   OFFICIAL DOCUMENT STYLES (DEP)
   ========================================= */
.dep-document {
    background-color: #fdfaf5;
    border: 2px solid #1a237e;
    padding: 3rem 2rem;
    margin-top: 2rem;
    position: relative;
    box-shadow: 5px 5px 0px #1a237e;
}

.dep-document::before {
    content: "OFFICIAL PLATFORM";
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ff4081;
    font-weight: bold;
    border: 3px solid #ff4081;
    padding: 5px 10px;
    transform: rotate(15deg);
    opacity: 0.7;
    letter-spacing: 2px;
}


/* =========================================
   MOBILE RESPONSIVE NAVIGATION
   ========================================= */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block; 
    }

    .nav-links {
        display: none; /* Hides the menu by default */
        flex-direction: column;
        width: 100%;
        background-color: #1a237e; 
        position: absolute;
        top: 60px; 
        left: 0;
        text-align: center;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        padding: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    /* JavaScript toggles this class to make the menu drop down */
    .nav-links.active {
        display: flex; 
    }
}



/* =========================================
   MOBILE HEADER FIX (Shrinks giant text)
   ========================================= */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2.2rem; 
        word-wrap: break-word; 
        padding: 0 10px; 
    }
}

