/*
|-------------------------------------------------------------------------------
| 1. Base / Global Styles
|-------------------------------------------------------------------------------
|
|   These styles affect the entire document and provide a foundational reset
|   and basic typography definitions.
|
*/

/* Box-sizing reset for a consistent box model */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Universal reset for default browser styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
hgroup,
menu,
nav,
section {
    display: block;
}

/* Base line-height for body */
body {
    line-height: 1.5;
}

/* Remove default list styles */
ol,
ul {
    list-style: none;
}

/* Remove default quote styles */
blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* Table collapse */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Base body styles */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Satoshi-Variable', sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: #111;
    background-image: url('./imgs/base.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative; /* Needed for absolute positioning of delta symbol */
}

/* Paragraph default spacing and line height */
p, ul{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1.2rem!important;
    font-weight: 400;
}

.fileInfo{
  font-size:1rem!important;
  }
  
 table {
      width: 100%;
      border-collapse: collapse;
      color: #fff;
    }
    th{
      font-weight:800!important;
      text-align: right;
      }

    th, td {
      padding: 12px;
      border-bottom: 1px solid red;
    }

    td:first-child {
      width: 200px;
    }



/*
|-------------------------------------------------------------------------------
| 2. Typography
|-------------------------------------------------------------------------------
|
|   Definitions for fonts and heading styles.
|
*/

/* Font-face definitions */
@font-face {
    font-family: 'Geometos Rounded';
    src: url('/fonts/GeometosRounded.woff') format('woff'),
        url('/fonts/GeometosRounded.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi-Variable';
    src: url('/fonts/Satoshi-Variable.woff2') format('woff2'),
        url('/fonts/Satoshi-Variable.woff') format('woff'),
        url('/fonts/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi-VariableItalic';
    src: url('/fonts/Satoshi-VariableItalic.woff2') format('woff2'),
        url('/fonts/Satoshi-VariableItalic.woff') format('woff'),
        url('/fonts/Satoshi-VariableItalic.ttf') format('truetype');
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

/* Heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi-Variable', sans-serif;
    color: white;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
}

h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

h5 {
    font-size: 1.4rem;
    font-weight: 500;
}

h6 {
    font-size: 1.1rem;
    font-weight: 400;
}

/*
|-------------------------------------------------------------------------------
| 3. Layout / Grid
|-------------------------------------------------------------------------------
|
|   Styles related to overall page structure, container, rows, and column grid.
|
*/

/* Container for centering content and applying horizontal padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Row for flexbox layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem; /* Negative margin to offset column padding (gutter) */
    margin-right: -0.5rem; /* Negative margin to offset column padding (gutter) */
}

/* Base column styles - apply padding for gutters */
[class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box; /* Include padding in the element's total width */
}

/* Default columns (full width on extra small screens) */
.col-12 {
    width: 100%;
}

/*
|-------------------------------------------------------------------------------
| 4. Components
|-------------------------------------------------------------------------------
|
|   Specific styles for distinct UI components like navbar, logo, etc.
|
*/

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /* 80% transparent black background */
    z-index: 10;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.nav-link {
    position: relative;
    color: red;
    text-decoration: none;
    font-weight: 400;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: red;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: red;
}

.logo {
    font-size: 1.5rem;
    font-family: 'Geometos Rounded';
    letter-spacing: 1em;
    color: red;
}

.glitch-letter {
    display: inline-block;
    animation: glitch-flip 10.2s infinite;
    letter-spacing: 0;
}

@keyframes glitch-flip {
    0%,
    100% {
        transform: scaleX(1);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: scaleX(-1);
    }

    20%,
    40%,
    60%,
    80% {
        transform: scaleX(1);
    }
}

.delta-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center horizontally and vertically */
    font-size: 50vw; /* Responsive to viewport width */
    color: red;
    filter: blur(10px); /* Blurred effect */
    opacity: 0.2; /* Subtle effect */
    z-index: 1; /* Place it behind the content */
    pointer-events: none; /* Ensure it doesn't block interactions */
    line-height: 1; /* Prevent extra space around the symbol */
}

.page-content {
    padding-top: 100px; /* Default padding to account for fixed navbar */
    color: #eee; /* Example text color for content */
    position: relative; /* Needed for z-index context */
    z-index: 2; /* Ensure content is above the delta symbol */
}

/* Responsive video embed container */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100%) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000; /* Fallback background for empty space */
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed,
.video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Rounded container */
.rounded-container {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    border-radius: 0.75rem; /* Rounded corners */
    padding: 1rem; /* Some padding inside */
    margin-bottom: 1rem; /* Space below the container */
    backdrop-filter: blur(5px); /* Optional: subtle blur effect for background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    display: inline-block; /* Crucial: Allows vertical margins to apply */
}

