@charset "UTF-8";
:root {
  /**
   * GLOBAL DESIGN TOKENS & VARIABLES
   *
   * This file contains all non-color design tokens including:
   * - Typography
   * - Spacing
   * - Breakpoints
   * - Transitions
   * - Layout measurements
   *
   * Note: Color variables belong in _colours.scss
   */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Cormorant Garamond", serif;
  --font-tertiary: "Montserrat", sans-serif;
  --font-size-base: 1rem;
  --font-size-default: 1.2rem;
  --font-size-sm: 1.15rem;
  --font-size-xs: 1.1rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --transition-fast: 0.15s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  --screen-xl: 1440px;
  --screen-lg: 1281px;
  --screen-md-1: 1024px;
  --screen-md-2: 992px;
  --screen-sm: 768px;
  --screen-xs: 480px;
  --screen-xxs: 320px;
  --logo-font-size: 2rem;
  --logo-letter-spacing: 0.6rem;
  --nav-logo-y: 0;
}

/* Modern CSS reset */
/* Removes default margins, padding and browser inconsistencies */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@keyframes subtleGridPulse {
  0% {
    opacity: 0.7;
    background-size: 50px 50px;
  }
  100% {
    opacity: 0.9;
    background-size: 55px 55px;
  }
}
@keyframes framePulse {
  0% {
    border-color: rgba(209, 0, 0, 0.03);
    border-color: rgba(var(--accent-rgb), 0.03);
  }
  100% {
    border-color: rgba(209, 0, 0, 0.08);
    border-color: rgba(var(--accent-rgb), 0.08);
  }
}
@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}
@keyframes descriptorFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lineDrawIn {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 3rem;
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes rotateDashedBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes navEntranceEffect {
  0% {
    transform: translateX(-10px);
    opacity: 0.8;
  }
  70% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 0, 0, 0.4);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(209, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}
@keyframes triggerPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 0, 0, 0.4);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(209, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}
@keyframes navSlideIn {
  0% {
    left: -50vw;
    transform: translateX(-100%);
    opacity: 0.5;
  }
  30% {
    transform: translateX(-3%);
  }
  70% {
    transform: translateX(-2%);
  }
  90% {
    transform: translateX(-1%);
  }
  100% {
    left: 0;
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes navSlideOut {
  0% {
    opacity: 1;
  }
  100% {
    left: -50vw;
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes accentLineReveal {
  0% {
    transform: scaleY(0.3);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 0.3;
  }
}
@keyframes itemReveal {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes profileReveal {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0;
    filter: grayscale(100%);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: grayscale(0%);
  }
}
@keyframes blurIn {
  0% {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
  100% {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}
@keyframes timelineGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes gradientFlow {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes dotTrail {
  0% {
    width: 14px;
    height: 14px;
    opacity: 0.5;
  }
  100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}
@keyframes entryPulse {
  0% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes connectingLine {
  0% {
    width: 0;
    opacity: 0.5;
  }
  100% {
    width: 30px;
    opacity: 1;
  }
}
@keyframes yearGlow {
  0% {
    text-shadow: 0 0 5px rgba(209, 0, 0, 0.2);
    text-shadow: 0 0 5px rgba(var(--accent-rgb), 0.2);
  }
  100% {
    text-shadow: 0 0 15px rgba(209, 0, 0, 0.6);
    text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.6);
  }
}
@keyframes milestoneActivate {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(209, 0, 0, 0);
    box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);
  }
  50% {
    transform: translateX(-50%) scale(1.8);
    box-shadow: 0 0 15px rgba(209, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.8);
  }
  100% {
    transform: translateX(-50%) scale(1.5);
    box-shadow: 0 0 10px rgba(209, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
  }
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
@keyframes slideInTimeline {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes timelineProgress {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes followPath {
  0% {
    transform: translateX(calc(-50% + 0px));
    transform: translateX(calc(-50% + var(--path-offset, 0px)));
  }
  100% {
    transform: translateX(calc(-50% + 0px));
    transform: translateX(calc(-50% + var(--path-offset, 0px)));
  }
}
@keyframes starTwinkle {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}
@keyframes floatSymbol {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes scrollWheel {
  0% {
    opacity: 0.5;
    top: 8px;
  }
  50% {
    opacity: 1;
    top: 20px;
  }
  100% {
    opacity: 0.5;
    top: 8px;
  }
}
@keyframes glowPulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
}
/**
 * MODERN RED/WHITE COLOR THEME
 */
:root {
  --primary: #FFFFFF;
  --secondary: #F5F5F5;
  --accent: #D10000;
  --accent-dark: #A00000;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-on-accent: #FFFFFF;
  --border-color: #E0E0E0;
  --card-bg: #FFFFFF;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --accent-hover: #B80000;
  --text-primary-hover: #4D4D4D;
  --accent-hover-opacity: rgba(209, 0, 0, 0.8);
  --text-primary-hover-opacity: rgba(26, 26, 26, 0.8);
  --mobile-nav-bg: linear-gradient(45deg, var(--primary), var(--accent));
  --desktop-nav-bg: linear-gradient(45deg, var(--primary), var(--accent));
  --nav-shadow: 0 -0.8rem 0 rgba(var(--accent-rgb), 0.08),
    0.8rem 0 0 rgba(var(--accent-rgb), 0.1),
    -0.8rem 0 0 rgba(var(--accent-rgb), 0.1),
    0 0.8rem 0 rgba(var(--accent-rgb), 0.3);
  --accent-rgb: 209, 0, 0;
  --media-icon-color: #F5F5F5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --primary: #1A1A1A;
    --secondary: #252525;
    --text-primary: #F5F5F5;
    --text-secondary: #CCCCCC;
    --border-color: #444444;
    --card-bg: #252525;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  background-color: #FFFFFF;
  background-color: var(--primary);
  color: #1A1A1A;
  color: var(--text-primary);
  transition: background-color 0.3s;
  transition: background-color var(--transition-normal);
}

.btn {
  background: #D10000;
  background: var(--accent);
  transition: background-color 0.15s;
  transition: background-color var(--transition-fast);
}
.btn:hover {
  background: #B80000;
  background: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  padding: 0 var(--spacing-md);
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
    padding: 0 var(--spacing-lg);
  }
}

section {
  padding: var(--spacing-xl) 0;
}
@media (min-width: 768px) {
  section {
    padding: var(--spacing-xxl) 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-md);
  color: #1A1A1A;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

a {
  color: var(--accent-color);
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.15s;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--accent-color-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.15s;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background-color: var(--accent-color);
  color: white;
}
.btn-primary:hover {
  background-color: var(--accent-color-hover);
}
.btn-secondary {
  background-color: transparent;
  border: 1px solid #E0E0E0;
  border: 1px solid var(--border-color);
  color: #1A1A1A;
  color: var(--text-primary);
}
.btn-secondary:hover {
  background-color: var(--bg-secondary);
}

.card {
  background-color: #FFFFFF;
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  padding: var(--spacing-lg);
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.theme-transition {
  transition: background-color 0.5s ease, color 0.5s ease;
}

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

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: 0.5rem;
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-lg);
}

.mb-5 {
  margin-bottom: var(--spacing-xl);
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: 0.5rem;
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: 1rem;
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: 2rem;
  margin-top: var(--spacing-lg);
}

.mt-5 {
  margin-top: var(--spacing-xl);
}

header {
  z-index: 9999999;
}
header .side-nav-trigger {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1500;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}
header .side-nav-trigger::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px dashed #D10000;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 4s linear;
  transform: rotate(0deg);
}
header .side-nav-trigger:hover::after {
  opacity: 0.7;
  animation: rotateDashedBorder 4s linear infinite;
}
header .side-nav-trigger .trigger-icon {
  position: relative;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #FFFFFF;
  background: var(--primary);
  border: 2px solid #D10000;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
header .side-nav-trigger .trigger-icon .trigger-letter {
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: #D10000;
  color: var(--accent);
  font-weight: 500;
  transition: all 0.3s ease;
}
header .side-nav-trigger .trigger-icon .pulse-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #D10000;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
}
header .side-nav-trigger .trigger-icon:hover {
  transform: scale(1.1);
}
header .side-nav-trigger .trigger-icon:hover .trigger-letter {
  transform: rotate(360deg);
}
header .side-navigation {
  position: fixed;
  top: 0;
  left: -50vw;
  width: 30rem;
  max-width: 80vw;
  height: 100vh;
  background: #FFFFFF;
  background: var(--primary);
  z-index: 1500;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right, rgba(209, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(209, 0, 0, 0.02) 1px, transparent 1px);
  background-image: linear-gradient(to right, rgba(var(--accent-rgb), 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(var(--accent-rgb), 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0s;
}
header .side-navigation.active {
  animation: navSlideIn 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
header .side-navigation.active::after {
  transform: scaleY(1);
  opacity: 0.3;
  animation: accentLineReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}
header .side-navigation.active .side-nav-header .nav-profile .profile-image {
  animation-delay: 0.4s;
}
header .side-navigation.active .side-nav-header .nav-profile .profile-name {
  animation: fadeUpIn 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
header .side-navigation.active .side-nav-header .nav-profile .profile-title {
  animation: fadeUpIn 0.6s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}
header .side-navigation.active .side-nav-header .nav-close {
  animation: fadeIn 0.5s ease-in-out forwards;
  opacity: 0;
}
header .side-navigation.active .side-nav-header .nav-close:hover {
  animation: fadeIn 0.5s ease-in-out forwards, pulseGlow 2s infinite cubic-bezier(0.66, 0, 0, 1);
}
header .side-navigation:not(.active) {
  animation: navSlideOut 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}
header .side-navigation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #D10000, transparent);
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.5s ease;
}
header .side-navigation .side-nav-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(209, 0, 0, 0.1);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
  position: relative;
}
header .side-navigation .side-nav-header .nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(209, 0, 0, 0.1);
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .side-navigation .side-nav-header .nav-close .close-icon {
  font-size: 1.5rem;
  color: #D10000;
  color: var(--accent);
}
header .side-navigation .side-nav-header .nav-close:hover {
  background: #D10000;
  background: var(--accent);
}
header .side-navigation .side-nav-header .nav-close:hover .close-icon {
  color: #FFFFFF;
  color: var(--primary);
}
header .side-navigation .side-nav-header .nav-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .side-navigation .side-nav-header .nav-profile .profile-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid #999;
}
header .side-navigation .side-nav-header .nav-profile .profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .side-navigation .side-nav-header .nav-profile .profile-name {
  font-family: "Cormorant Garamond", serif;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: #1A1A1A;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
header .side-navigation .side-nav-header .nav-profile .profile-title {
  font-size: 0.9rem;
  color: #555555;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
header .side-navigation .side-nav-links {
  flex: 1;
  padding: 2rem 0;
  overflow-y: auto;
  overflow-x: hidden;
}
header .side-navigation .side-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .side-navigation .side-nav-links ul .nav-item {
  margin-bottom: 0.5rem;
  opacity: 0;
}
header .side-navigation .side-nav-links ul .nav-item.active {
  opacity: 1;
}
.side-navigation.active header .side-navigation .side-nav-links ul .nav-item {
  animation: itemReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(0 * 0.08s + 0.5s);
  animation-delay: calc(var(--item-index, 0) * 0.08s + 0.5s);
}
header .side-navigation .side-nav-links ul .nav-item a {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: #555555;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
header .side-navigation .side-nav-links ul .nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #D10000;
  background: var(--accent);
  opacity: 0.1;
  transition: width 0.3s ease;
}
header .side-navigation .side-nav-links ul .nav-item a .nav-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 1.5rem;
  text-align: center;
  color: #D10000;
  color: var(--accent);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
header .side-navigation .side-nav-links ul .nav-item a .nav-text {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  flex: 1;
}
header .side-navigation .side-nav-links ul .nav-item a .dropdown-icon {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: #555555;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
header .side-navigation .side-nav-links ul .nav-item a:hover, header .side-navigation .side-nav-links ul .nav-item a:focus {
  color: #1A1A1A;
  color: var(--text-primary);
  transform: translateX(5px);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
header .side-navigation .side-nav-links ul .nav-item a:hover::before, header .side-navigation .side-nav-links ul .nav-item a:focus::before {
  width: 4px;
  box-shadow: 0 0 10px #D10000;
  box-shadow: 0 0 10px var(--accent);
}
header .side-navigation .side-nav-links ul .nav-item a:hover .nav-icon, header .side-navigation .side-nav-links ul .nav-item a:focus .nav-icon {
  transform: scale(1.2);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
header .side-navigation .side-nav-links ul .nav-item a:hover .dropdown-icon, header .side-navigation .side-nav-links ul .nav-item a:focus .dropdown-icon {
  color: #D10000;
  color: var(--accent);
}
header .side-navigation .side-nav-links ul .nav-item.active a {
  color: #1A1A1A;
  color: var(--text-primary);
}
header .side-navigation .side-nav-links ul .nav-item.active a::before {
  width: 4px;
}
header .side-navigation .side-nav-links ul .nav-item.dropdown {
  position: relative;
}
header .side-navigation .side-nav-links ul .nav-item.dropdown .dropdown-toggle {
  cursor: pointer;
}
header .side-navigation .side-nav-links ul .nav-item.dropdown .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 3.5rem;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
header .side-navigation .side-nav-links ul .nav-item.dropdown .dropdown-menu li {
  margin: 0.5rem 0;
}
header .side-navigation .side-nav-links ul .nav-item.dropdown .dropdown-menu li a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #555555;
  color: var(--text-secondary);
}
header .side-navigation .side-nav-links ul .nav-item.dropdown .dropdown-menu li a:hover {
  color: #D10000;
  color: var(--accent);
  transform: translateX(5px);
}
header .side-navigation .side-nav-links ul .nav-item.dropdown.open .dropdown-toggle .dropdown-icon {
  transform: rotate(180deg);
  color: #D10000;
  color: var(--accent);
}
header .side-navigation .side-nav-links ul .nav-item.dropdown.open .dropdown-menu {
  max-height: 500px;
  opacity: 1;
}
header .side-navigation .side-nav-links .nav-footer-text {
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #555555;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0;
}
.side-navigation.active header .side-navigation .side-nav-links .nav-footer-text {
  animation: fadeUpIn 0.6s ease forwards;
  animation-delay: 1s;
}
header .side-navigation .side-nav-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(209, 0, 0, 0.1);
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}
.side-navigation.active header .side-navigation .side-nav-footer {
  animation: fadeUpIn 0.6s ease forwards;
  animation-delay: 0.9s;
}
header .side-navigation .side-nav-footer .social-links {
  display: flex;
  gap: 1rem;
}
header .side-navigation .side-nav-footer .social-links a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(209, 0, 0, 0.1);
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
header .side-navigation .side-nav-footer .social-links a:hover {
  background: #D10000;
  background: var(--accent);
  color: #FFFFFF;
  color: var(--primary);
  transform: translateY(-3px);
}
header .side-navigation .side-nav-footer .theme-toggle button {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(209, 0, 0, 0.1);
  background: rgba(var(--accent-rgb), 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
header .side-navigation .side-nav-footer .theme-toggle button:hover {
  background: #D10000;
  background: var(--accent);
  color: #FFFFFF;
  color: var(--primary);
}
header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 1499;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
header .overlay.active {
  opacity: 1;
  visibility: visible;
  animation: blurIn 0.7s ease forwards;
}
@media (max-width: 768px) {
  header .side-nav-trigger {
    top: 1.5rem;
    left: 1.5rem;
  }
  header .side-nav-trigger .trigger-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  header .side-nav-trigger .trigger-icon .trigger-letter {
    font-size: 1.2rem;
  }
}

.side-nav-links ul .nav-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(0 * 0.05s);
  transition-delay: calc(var(--item-index, 0) * 0.05s);
}
.side-navigation.active .side-nav-links ul .nav-item {
  opacity: 1;
  transform: translateX(0);
}

.nav-logo-left {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  mix-blend-mode: color-dodge;
}

.navigation-toggle-container {
  display: block;
  cursor: pointer;
}
.navigation-toggle-container .menu-toggler {
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 4rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
  transition: transform 500ms ease-out;
}
@media all and (max-width: var(--screen-sm)) {
  .navigation-toggle-container .menu-toggler {
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 2rem;
  }
}
.navigation-toggle-container .menu-toggler .bar {
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 0.8rem;
  box-shadow: 0px 0px 12px 0px #FFFFFF;
  box-shadow: 0px 0px 12px 0px var(--primary);
}
@media all and (max-width: var(--screen-sm)) {
  .navigation-toggle-container .menu-toggler .bar {
    height: 2px;
  }
}
.navigation-toggle-container .menu-toggler .bar.half {
  width: 100%;
}
.navigation-toggle-container .menu-toggler .bar.start {
  width: 60%;
  align-self: flex-end;
  transform-origin: right;
  transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.navigation-toggle-container .menu-toggler .bar.end {
  width: 60%;
  align-self: flex-end;
  transform-origin: right;
  transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.navigation-toggle-container .menu-toggler.open {
  transform: rotate(-270deg);
}
.navigation-toggle-container .menu-toggler.open .bar.start {
  opacity: 0;
  transition: ease-in-out 650ms;
  transform: rotate(-450deg) translateX(0rem);
}
.navigation-toggle-container .menu-toggler.open .bar.middle {
  transform: rotate(-630deg);
}
.navigation-toggle-container .menu-toggler.open .bar.end {
  opacity: 0;
  transition: ease-in-out 650ms;
  transform: rotate(-450deg) translateX(0rem);
}

.navigation-container {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  padding: 1.2rem 0;
  transition: all 800ms cubic-bezier(1, 0, 0, 1);
  height: 100vh;
  right: -100vw;
  background: linear-gradient(45deg, #FFFFFF, #D10000);
  background: var(--mobile-nav-bg);
  opacity: 0;
  background-size: 200% 200%;
  animation: mobile-bar-bg-mover 4s ease infinite;
  z-index: 900;
}
.navigation-container.open {
  right: 0;
  opacity: 1;
  border-radius: 0;
  border-radius: initial;
}

.nav-logo-left,
.secondary-desktop-nav-bar {
  z-index: 999;
}

.nav-logo-left {
  display: block;
  position: fixed;
  text-align: center;
  letter-spacing: 0.6rem;
  letter-spacing: var(--logo-letter-spacing);
  font-size: 2rem;
  font-size: var(--logo-font-size);
  margin: 0 1rem;
  transform: translate(0, 0);
  transform: translate(0, var(--nav-logo-y));
  transition: all 0.6s ease-in-out;
}
.nav-logo-left a:hover {
  color: #D10000;
  color: var(--accent);
}

.secondary-desktop-nav-bar {
  position: fixed;
  right: 2em;
  height: 1.6em;
  width: 1.6em;
  border-radius: 0.4rem;
  background: linear-gradient(45deg, #FFFFFF, #D10000);
  background: var(--desktop-nav-bg);
  box-shadow: 0 -0.8rem 0 rgba(209, 0, 0, 0.08),
    0.8rem 0 0 rgba(209, 0, 0, 0.1),
    -0.8rem 0 0 rgba(209, 0, 0, 0.1),
    0 0.8rem 0 rgba(209, 0, 0, 0.3);
  box-shadow: var(--nav-shadow);
  cursor: pointer;
  transform: translateY(1em);
  transition: transform 1.4s ease-in-out;
}
.secondary-desktop-nav-bar:hover {
  transform: translateY(1em) scale(1.1);
  transition: transform 0.2s;
}
.secondary-desktop-nav-bar:hover::after {
  opacity: 0.5;
  font-size: 1.2rem;
}
.secondary-desktop-nav-bar:active {
  transform: translateY(1.2em) scale(0.9);
  transition: all 0.6s;
}

.navigation-container-list .nav-logo {
  text-align: center;
  letter-spacing: 0.6rem;
  letter-spacing: var(--logo-letter-spacing);
  font-size: 2rem;
  font-size: var(--logo-font-size);
  height: 50%;
  padding-bottom: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navigation-container-list .nav-logo a {
  font-weight: 400;
  color: #D10000;
  color: var(--accent);
}
.navigation-container-list .navigation-items-container {
  flex-direction: column;
  /* animation when hovering nav link */
  /* .nav-link::after {
        content: '';
        position: absolute;
        width: 10%;
        height: 1rem;
        background-color: #fff;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        opacity: 1;
    } */
}
.navigation-container-list .navigation-items-container li {
  margin: 2rem 0;
}
.navigation-container-list .navigation-items-container .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.3rem;
  padding: 0.6rem 2rem;
  color: #1A1A1A;
  color: var(--text-primary);
  color: #D10000;
  color: var(--accent);
  border: 1px solid transparent;
}
@media all and (max-width: var(--screen-lg)) {
  .navigation-container-list .navigation-items-container .nav-link {
    padding: 1.2rem;
  }
}
@media all and (max-width: var(--screen-sm)) {
  .navigation-container-list .navigation-items-container .nav-link {
    font-size: 1.2rem;
    padding: 5% 1rem;
  }
}
.navigation-container-list .navigation-items-container .nav-link.active {
  position: relative;
}
.navigation-container-list .navigation-items-container .nav-link.active::before {
  position: absolute;
}
.navigation-container-list .navigation-items-container .nav-link:hover,
.navigation-container-list .navigation-items-container .nav-link:focus {
  color: #D10000;
  color: var(--accent);
  transition: all 0.2s ease-in-out;
}
@media all and (max-width: var(--screen-sm)) {
  .navigation-container-list p {
    font-size: 1.1rem;
  }
}
@media all and (max-width: var(--screen-md-2)) {
  .navigation-container-list p.designedby {
    font-size: 1.1rem;
    display: block;
  }
}

.startscrolling {
  transform: translateY(-47%);
  background-color: rgba(255, 255, 255, 0.031372549);
  /* browser support */
  transition: all 1s ease;
}

.scrollup {
  /* height: 6vh; */
  background-color: rgba(255, 255, 255, 0.1254901961);
  transition: all 1s ease;
}

.scroll-down-right-toggle-btn {
  transform: translate(0, -100%);
}

header {
  --float-progress: 0;
  --nav-width: calc(100% - (10% * var(--float-progress)));
  --nav-margin: calc(1rem * var(--float-progress));
  --nav-radius: calc(1rem * var(--float-progress));
  --nav-shadow: calc(0.5rem * var(--float-progress));
  position: fixed;
  top: calc(1rem * 0);
  top: var(--nav-margin);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - (10% * 0));
  width: var(--nav-width);
}
header.nav-hidden {
  transform: translateX(-50%) translateY(-100%);
}
header.nav-floating {
  left: 50%;
  transform: translateX(-50%) translateY(var(--float-distance));
}

.navigation-container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.navigation-container.nav-hidden {
  transform: translateX(-50%) translateY(-100%);
}
.navigation-container.nav-floating {
  left: 50%;
  transform: translateX(-50%) translateY(var(--float-distance));
}

.preload {
  position: fixed;
  top: 0;
  z-index: 9999;
  height: 100vh;
  width: 100%;
  transition: all 3s ease-in-out;
}
.preload .preload-top {
  top: 0;
  height: 50vh;
  background-color: #FFFFFF;
  background-color: var(--primary);
  width: 100vw;
}
.preload .preload-bot {
  bottom: 0;
  height: 50vh;
  background-color: #FFFFFF;
  background-color: var(--primary);
  width: 100vw;
}
.preload .preload-box {
  top: 0;
  height: 100vh;
  width: 100vw;
  background-color: #FFFFFF;
  background-color: var(--primary);
  opacity: 0.8;
}
.preload #svg-loading {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media all and (max-width: var(--screen-md-2)) {
  .preload #svg-loading {
    width: 16%;
  }
}
@media all and (max-width: var(--screen-sm)) {
  .preload #svg-loading {
    width: 26%;
    transform: translate(-50%, -25%);
  }
}

.loading-leave {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.1254901961);
  border-bottom-right-radius: 100%;
  border-top-left-radius: 100%;
  top: 37%;
  left: 48%;
  transform: translate(-50%, -100%);
  animation: preload-anim 10s linear infinite alternate;
}
@media all and (max-width: var(--screen-lg)) {
  .loading-leave {
    top: 36%;
    left: 47%;
  }
}
@media all and (max-width: var(--screen-md-2)) {
  .loading-leave {
    width: 9rem;
    height: 9rem;
    top: 36%;
    left: 45%;
  }
}
@media all and (max-width: var(--screen-sm)) {
  .loading-leave {
    width: 6rem;
    height: 6rem;
    top: 40%;
    left: 43%;
  }
}

.preload-finish {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.loading-finish {
  opacity: 0;
}

.moveup {
  transform: translateY(-100%);
  transition: all 1s ease-in-out;
}

.movedown {
  transform: translateY(100%);
  transition: all 1s ease-in-out;
}

.clear-blur {
  -webkit-backdrop-filter: blur(0) !important;
          backdrop-filter: blur(0) !important;
  transition: all 2s ease-in-out;
}

/*End global*/
.eye-candy-animation .snow {
  position: fixed;
  display: block;
  background: #D10000;
  background: var(--accent);
  top: -20%;
  margin: 2%;
}

#loading-screen {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background-color: #000000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 1.3s ease-in-out;
}
#loading-screen .loading-bar-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
#loading-screen .loading-bar-container #loading-bar {
  display: none;
  height: 1rem;
  background-color: #ffffff;
}
#loading-screen .loading-bar-container #loading-text {
  color: #ffffff;
  margin: 0 0 0 1rem;
  font-size: 1.8rem;
}

.journey-section .entry-content, .journey-section .timeline-entry {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, filter 0.3s ease-out;
  will-change: transform, opacity;
}

.journey-section {
  --timeline-content-gap: 3rem;
  --timeline-container-width: 30vw;
  --timeline-line-width: 1px;
  --timeline-transition-speed: 0.6s;
  --timeline-dot-size: 12px;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(209, 0, 0, 0.05) 0%, transparent 8%), radial-gradient(circle at 80% 60%, rgba(209, 0, 0, 0.05) 0%, transparent 8%);
  background-image: radial-gradient(circle at 20% 30%, rgba(var(--accent-rgb), 0.05) 0%, transparent 8%), radial-gradient(circle at 80% 60%, rgba(var(--accent-rgb), 0.05) 0%, transparent 8%);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.8;
}
.journey-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.journey-section .section-header .section-title {
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: #1A1A1A;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}
.journey-section .section-header .section-title::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  color: rgba(209, 0, 0, 0.1);
  color: rgba(var(--accent-rgb), 0.1);
  font-size: 4rem;
  z-index: -1;
  white-space: nowrap;
}
.journey-section .section-header .accent-line {
  width: 3rem;
  height: 2px;
  background: #D10000;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}
.journey-section .section-header .section-subtitle {
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: #555555;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}
.journey-section .timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  perspective: 1000px;
  isolation: isolate;
}
.journey-section .timeline-line {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  height: 100%;
  width: var(--timeline-line-width);
  transform: translateX(-50%);
  overflow: visible;
  background-color: rgba(209, 0, 0, 0.3);
  background-color: rgba(var(--accent-rgb), 0.3);
}
.journey-section .timeline-line .timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #D10000;
  background: var(--accent);
  transition: height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  background-image: linear-gradient(to bottom, #D10000, rgba(209, 0, 0, 0.9), #D10000);
  background-image: linear-gradient(to bottom, var(--accent), rgba(var(--accent-rgb), 0.9), var(--accent));
  background-size: 100% 200%;
  animation: gradientFlow 4s ease infinite;
  z-index: 2;
}
.journey-section .timeline-line::before {
  top: 0;
}
.journey-section .timeline-line::after {
  bottom: 0;
}
.journey-section .timeline-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.journey-section .timeline-stars .star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #D10000;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: starTwinkle 3s ease-in-out infinite;
}
.journey-section .timeline-stars .star:nth-child(1) {
  top: 10%;
  left: 45%;
  animation-delay: 0s;
}
.journey-section .timeline-stars .star:nth-child(2) {
  top: 25%;
  left: 52%;
  animation-delay: 0.5s;
}
.journey-section .timeline-stars .star:nth-child(3) {
  top: 40%;
  left: 48%;
  animation-delay: 1s;
}
.journey-section .timeline-stars .star:nth-child(4) {
  top: 55%;
  left: 53%;
  animation-delay: 1.5s;
}
.journey-section .timeline-stars .star:nth-child(5) {
  top: 70%;
  left: 47%;
  animation-delay: 2s;
}
.journey-section .timeline-stars .star:nth-child(6) {
  top: 85%;
  left: 51%;
  animation-delay: 2.5s;
}
.journey-section .timeline-entries {
  width: 100%;
  position: relative;
  z-index: 2;
}
.journey-section .timeline-entry {
  position: relative;
  margin-bottom: 8rem;
  opacity: 1;
  transform: scale(1) translateY(0);
  perspective: 1000px;
  transform-style: preserve-3d;
  z-index: 10;
  background: #fff;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease box-shadow 0.4s ease-in-out;
  background-clip: padding-box;
  filter: blur(0.2rem);
}
.journey-section .timeline-entry .entry-content {
  transition: all 1s ease-in-out;
}
.journey-section .timeline-entry.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateY(0);
  z-index: 15;
}
.journey-section .timeline-entry.active .entry-content {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  border-color: rgba(209, 0, 0, 0.4);
  border-color: rgba(var(--accent-rgb), 0.4);
  transform: translateZ(5px);
  filter: blur(0);
}
.journey-section .timeline-entry.active .entry-date .year {
  color: #D10000;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(209, 0, 0, 0.4);
  text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.4);
  animation: yearGlow 1.5s ease-in-out infinite alternate;
  transform: scale(1.1);
}
.journey-section .timeline-entry.active .entry-title {
  color: #D10000;
  color: var(--accent);
}
.journey-section .timeline-entry.active .entry-title::after {
  width: 50px;
  opacity: 1;
  animation: connectingLine 0.5s ease-out forwards;
}
.journey-section .timeline-entry.active .entry-image img {
  transform: scale(1.05);
}
.journey-section .timeline-entry:nth-child(odd) .entry-content {
  position: relative;
  left: calc(45% - var(--timeline-content-gap));
  transform: translateX(-100%);
  transform-origin: left center;
  text-align: right;
}
.journey-section .timeline-entry:nth-child(odd) .entry-content .entry-title::after {
  left: auto;
  right: 0;
}
.journey-section .timeline-entry:nth-child(odd) .entry-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  text-align: center;
  z-index: 20;
}
.journey-section .timeline-entry:nth-child(even) .entry-content {
  position: relative;
  left: calc(55% + var(--timeline-content-gap));
  transform: translateX(0);
  transform-origin: right center;
}
.journey-section .timeline-entry:nth-child(even) .entry-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  text-align: center;
  z-index: 20;
}
@media (max-width: 992px) {
  .journey-section .timeline-line {
    z-index: 1;
    left: 30px;
  }
  .journey-section .timeline-entry {
    z-index: 2;
  }
  .journey-section .timeline-entry:nth-child(odd) .entry-content, .journey-section .timeline-entry:nth-child(even) .entry-content {
    margin-left: 60px;
    margin-right: auto;
    transform-origin: left center;
    text-align: left;
  }
  .journey-section .timeline-entry:nth-child(odd) .entry-content .entry-title::after, .journey-section .timeline-entry:nth-child(even) .entry-content .entry-title::after {
    left: 0;
    right: auto;
  }
  .journey-section .timeline-entry:nth-child(odd) .entry-date, .journey-section .timeline-entry:nth-child(even) .entry-date {
    left: 30px;
    transform: translateX(-50%);
    top: -40px;
  }
}
.journey-section .entry-date {
  transition: all 0.5s ease;
  padding: 0 0.3rem;
}
.journey-section .entry-date .year {
  display: block;
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: #555555;
  color: var(--text-secondary);
  font-weight: 600;
  transition: all 0.5s ease;
  margin: auto;
  padding: 0;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.journey-section .entry-date .month {
  display: block;
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: #555555;
  color: var(--text-secondary);
  font-style: italic;
  transition: all 0.5s ease;
}
.journey-section .entry-content {
  position: relative;
  width: var(--timeline-container-width);
  max-width: 30vw;
  background: rgba(var(--primary-rgb), 0.9);
  border: 1px solid rgba(209, 0, 0, 0.15);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all var(--timeline-transition-speed) cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
}
.journey-section .entry-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
.journey-section .entry-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(209, 0, 0, 0.02) 25%, transparent 25%), linear-gradient(-45deg, rgba(209, 0, 0, 0.02) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(209, 0, 0, 0.02) 75%), linear-gradient(-45deg, transparent 75%, rgba(209, 0, 0, 0.02) 75%);
  background-image: linear-gradient(45deg, rgba(var(--accent-rgb), 0.02) 25%, transparent 25%), linear-gradient(-45deg, rgba(var(--accent-rgb), 0.02) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(var(--accent-rgb), 0.02) 75%), linear-gradient(-45deg, transparent 75%, rgba(var(--accent-rgb), 0.02) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.5;
}
.journey-section .entry-content .entry-title {
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: #1A1A1A;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.journey-section .entry-content .entry-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D10000;
  background: var(--accent);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.journey-section .entry-content .entry-description {
  font-family: "Montserrat", sans-serif;
  font-family: var(--font-tertiary);
  font-size: 1rem;
  color: #555555;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}
.journey-section .entry-content .entry-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0 0;
}
.journey-section .entry-content .entry-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(209, 0, 0, 0.2), transparent);
  background: linear-gradient(to bottom right, rgba(var(--accent-rgb), 0.2), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.journey-section .entry-content .entry-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.journey-section .entry-content .entry-image:hover::before {
  opacity: 1;
}
.journey-section .entry-content .entry-image:hover img {
  transform: scale(1.05);
}
.journey-section .timeline-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.journey-section .timeline-particles .timeline-particle {
  position: absolute;
  background: #D10000;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  top: -10px;
  animation: floatParticle 15s linear infinite;
}
@media (max-width: 992px) {
  .journey-section {
    --timeline-content-gap: 10rem;
  }
  .journey-section .timeline-line {
    z-index: -1;
    left: 1rem;
  }
  .journey-section .timeline-line::before, .journey-section .timeline-line::after,
  .journey-section .timeline-line .timeline-progress {
    clip-path: none;
  }
  .journey-section .timeline-entry {
    z-index: 10;
  }
  .journey-section .timeline-entry:nth-child(odd) .entry-content, .journey-section .timeline-entry:nth-child(even) .entry-content {
    /* Full‑width card for tablet & below */
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    transform: none;
    transform-origin: left center;
  }
  .journey-section .timeline-entry:nth-child(odd) .entry-date, .journey-section .timeline-entry:nth-child(even) .entry-date {
    left: 5rem;
    right: auto;
    text-align: left;
    top: -5rem;
  }
}
@media (max-width: 576px) {
  .journey-section .timeline-entry {
    z-index: 10;
    margin-bottom: 8rem;
  }
  .journey-section .timeline-entry .entry-content {
    width: calc(100% - 60px);
    padding: 1.5rem;
  }
  .journey-section .timeline-entry .entry-title {
    font-size: 1.2rem;
  }
  .journey-section .timeline-entry .entry-description {
    font-size: 0.9rem;
  }
}

.landing-section {
  position: relative;
  min-height: 100vh;
  background: #FFFFFF;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
  z-index: 1;
}
.landing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(209, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(209, 0, 0, 0.02) 1px, transparent 1px);
  background-image: linear-gradient(to right, rgba(var(--accent-rgb), 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(var(--accent-rgb), 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  opacity: 0.8;
  animation: subtleGridPulse 15s infinite alternate;
}
.landing-section .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 0 2rem;
}
.landing-section .hero-text-container {
  text-align: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.landing-section .hero-text-container h1 {
  font-family: "Playfair Display", serif;
  font-family: var(--font-primary);
  font-weight: 100;
  font-size: max(2.5rem, min(6vw, 5.5rem));
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
}
.landing-section .hero-text-container h1 .name-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.landing-section .hero-text-container h1 .chinese-name-container {
  margin-bottom: 0.5rem;
}
.landing-section .hero-text-container h1 .chinese-name {
  font-family: "Noto Serif SC", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1em;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.3s;
  font-size: max(2rem, min(5vw, 4rem));
}
.landing-section .hero-text-container h1 .name-divider {
  width: 100%;
  max-width: 400px;
  margin: 0.5rem 0;
}
.landing-section .hero-text-container h1 .name-divider .divider-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D10000;
  background-color: var(--accent);
  opacity: 0.3;
  transform: scaleX(0);
  animation: lineDrawIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s;
}
.landing-section .hero-text-container h1 .english-name-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}
.landing-section .hero-text-container h1 .english-name-first,
.landing-section .hero-text-container h1 .english-name-last {
  font-family: "Cormorant Garamond", serif;
  font-family: var(--font-secondary);
  letter-spacing: 0.05em;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.landing-section .hero-text-container h1 .english-name-first {
  font-size: max(2rem, min(5vw, 4rem));
  animation: fadeUpIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.7s;
  font-weight: 400;
}
.landing-section .hero-text-container h1 .english-name-last {
  font-size: max(2.5rem, min(6vw, 5rem));
  font-weight: 500;
  animation: fadeUpIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.9s;
}
.landing-section .descriptors {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  position: relative;
}
.landing-section .descriptors::before, .landing-section .descriptors::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: rgba(209, 0, 0, 0.2);
  background: rgba(var(--accent-rgb), 0.2);
  width: 0;
  opacity: 0;
  animation: lineDrawIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.2s;
}
.landing-section .descriptors::before {
  left: -4rem;
}
.landing-section .descriptors::after {
  right: -4rem;
}
.landing-section .descriptors .descriptor {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #555555;
  color: var(--text-secondary);
  position: relative;
  padding: 0 0.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}
.landing-section .descriptors .descriptor:nth-child(1) {
  animation: descriptorFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.8s;
}
.landing-section .descriptors .descriptor:nth-child(2) {
  animation: descriptorFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.9s;
}
.landing-section .descriptors .descriptor:nth-child(3) {
  animation: descriptorFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards 1s;
}
.landing-section .descriptors .descriptor::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D10000;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.landing-section .descriptors .descriptor:hover {
  color: #1A1A1A;
  color: var(--text-primary);
}
.landing-section .descriptors .descriptor:hover::after {
  transform: scaleX(1);
}
.landing-section .bio-badge {
  margin: 2rem 0 3rem;
  position: relative;
  text-align: center;
}
.landing-section .bio-badge p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #555555;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.landing-section .bio-badge p .divider {
  color: rgba(209, 0, 0, 0.4);
  color: rgba(var(--accent-rgb), 0.4);
  margin: 0 0.8rem;
}
.landing-section .bio-badge .thin-line-animation {
  height: 1px;
  width: 3rem;
  background: #D10000;
  background: var(--accent);
  margin: 1.2rem auto 0;
  transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.landing-section .bio-badge:hover .thin-line-animation {
  width: 150px;
}
.landing-section .interactive-actions {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}
.landing-section .action-btn {
  padding: 0.9em 2.2em;
  margin: 0 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.landing-section .action-btn.outline-btn {
  border: 1px solid #D10000;
  border: 1px solid var(--accent);
  color: #D10000;
  color: var(--accent);
  background: transparent;
  position: relative;
  overflow: hidden;
}
.landing-section .action-btn.outline-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D10000;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.landing-section .action-btn.outline-btn:hover {
  color: #FFFFFF;
  color: var(--primary);
}
.landing-section .action-btn.outline-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.landing-section .interactive-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.landing-section .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.landing-section .decorative-elements .red-line {
  position: absolute;
  background: rgba(209, 0, 0, 0.15);
  background: rgba(var(--accent-rgb), 0.15);
}
.landing-section .decorative-elements .red-line.vertical-line {
  width: 1px;
  height: 40vh;
}
.landing-section .decorative-elements .red-line.vertical-line.line-1 {
  top: 5%;
  right: 20%;
  height: 60vh;
}
.landing-section .decorative-elements .red-line.vertical-line.line-3 {
  bottom: 10%;
  left: 30%;
  height: 20vh;
}
.landing-section .decorative-elements .red-line.horizontal-line {
  width: 15vw;
  height: 1px;
}
.landing-section .decorative-elements .red-line.horizontal-line.line-2 {
  bottom: 25%;
  left: 10%;
  width: 25vw;
}
.landing-section .decorative-elements .red-line.horizontal-line.line-4 {
  top: 20%;
  right: 15%;
  width: 10vw;
}
.landing-section .decorative-elements .red-dot {
  position: absolute;
  border-radius: 50%;
  background: #D10000;
  background: var(--accent);
}
.landing-section .decorative-elements .red-dot.dot-1 {
  top: 30%;
  left: 20%;
  width: 4px;
  height: 4px;
  opacity: 0.7;
}
.landing-section .decorative-elements .red-dot.dot-2 {
  bottom: 25%;
  right: 25%;
  width: 6px;
  height: 6px;
  opacity: 0.5;
}
.landing-section .decorative-elements .red-dot.dot-3 {
  top: 15%;
  left: 40%;
  width: 3px;
  height: 3px;
  opacity: 0.6;
}
@keyframes subtleGridPulse {
  0% {
    opacity: 0.7;
    background-size: 50px 50px;
  }
  100% {
    opacity: 0.9;
    background-size: 55px 55px;
  }
}
@keyframes framePulse {
  0% {
    border-color: rgba(209, 0, 0, 0.03);
    border-color: rgba(var(--accent-rgb), 0.03);
  }
  100% {
    border-color: rgba(209, 0, 0, 0.08);
    border-color: rgba(var(--accent-rgb), 0.08);
  }
}
@media (max-width: 768px) {
  .landing-section {
    padding: 0 1.5rem;
  }
  .landing-section .hero-text-container h1 {
    font-size: 2.8rem;
  }
  .landing-section .descriptors {
    gap: 1rem;
  }
  .landing-section .descriptors::before, .landing-section .descriptors::after {
    width: 1.5rem;
  }
  .landing-section .descriptors::before {
    left: -2rem;
  }
  .landing-section .descriptors::after {
    right: -2rem;
  }
  .landing-section .descriptors .descriptor {
    font-size: 0.8rem;
  }
  .landing-section::after {
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

.about {
  border: 1px solid red;
  height: 100vh;
}
.about .container .skill-showcase {
  margin: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.about .container .skill-showcase::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: rgba(209, 0, 0, 0.3);
  background: rgba(var(--accent-rgb), 0.3);
}
.about .container .skill-showcase .skill-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555555;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
}
.about .container .skill-showcase .skill-title::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: #D10000;
  background: var(--accent);
}
.about .container .skill-showcase .skill-icons {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}
.about .container .skill-showcase .skill-icons .skill-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(209, 0, 0, 0.03);
  background: rgba(var(--accent-rgb), 0.03);
  color: #1A1A1A;
  color: var(--text-primary);
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(209, 0, 0, 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
}
.about .container .skill-showcase .skill-icons .skill-icon::after {
  content: attr(data-name);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 400;
  color: #555555;
  color: var(--text-secondary);
}
.about .container .skill-showcase .skill-icons .skill-icon:hover {
  transform: translateY(-8px);
  background: rgba(209, 0, 0, 0.08);
  background: rgba(var(--accent-rgb), 0.08);
  color: #D10000;
  color: var(--accent);
  box-shadow: 0 5px 15px rgba(209, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.15);
}
.about .container .skill-showcase .skill-icons .skill-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/*Start portfolio*/
.portfolio {
  height: -moz-fit-content;
  height: fit-content;
}
.portfolio .portfolio-items-swiper {
  margin: 2rem 0 0;
}
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-img-div img {
  height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item h1,
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item p,
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-project_name {
  margin: 0;
}
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-description .portfolio-category {
  margin: 0;
  font-size: 1.6rem;
  color: #D10000;
  color: var(--accent);
  transform: translate(0, -0.4rem);
  display: block;
}
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-description .cta {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #D10000;
  color: var(--accent);
}
@media all and (max-width: var(--screen-sm)) {
  .portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-description .cta {
    margin-bottom: 2rem;
  }
}
.portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-description .cta:hover, .portfolio .portfolio-items-swiper .swiper-wrapper .portfolio-item .portfolio-description .cta:hover {
  color: #D10000;
  color: var(--accent);
}

/*End portfolio*/
/*Start Specialisation*/
@media only screen and (max-width: var(--screen-md-1)) {
  .specialisation {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (min-width: var(--screen-md-2)) {
  .specialisation {
    overflow: hidden;
  }
  .specialisation .section-heading {
    position: absolute;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: -1;
  }
  .specialisation .section-heading h1 {
    font-size: 28rem;
    color: #000;
    transform: translate(0.6em, -1em);
  }
  .specialisation .section-heading h1::after {
    content: "specialisation";
    position: absolute;
    transform: translate(0, 97.5vh);
    left: -3em;
  }
  .specialisation .section-heading h6 {
    display: none;
  }
}
@media only screen and (min-width: var(--screen-md-2)) {
  .specialisation .skills-container {
    height: 100vh;
    transform: translate(0, 30vh);
  }
}
.specialisation .icon-container {
  width: 14rem;
  height: 14rem;
  border: 2px solid #D10000;
  border: 2px solid var(--accent);
  margin-bottom: 2rem;
  display: flex;
  transform: rotate(0deg);
  box-shadow: 0px 0px 22px 0px #D10000;
  box-shadow: 0px 0px 22px 0px var(--accent);
}
@media all and (max-width: var(--screen-md-2)) {
  .specialisation .icon-container {
    font-size: 3.5rem;
  }
}
.specialisation .icon-container i {
  position: relative;
  color: #D10000;
  color: var(--accent);
  font-size: 5rem;
  margin: auto;
}
@media all and (max-width: var(--screen-sm)) {
  .specialisation .icon-container i {
    font-size: 4.5rem;
  }
}
.specialisation .icon-container::after {
  position: absolute;
  content: "";
  width: 13.1rem;
  height: 13.1rem;
  border: 2px solid #D10000;
  border: 2px solid var(--accent);
  display: flex;
  transform: rotate(45deg);
  box-shadow: 0px 0px 22px 0px #D10000;
  box-shadow: 0px 0px 22px 0px var(--accent);
  opacity: 0.8;
}
.specialisation .my-skills {
  /* https://hankchizljaw.com/wrote/create-a-responsive-grid-layout-with-no-media-queries-using-css-grid/ */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-gap: 3rem;
  text-align: center;
}
.specialisation .my-skills .skill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.specialisation .my-skills .skill h1 {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 4rem -2px 2rem 0;
  color: #D10000;
  color: var(--accent);
}

/*End Specialisation*/
.bbx-achievements .container .section-heading h1::after {
  content: "achivements";
  position: absolute;
  transform: translate(-50%, -35%);
  left: 50%;
  opacity: 0.1;
  font-size: 3em;
}

/* Interest page  */
#interest-header,
section {
  /* scroll-snap-align: start; */
  /* background-color: #fff; */
}

body.interest-body {
  /* scroll-snap-align: start; */
  /* for loading too long */
  background-color: #131218;
  /*  Neumorphism Theme */
  /* background: var(--background); */
}

/* Start interest page */
.svg-beatbox-container p {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#svg-beatbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100em;
}
@media all and (max-width: var(--screen-md-1)) {
  #svg-beatbox {
    width: 70em;
  }
}
@media all and (max-width: var(--screen-sm)) {
  #svg-beatbox {
    width: 40em;
  }
}
@media all and (max-width: var(--screen-xs)) {
  #svg-beatbox {
    width: 30em;
  }
}
@media all and (max-width: var(--screen-xxs)) {
  #svg-beatbox {
    width: 26em;
  }
}
#svg-beatbox path {
  animation: line-anime 4s ease forwards 0.6s;
}

/* Start beatbox body */
.beatbox {
  height: 100vh;
}

.countdown {
  transition: all 1s;
  font-size: 2.6rem;
}

/* Start ytbg */
.example-marquee {
  position: relative;
}

.content {
  display: table;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
  position: relative;
}

.content .inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

.content .inner h1 {
  font-size: 62px;
  color: white;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.video-background-controls button {
  font-size: 32px;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  height: 32px;
  width: 32px;
  border-radius: 16px;
  line-height: 32px;
  border: none;
  background: none;
  -webkit-appearance: none;
  color: white;
  filter: drop-shadow(0px 0px 1px black);
  cursor: pointer;
  opacity: 1;
  transition: all 250ms ease-in-out;
  margin-left: 10px;
}

.video-background-controls button:hover {
  opacity: 0.5;
}

iframe {
  transition: opacity 500ms ease-in-out;
  transition-delay: 250ms;
}

/* End ytbg */
/* End beatbox body */
/* End interest page */
@media screen and (max-width: 600px) {
  .countdown {
    font-size: 2rem;
  }
}
/* main page  */
#platform-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3% 0 10%;
}
#platform-page h2,
#platform-page p,
#platform-page span {
  color: #fff;
  letter-spacing: inherit;
  word-spacing: inherit;
}
#platform-page span:nth-child(1) {
  letter-spacing: -2px;
}
#platform-page #profile-section {
  position: relative;
}
#platform-page #profile-section .profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  background-color: rgba(255, 255, 255, 0);
}
@keyframes profileAnim {
  100% {
    transform: translate(0, -2px) scale(1.1);
  }
}
#platform-page #profile-section .profile-container::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  height: 10rem;
  width: 10rem;
  z-index: -1;
}
#platform-page #profile-section .profile-container::before {
  transform: translate(0, -2px);
  animation: profileAnim 1s infinite alternate;
}
#platform-page #profile-section .profile-container img {
  height: 10rem;
  width: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
