/* ============================================================
   MIRA DIVISION — GLOBAL CSS (TOP TIER REWRITE)
   Cyberpunk: Black / Cyan / Orange / White
   Responsive • Centralized • Professional • Animated
   ============================================================ */

@font-face {
    font-family: 'SwanseaBold';
    src: url('../fonts/SwanseaBold-D0ox.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Swansea';
    src: url('../fonts/Swansea-q3pd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZeroesOne';
    src: url('../fonts/ZeroesOne.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Variables ── */
:root {
    /* Colors */
    --black: #0D0D0D;
    --dark-bg: #1A1A1A;
    --card-bg: rgba(26, 26, 26, 0.85);
    --cyan: #00FFFF;
    --orange: #FF5500;
    --white: #FFFFFF;
    --gray-dim: rgba(255, 255, 255, 0.6);
    
    /* Glow effects */
    --cyan-glow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 30px rgba(0, 255, 255, 0.3);
    --orange-glow: 0 0 10px rgba(255, 85, 0, 0.7), 0 0 30px rgba(255, 85, 0, 0.3);
    --white-glow: 0 0 15px rgba(255, 255, 255, 0.5);
    
    /* Typography */
    --font-heading: 'ZeroesOne', 'Courier New', monospace;  /* Titles, headings, UI */
    --font-body: 'Swansea', 'Inter', sans-serif;            /* Normal text */
    --font-bold: 'SwanseaBold', 'Swansea', sans-serif;      /* Emphasized text */
    --font-mono: 'Courier New', 'Lucida Console', monospace;
    
    /* Spacing */
    --header-h: 70px;
    --container-max: 1200px;
    --grid-gap: 28px;
    --section-spacing: 50px;
    
    /* Effects */
    --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius-card: 24px;
    --border-radius-btn: 12px;
    --border-radius-pill: 50px;
    
    /* Shadows */
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 20px 40px -8px rgba(0, 255, 255, 0.15), 0 0 0 1px rgba(0, 255, 255, 0.1);
    --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.6);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);   /* ← Swansea for body text */
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 85, 0, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.01) 2px, rgba(0, 255, 255, 0.01) 4px);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);   /* ← ZeroesOne for headings */
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(0.9rem, 2vw, 1.1rem); }

.section-heading {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-family: var(--font-heading);
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.section-heading::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: var(--cyan-glow);
}

p {
    color: var(--gray-dim);
    margin-bottom: 1em;
    font-family: var(--font-body);   /* ← Swansea */
    font-size: 0.95rem;
    font-weight: 400;
}

strong {
    color: var(--white);
    font-family: var(--font-bold);   /* ← SwanseaBold */
    font-weight: 700;
    font-size: 1rem;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition-smooth), text-shadow var(--transition-smooth);
}

a:hover {
    color: var(--orange);
    text-shadow: var(--orange-glow);
}

ul {
    list-style: none;
}

/* ── Main Layout ── */
main {
    flex: 1;
    padding: var(--header-h) 0 80px 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-container {
    width: 100%;
    margin-bottom: var(--section-spacing);
}

/* ══════════════════════════════════════
   HEADER (FIXED, CENTERED, GLASS)
══════════════════════════════════════ */
.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: var(--shadow-header);
}

.cabecalho::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--orange) 20%,
        var(--cyan) 50%,
        var(--orange) 80%,
        transparent);
    background-size: 200% 100%;
    animation: borderScan 5s linear infinite;
    opacity: 0.7;
}