/* Custom unordered list styling */
.my-ul-class {
    list-style: disc; /* Or 'none', 'circle', 'square' */
    margin-left: 20px; /* Example indentation */
    padding: 0;
}

.my-ul-class li {
    margin-bottom: 5px; /* Example spacing between list items */
    line-height: 1.5; /* Example line height */
    color: #ffffff; /* Example text color */
}

/*
|-------------------------------------------------------------------------------
| 5. Utility Classes
|-------------------------------------------------------------------------------
|
|   Single-purpose classes that apply specific styles (e.g., margins, padding,
|   colors, display properties).
|
*/

/* Margin Helpers */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

.m-1 { margin: 0.5rem !important; } /* 8px */
.mt-1 { margin-top: 0.5rem !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.ml-1 { margin-left: 0.5rem !important; }
.mr-1 { margin-right: 0.5rem !important; }
.mx-1 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.my-1 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }

.m-2 { margin: 1rem !important; } /* 16px */
.mt-2 { margin-top: 1rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.ml-2 { margin-left: 1rem !important; }
.mr-2 { margin-right: 1rem !important; }
.mx-2 { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-2 { margin-top: 1rem !important; margin-bottom: 1rem !important; }

.m-3 { margin: 1.5rem !important; } /* 24px */
.mt-3 { margin-top: 1.5rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.ml-3 { margin-left: 1.5rem !important; }
.mr-3 { margin-right: 1.5rem !important; }
.mx-3 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.my-3 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

.m-auto { margin: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

/* Padding Helpers (similar structure as margins) */
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

.p-1 { padding: 0.5rem !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pb-1 { padding-bottom: 0.5rem !important; }
.pl-1 { padding-left: 0.5rem !important; }
.pr-1 { padding-right: 0.5rem !important; }
.px-1 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.py-1 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }

.p-2 { padding: 1rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pl-2 { padding-left: 1rem !important; }
.pr-2 { padding-right: 1rem !important; }
.px-2 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-2 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

.p-3 { padding: 1.5rem !important; }
.pt-3 { padding-top: 1.5rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pl-3 { padding-left: 1.5rem !important; }
.pr-3 { padding-right: 1.5rem !important; }
.px-3 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

/* Large Spacing Helpers */
.pt-4xl { padding-top: 4rem !important; } /* 64px */
.pb-4xl { padding-bottom: 4rem !important; }
.py-4xl { padding-top: 4rem !important; padding-bottom: 4rem !important; }

.pt-6xl { padding-top: 6rem !important; } /* 96px */
.pb-6xl { padding-bottom: 6rem !important; }
.py-6xl { padding-top: 6rem !important; padding-bottom: 6rem !important; }

.pt-8xl { padding-top: 8rem !important; } /* 128px */
.pb-8xl { padding-bottom: 8rem !important; }
.py-8xl { padding-top: 8rem !important; padding-bottom: 8rem !important; }

.pt-20xl { padding-top: 20rem !important; } /* 320px */
.pb-10xl { padding-bottom: 10rem !important; } /* 160px */
.py-10xl { padding-top: 10rem !important; padding-bottom: 10rem !important; } /* 160px */

/* Color Helpers */
.text-red { color: red !important; }
.text-white { color: white !important; }
.text-gray { color: #ccc !important; }
.text-dark { color: #333 !important; }
.bg-red { background-color: red !important; }
.bg-dark { background-color: #111 !important; }
.bg-transparent { background-color: transparent !important; }

/* Alignment Helpers */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.align-top { vertical-align: top !important; }
.align-middle { vertical-align: middle !important; }
.align-bottom { vertical-align: bottom !important; }

/* Flexbox Alignment Helpers (for direct children of a flex container) */
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-center { align-items: center !important; }
.items-stretch { align-items: stretch !important; }
.items-baseline { align-items: baseline !important; }

/* Font Weight Helpers (using Satoshi-Variable's defined weights) */
.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-black { font-weight: 900 !important; }

/* Display Helpers */
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; } /* Hides element */

/* Width Helpers */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.max-w-full { max-width: 100% !important; }

/*
|-------------------------------------------------------------------------------
| 6. Media Queries (Responsiveness)
|-------------------------------------------------------------------------------
|
|   Styles that apply conditionally based on screen size, ordered from
|   smallest to largest breakpoint.
|
*/

@media (max-width: 768px) {
    /* Responsive Display Helpers for small screens */
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
    .d-sm-flex { display: flex !important; }

    /* Responsive Width Helpers for small screens */
    .w-sm-25 { width: 25% !important; }
    .w-sm-50 { width: 50% !important; }
    .w-sm-75 { width: 75% !important; }
    .w-sm-100 { width: 100% !important; }
    .max-w-sm-full { max-width: 100% !important; }

    /* Responsive Large Spacing Helpers for small screens */
    .pt-sm-4xl { padding-top: 2rem !important; }
    .pb-sm-4xl { padding-bottom: 2rem !important; }
    .py-sm-4xl { padding-top: 2rem !important; padding-bottom: 2rem !important; }

    .pt-sm-6xl { padding-top: 3rem !important; }
    .pb-sm-6xl { padding-bottom: 3rem !important; }
    .py-sm-6xl { padding-top: 3rem !important; padding-bottom: 3rem !important; }

    .pt-sm-8xl { padding-top: 4rem !important; }
    .pb-sm-8xl { padding-bottom: 4rem !important; }
    .py-sm-8xl { padding-top: 4rem !important; padding-bottom: 4rem !important; }

    .pt-sm-10xl { padding-top: 10rem !important; } /* 160px */
    .pb-sm-10xl { padding-bottom: 5rem !important; } /* 80px */
    .py-sm-10xl { padding-top: 5rem !important; padding-bottom: 5rem !important; } /* 80px */

    /* Adjustments for mobile layout */
    .logo {
        font-size: 1.2rem;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Burger menu icon */
    .menu-toggle {
        display: block; /* Show on mobile */
        cursor: pointer;
        position: absolute; /* Position relative to navbar */
        right: 2rem; /* Align with navbar padding */
        top: .9rem; /* Adjusted top for better alignment with logo */
        z-index: 11; /* Ensure it's above other elements */
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: red;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .navbar-nav {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 1rem;
        background: rgba(0, 0, 0, 0.9); /* Slightly darker background when open */
        box-sizing: border-box; /* Include padding in width */
    }

    .navbar-nav.active-menu {
        display: flex; /* Show when active */
    }

    .nav-link {
        padding: 0.75rem 0;
    }

    .page-content {
        padding-top: 250px; /* Increased padding for mobile */
    }

    .delta-symbol {
        font-size: 80vw; /* Larger on mobile to fill more space */
        filter: blur(8px); /* Slightly less blur on smaller screens if desired */
    }

    /* Responsive Heading Sizes for Mobile */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.7rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1rem; }

    /* Container padding for mobile */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Column gutter for mobile */
    [class*="col-"] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .row {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

@media (min-width: 769px) {
    /* Responsive Display Helpers for medium and larger screens */
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-flex { display: flex !important; }

    /* Responsive Width Helpers for medium and larger screens */
    .w-md-25 { width: 25% !important; }
    .w-md-50 { width: 50% !important; }
    .w-md-75 { width: 75% !important; }
    .w-md-100 { width: 100% !important; }
    .max-w-md-full { max-width: 100% !important; }

    /* Adjustments for medium and larger screens */
    /* Hide burger menu on larger screens */
    .menu-toggle {
        display: none;
    }

    /* Ensure navbar-nav is always visible on larger screens */
    .navbar-nav {
        display: flex !important; /* Override mobile 'display: none' */
    }

    /* Container padding for larger screens */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Column gutter for larger screens */
    [class*="col-"] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .row {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    /* 12-column grid for medium and larger screens */
    .col-md-1 { width: 8.33333%; }
    .col-md-2 { width: 16.66667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33333%; }
    .col-md-5 { width: 41.66667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33333%; }
    .col-md-8 { width: 66.66667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33333%; }
    .col-md-11 { width: 91.66667%; }
    .col-md-12 { width: 100%; }
}