#platform-page #profile-section .al-container {
  width: 50vw;
  margin: 0 auto 2rem;
}
@media screen and (max-width: var(--screen-sm)) {
  #platform-page #profile-section .al-container {
    width: 80%;
  }
}
@media screen and (max-width: var(--screen-xs)) {
  #platform-page #profile-section .al-container {
    width: 85%;
  }
}
#platform-page #profile-section .al-container h1.achievement-title.collapsible {
  text-align: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: var(--screen-sm)) {
  #platform-page #profile-section .al-container h1.achievement-title.collapsible {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: var(--screen-xs)) {
  #platform-page #profile-section .al-container h1.achievement-title.collapsible {
    font-size: 1.6rem;
  }
}
#platform-page #profile-section .al-container h1.achievement-title.collapsible::before {
  content: ">";
  padding: 0 0.8rem 0 0;
}
#platform-page #profile-section .al-container h1.achievement-title.collapsible.active::before {
  content: "_";
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#platform-page #profile-section .al-container .list-container {
  opacity: 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.6s ease-in-out;
}
#platform-page #profile-section .al-container .list-container.fade-in {
  display: block;
  margin-top: 1rem;
  animation: fadeIn 2s forwards;
}
#platform-page #profile-section .al-container .list-container .category-container {
  position: relative;
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#platform-page #profile-section .al-container .list-container .category-container:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#platform-page #profile-section .al-container .list-container .category-container h2 {
  top: 0;
  left: 0;
  font-size: 1.5rem;
  opacity: 0.5;
  transform: translate(0, 35%);
}
@media screen and (max-width: var(--screen-sm)) {
  #platform-page #profile-section .al-container .list-container .category-container h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: var(--screen-xs)) {
  #platform-page #profile-section .al-container .list-container .category-container h2 {
    font-size: 1.3rem;
  }
}
#platform-page #profile-section .al-container .list-container .category-container .title-list-container {
  width: -moz-fit-content;
  width: fit-content;
}
#platform-page #profile-section .al-container .list-container .category-container .title-list-container p.al-title {
  color: #D10000;
  color: var(--accent);
  font-size: 1.4rem;
}
#platform-page #profile-section .al-container .list-container .category-container .title-list-container p.al-title span:nth-child(2) {
  letter-spacing: 0.1rem;
}
#platform-page #profile-section .al-container .list-container .category-container .title-list-container p.al-title span {
  opacity: 0.8;
}
@media screen and (max-width: var(--screen-sm)) {
  #platform-page #profile-section .al-container .list-container .category-container .title-list-container p.al-title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: var(--screen-xs)) {
  #platform-page #profile-section .al-container .list-container .category-container .title-list-container p.al-title {
    font-size: 1.2rem;
  }
}
#platform-page #platform-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}
#platform-page #platform-section span {
  font-weight: 400;
}
#platform-page #platform-section .single-button {
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  height: -moz-max-content;
  height: -moz-fit-content !important;
  height: fit-content !important;
  transition: all 0.3s ease-in-out;
  width: 80vw;
  padding: 0.4rem 1.2rem;
  border: 1px solid transparent;
}
@media screen and (max-width: var(--screen-xs)) {
  #platform-page #platform-section .single-button {
    width: 85vw;
  }
}
#platform-page #platform-section .single-button:hover {
  transform: scale(0.99);
  border: 1px solid #D10000;
  border: 1px solid var(--accent);
}
#platform-page #platform-section .single-button:hover a span,
#platform-page #platform-section .single-button:hover ::before {
  font-weight: bold;
}
#platform-page #platform-section .single-button a {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 3.4rem;
}
@media screen and (max-width: var(--screen-sm)) {
  #platform-page #platform-section .single-button a {
    height: 3rem;
  }
}
#platform-page #platform-section .single-button a span {
  font-size: 1.4rem;
  opacity: 1 !important;
}
@media screen and (max-width: var(--screen-sm)) {
  #platform-page #platform-section .single-button a span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: var(--screen-xs)) {
  #platform-page #platform-section .single-button a span {
    font-size: 1.3rem;
  }
}
#platform-page #platform-section .single-button a:active {
  outline: none;
}
#platform-page #platform-section .single-button a:focus:not(:focus-visible) {
  outline: none;
}
#platform-page #platform-section .single-button a:focus-visible {
  outline: revert;
}