@keyframes borderScan {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.Menu ul {
    display: flex;
    gap: 4px;
}

.Menu ul li a {
    font-family: var(--font-heading);   /* ← ZeroesOne for nav */
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--border-radius-pill);
    border: 1px solid transparent;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.Menu ul li a:hover,
.Menu ul li a.active {
    color: var(--cyan);
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    text-shadow: var(--cyan-glow);
}

.Menu ul li a[href="academiraplus.html"] {
    color: var(--orange);
    border-color: rgba(255, 85, 0, 0.4);
    background: rgba(255, 85, 0, 0.08);
    box-shadow: 0 0 18px rgba(255, 85, 0, 0.35);
}

.Menu ul li a[href="academiraplus.html"]:hover {
    color: var(--black);
    background: rgba(255, 140, 30, 0.18);
    border-color: rgba(255, 140, 30, 0.6);
    text-shadow: 0 0 15px rgba(255, 140, 30, 0.8);
    box-shadow: 0 0 30px rgba(255, 140, 30, 0.7);
}

/* EasyAim BENCHMARK Button - Cyan Shine */
.Menu ul li a[href*="easyaim-bench"] {
    color: var(--cyan);
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.4), inset 0 0 8px rgba(0, 255, 255, 0.15);
    animation: easyaimPulse 2s ease-in-out infinite;
}

.Menu ul li a[href*="easyaim-bench"]:hover {
    color: var(--black);
    background: var(--cyan);
    border-color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.7), inset 0 0 15px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

@keyframes easyaimPulse {
    0%, 100% {
        box-shadow: 0 0 18px rgba(0, 255, 255, 0.4), inset 0 0 8px rgba(0, 255, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.7), inset 0 0 15px rgba(0, 255, 255, 0.3);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Login Button */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);   /* ← ZeroesOne */
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--orange);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--orange-glow);
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.login-btn:hover {
    background: var(--cyan);
    color: var(--black);
    box-shadow: var(--cyan-glow);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: rgba(13, 13, 13, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 40px 24px;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer .socials h4 {
    color: var(--cyan);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: var(--cyan-glow);
    font-family: var(--font-heading);
}

.footer .icons {
    display: flex;
    gap: 16px;
}

.footer .icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    color: var(--white);
    font-size: 1.2rem;
    background: rgba(0, 255, 255, 0.03);
    border-radius: var(--border-radius-btn);
    transition: all var(--transition-smooth);
}

.footer .icons a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
    box-shadow: var(--orange-glow);
    transform: translateY(-3px);
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.3;
}

.footer .copyright p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font-body);
}

/* ══════════════════════════════════════
   FLOATING SECTION (Universal Card)
══════════════════════════════════════ */
.floating-section {
    position: relative;
    padding: 48px 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--transition-smooth);
    max-width: 900px;
    margin: 0 auto;
}

.floating-section:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: var(--shadow-card-hover);
}

.floating-element {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 85, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.section-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-content h1 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

.section-content h1::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    height: 2px;
    width: 70px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: var(--cyan-glow);
}

.section-content p {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-body);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.resource-btn,
.academira-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);   /* ← ZeroesOne for buttons */
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--orange);
    border: 1px solid transparent;
    padding: 14px 32px;
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--orange-glow);
    font-weight: 600;
    transition: all var(--transition-smooth);
    min-width: 160px;
    border: 1px solid transparent;
}

.resource-btn:hover,
.academira-btn:hover {
    background: var(--cyan);
    color: var(--black);
    box-shadow: var(--cyan-glow);
    transform: translateY(-3px);
}

.resource-btn i,
.academira-btn i {
    font-size: 0.9rem;
}

/* Outline variant */
.academira-btn.outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: var(--orange-glow);
}

.academira-btn.outline:hover {
    background: var(--orange);
    color: var(--black);
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.1, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.1, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveals for grids */
.members-grid .member-card.reveal,
.resources-grid .resource-card.reveal,
.partners-grid .partner-card.reveal {
    transition-delay: 0s;
}

.members-grid .member-card:nth-child(2).reveal,
.resources-grid .resource-card:nth-child(2).reveal,
.partners-grid .partner-card:nth-child(2).reveal { transition-delay: 0.06s; }
.members-grid .member-card:nth-child(3).reveal,
.resources-grid .resource-card:nth-child(3).reveal,
.partners-grid .partner-card:nth-child(3).reveal { transition-delay: 0.12s; }
.members-grid .member-card:nth-child(4).reveal,
.resources-grid .resource-card:nth-child(4).reveal,
.partners-grid .partner-card:nth-child(4).reveal { transition-delay: 0.18s; }

/* ══════════════════════════════════════
   MAGNETIC BUTTON
══════════════════════════════════════ */
.magnetic-btn {
    position: relative;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.1, 1);
    will-change: transform;
}

