/* General Styles */
:root {
    --accent-color: yellow;
    --blue: #007bff;
    --blue-hover: #0056b3;
    --blue-2: #00bbff;
}


body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.accent {
    color: var(--accent-color);
    font-weight: bold;
}


/* Background Effects */
#gradient-bg,
#vanta-bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

#gradient-bg {
    /* background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); */
    background: linear-gradient(352deg, rgba(2,0,36,1) 0%, rgba(0,212,255,1) 0%, rgba(10, 99, 189) 13%, rgba(14,55,163,1) 35%, rgba(20,9,121,1) 68%);
    z-index: -2;
}

#vanta-bg {
    z-index: -1;
}

/* Sidebar Menu */
.menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu a {
    color: white;
    opacity: .5;
    text-decoration: none;
    font-size: 24px;
    margin: 15px 0;
    transition: transform 0.3s, color 0.3s;
}

.menu a:hover {
    color: var(--accent-color) !important;
    opacity: 1;
    transform: scale(1.5);
}

.menu a.active {
    color: white;
    opacity: 1;
    transform: scale(1.5);
}

/* Main Content Layout */
.main-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
    margin-left: 80px;
    /* Leaves space for the fixed menu */
}

.content {
    flex-grow: 1;
    padding: 40px;
    color: #f0f0f0;
    max-width: 100%;
    overflow-y: auto;
    min-height: 0;
    /* Ensures content does not push footer offscreen */
}


/* Footer */
.footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footer p {
    margin: 0.75rem;
    color: white;
}

.footer p a {
    color: white;
    margin: 0 0.25rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer span {
    opacity: 0.5;
}

.footer p a i {
    opacity: 0.5;
    /* Start at 50% opacity */
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-left: .25rem;
    margin-right: .25rem;
}

.footer p a:hover i {
    color: var(--accent-color);
    opacity: 1;
    /* Ensure full opacity on hover */
    transform: scale(1.3);
}

.blur-group-container {
    pointer-events: none;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping when needed */
    justify-content: center; /* Center contents horizontally */
    gap: 1.5rem; /* Adds equal spacing between cards */
    padding: 20px;
}

.blur-group-container > * {
    pointer-events: auto;
    transition: .2s;
}

.blur-group-container:hover > *,
.blur-group-container:focus-within > * {
    opacity: 0.3;
    filter: blur(3px);
}

.blur-group-container:hover > :hover,
.blur-group-container:focus-within > :focus {
    opacity: 1;
    outline: none;
    filter: blur(0px);
    transform: scale(1.1);
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}



.pointer {
    cursor: pointer;
}

.mb-1 {
    margin-bottom: 1rem !important;
}
.mb-2 {
    margin-bottom: 2rem !important;
}
.mb-3 {
    margin-bottom: 3rem !important;
}
.ms-1 {
    margin-left: 1rem !important;
}
.ms-2 {
    margin-left: 2rem !important;
}
.bold {
    font-weight: bold;
}
.ls-1 {
    letter-spacing: 1px !important;
}
.ls-1-5 {
    letter-spacing: 1.5px !important;
}
.ls-2 {
    letter-spacing: 2px !important;
}
.ls-2-5 {
    letter-spacing: 2.5px !important;
}
.lh-1 {
    line-height: 1 !important;
}
.lh-1-25 {
    line-height: 1.25 !important;
}
.lh-1-5 {
    line-height: 1.5 !important;
}
.lh-1-75 {
    line-height: 1.75 !important;
}
.lh-2 {
    line-height: 2 !important;
}
.lh-2-5 {
    line-height: 2.5 !important;
}
.lh-3 {
    line-height: 3 !important;
}
.text-emphasis {
    color: var(--accent-color);
    font-weight: bold;
}
.fs-n25 {
    font-size: 0.5rem !important;
}
.fs-n5 {
    font-size: 0.5rem !important;
}
.fs-n75 {
    font-size: 0.75rem !important;
}
.fs-1 {
    font-size: 1rem !important;
}
.fs-1-25 {
    font-size: 1.25rem !important;
}
.fs-1-5 {
    font-size: 1.5rem !important;
}
.fs-1-75 {
    font-size: 1.75rem !important;
}
.fs-2 {
    font-size: 2rem !important;
}

.page-title {
    color: var(--accent-color);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    margin-top: 1rem;
    text-align: center;
}
.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.75rem;
    text-align: center;
}
.section-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.section-content {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.75rem;
    text-align: center;
}