.resume-body {
  background: rgb(223, 223, 223);
}
.resume-body p {
  color: black;
  font-size: 1.4rem;
  line-height: 1.4;
  word-spacing: 0.1rem;
  letter-spacing: inherit;
}
.resume-body #resume-header {
  display: none;
}
.resume-body .test {
  position: absolute;
  left: 7.5rem;
  top: 8rem;
}
.resume-body .test #test {
  width: 13rem;
}
.resume-body .test #test path {
  animation: line-anime 2s ease forwards 0.1s;
}
.resume-body .resume-container {
  height: 100vh;
  width: 100vw;
}
.resume-body .resume-container .wrapper {
  position: fixed;
  border: 1px solid black;
  margin: 1rem;
}
.resume-body .resume-container .profile-section {
  position: relative;
  display: flex;
  gap: 2rem;
  padding: 1rem;
}
.resume-body .resume-container .profile-section .my-img-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.resume-body .resume-container .profile-section .my-img-section img {
  border-radius: 100%;
  height: 12rem;
  width: 12rem;
  margin: auto;
}
.resume-body .resume-container .profile-section .detail-section {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.resume-body .resume-container .profile-section .detail-section .fullname {
  color: black;
  font-size: 5rem;
}
.resume-body .resume-container .profile-section .detail-section .small-desc {
  font-size: 1.5rem;
  font-style: italic;
  color: #999;
}
.resume-body .resume-container .profile-section .detail-section .desc {
  font-size: 1.3rem;
}
body {
  background-color: #FFFFFF;
  background-color: var(--primary);
  opacity: 1 !important;
  visibility: visible !important;
}

.hide-all-in-body {
  opacity: 1 !important;
  visibility: visible !important;
}

header,
section,
footer {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}