.magnetic-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.1, 1);
}

/* ══════════════════════════════════════
   TILT CARD (3D Hover)
══════════════════════════════════════ */
.tilt-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: var(--shadow-card-hover);
}

/* ══════════════════════════════════════
   STATS BAR (Home Page)
══════════════════════════════════════ */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 6vw, 60px);
    margin-top: 32px;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);   /* ← ZeroesOne for numbers */
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-dim);
    font-family: var(--font-body);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
    opacity: 0.4;
}

/* ══════════════════════════════════════
   GRIDS
══════════════════════════════════════ */
.members-grid,
.resources-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--grid-gap);
    margin-top: 32px;
    width: 100%;
}

.partners-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), var(--cyan));
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --header-h: auto;
        --grid-gap: 20px;
        --section-spacing: 40px;
    }
    
    .cabecalho {
        flex-direction: column;
        padding: 12px 16px;
        height: auto;
        gap: 12px;
    }
    
    .Menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .Menu ul li a {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    main {
        padding: 140px 16px 60px;
    }
    
    .floating-section {
        padding: 36px 24px;
    }
    
    .stats-bar {
        padding: 16px 24px;
        gap: 20px;
    }
    
    .footer {
        padding: 30px 16px;
    }
}

@media (max-width: 480px) {
    .section-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 16px;
        border-radius: var(--border-radius-card);
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .resource-btn,
    .academira-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/* ===== UNIVERSAL LARGE TYPOGRAPHY ===== */
h1, .floating-section .section-content h1 {
    font-size: clamp(2.8rem, 10vw, 5rem) !important;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-heading);
}

h2, .section-heading {
    font-size: clamp(2.2rem, 7vw, 3.8rem) !important;
    font-family: var(--font-heading);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    font-family: var(--font-heading);
}

/* ============================================================
   CYBERPUNK CUSTOM CURSOR
   ============================================================ */

/* Hide default cursor everywhere */
* {
    cursor: none !important;
}

/* Custom cursor container */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
}

/* Crosshair shape */
.cursor-crosshair {
    width: 32px;
    height: 32px;
    position: relative;
}

.cursor-crosshair::before,
.cursor-crosshair::after {
    content: '';
    position: absolute;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
}

/* Horizontal line */
.cursor-crosshair::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical line */
.cursor-crosshair::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Center dot */
.cursor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--orange), 0 0 30px var(--orange);
    transition: transform 0.15s ease;
}

/* Trail rings (optional) */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: trailFade 0.5s forwards;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

@keyframes trailFade {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); }
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
    * { cursor: auto !important; }
    .cursor, .cursor-trail { display: none; }
}

/* ============================================================
   MOBILE NAVIGATION (HAMBURGER)
   ============================================================ */

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 768px) {
    .cabecalho {
        flex-wrap: wrap;
        padding: 15px 20px;
        height: auto;
    }

    /* Hide the regular nav by default */
    .Menu ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        padding: 20px 0;
        margin-top: 15px;
        border: 1px solid rgba(0, 255, 255, 0.2);
    }

    /* Show when checkbox is checked */
    #mobile-menu-toggle:checked ~ .Menu ul {
        display: flex;
    }

    .Menu ul li {
        width: 100%;
        text-align: center;
    }

    .Menu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
        white-space: normal;
    }

    /* Hamburger icon */
    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        color: var(--cyan);
        text-shadow: var(--cyan-glow);
        cursor: pointer;
        order: -1;
    }

    /* Hide the checkbox */
    #mobile-menu-toggle {
        display: none;
    }

    /* Move header actions to the right */
    .cabecalho {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cabecalho .header-actions {
        margin-left: auto;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    main {
        padding: 100px 16px 50px;
    }
    .section-container {
        margin-bottom: 30px;
    }
    .floating-section {
        padding: 30px 20px;
    }
    .footer {
        padding: 30px 16px;
    }
}

#mobile-menu-toggle {
        display: none;
}
/* Extra spacing for the first section on internal pages */
.first-section {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .first-section {
        margin-top: 30px;
    }
}