/* --- Variables & Core Setup --- */
:root {
    --rainbow-speed: 60s; /* for one color rotation */
    --bg-speed: 60s;      /* for background rotation */
    --muted-sat: 35%;     /* Low saturation for circadian friendliness */
    --muted-light: 45%;   /* Low brightness for eye comfort */
}

/*body, html {
    /* Background drifts through deep, dark hues 
    animation: bg-hue var(--bg-speed) infinite linear;
    display: flex;
    overflow-x: hidden;
}*/

body, html {
    /* Background starts with a deep base color to allow hue-rotation */
    background-color: #1a0a2e; /* A very dark purple/blue */
    
    animation: bg-hue var(--bg-speed) infinite linear;
    display: flex;
    flex-direction: column; /* Ensure wrapper and image-container stack */
    min-height: 100vh;      /* Make sure the background covers the whole screen */
    margin: 0;              /* Remove default browser padding */
    overflow-x: hidden;
}


/* --- Layout --- */
.wrapper {
    display: flex;
    padding: 60px;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
}

nav {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.site-link {
     font-family: 'Outfit-Variable', Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #222; /* Static dark grey for the URL */
    font-weight: 800;
    font-size: 6.8rem;
    letter-spacing: -0.1em;
    display: block;      /* Makes it behave like a block so we can control margins */
    margin-bottom: 0;    /* Removes any bottom spacing */
}

.site-title {
    font-family: 'Outfit-Variable', Helvetica, Arial, sans-serif;
    font-size: 4.1rem;
    letter-spacing: -0.06em;
    font-weight: 900;
    /* Title follows the same spectrum shift */
    animation: full-hue var(--rainbow-speed) infinite linear;
    margin-top: -80px;   /* Pulls the header UP toward the link above it */
  margin-bottom: 20px; /* Adjusts the gap between the title and the list below */
  mix-blend-mode: difference;
}

/* --- Navigation Menu --- */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 10px;
}

.menu-list a {
    font-family: 'Outfit-Variable', Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
    font-weight: 700;
    line-height: 0.8em;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.5em; 
    display: inline-block;
    transition: opacity 0.3s;
    /* The rainbow engine */
    animation: full-hue var(--rainbow-speed) infinite linear;
}

.menu-list a:hover {
    opacity: 0.6;
}

/* --- Staggered Color Offsets --- */
/* This makes each link a different color of the rainbow at any given time */
.item-1 a { animation-delay: 0s; }
.item-2 a { animation-delay: -7s; }
.item-3 a { animation-delay: -14s; }
.item-4 a { animation-delay: -21s; }
.item-5 a { animation-delay: -28s; }
.item-6 a { animation-delay: -35s; }
.item-7 a { animation-delay: -42s; }
.item-8 a { animation-delay: -49s; }

/* --- Keyframe Animations --- */
@keyframes full-hue {
0% { color: #ff0000; }   /* Red */
  33% { color: #00ff00; }  /* Green */
  66% { color: #0000ff; }  /* Blue */
  100% { color: #ff0000; } /* Back to Red */
}

@keyframes bg-hue {
    /* Very dark background shift (10% saturation, 5% lightness) */
from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

/* --- Center Image Container --- */
.image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 45%;
    max-width: 500px;
    aspect-ratio: 4/5;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .wrapper { padding: 40px 30px; }
    .site-title { font-size: 3.5rem;
    line-height: -2.5em;}
    .menu-list a { font-size: 1.8em; }
    .image-container {
        position: relative;
        height: 45vh;
        margin-top: 30px;
    }
    .hero-image { width: 85%; }
}
**
* @license
*
* Font Family: Zodiak
* Designed by: Jérémie Hornus, Gaetan Baehr, Jean-Baptiste Morizot, Alisa Nowak, Theo Guillard
* URL: https://www.fontshare.com/fonts/zodiak
* © 2026 Indian Type Foundry
*
* Zodiak Thin 
* Zodiak ThinItalic 
* Zodiak Light 
* Zodiak LightItalic 
* Zodiak Regular 
* Zodiak Italic 
* Zodiak Bold 
* Zodiak BoldItalic 
* Zodiak Extrabold 
* Zodiak ExtraboldItalic 
* Zodiak Black 
* Zodiak BlackItalic 
* Zodiak Variable (Variable font)
* Zodiak VariableItalic (Variable font)

*
*/
@font-face {
  font-family: 'Zodiak-Thin';
  src: url('../fonts/Zodiak-Thin.woff2') format('woff2'),
       url('../fonts/Zodiak-Thin.woff') format('woff'),
       url('../fonts/Zodiak-Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Zodiak-ThinItalic';
  src: url('../fonts/Zodiak-ThinItalic.woff2') format('woff2'),
       url('../fonts/Zodiak-ThinItalic.woff') format('woff'),
       url('../fonts/Zodiak-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Zodiak-Light';
  src: url('../fonts/Zodiak-Light.woff2') format('woff2'),
       url('../fonts/Zodiak-Light.woff') format('woff'),
       url('../fonts/Zodiak-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Zodiak-LightItalic';
  src: url('../fonts/Zodiak-LightItalic.woff2') format('woff2'),
       url('../fonts/Zodiak-LightItalic.woff') format('woff'),
       url('../fonts/Zodiak-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Zodiak-Regular';
  src: url('../fonts/Zodiak-Regular.woff2') format('woff2'),
       url('../fonts/Zodiak-Regular.woff') format('woff'),
       url('../fonts/Zodiak-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Zodiak-Italic';
  src: url('../fonts/Zodiak-Italic.woff2') format('woff2'),
       url('../fonts/Zodiak-Italic.woff') format('woff'),
       url('../fonts/Zodiak-Italic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Zodiak-Bold';
  src: url('../fonts/Zodiak-Bold.woff2') format('woff2'),
       url('../fonts/Zodiak-Bold.woff') format('woff'),
       url('../fonts/Zodiak-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Zodiak-BoldItalic';
  src: url('../fonts/Zodiak-BoldItalic.woff2') format('woff2'),
       url('../fonts/Zodiak-BoldItalic.woff') format('woff'),
       url('../fonts/Zodiak-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Zodiak-Extrabold';
  src: url('../fonts/Zodiak-Extrabold.woff2') format('woff2'),
       url('../fonts/Zodiak-Extrabold.woff') format('woff'),
       url('../fonts/Zodiak-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Zodiak-ExtraboldItalic';
  src: url('../fonts/Zodiak-ExtraboldItalic.woff2') format('woff2'),
       url('../fonts/Zodiak-ExtraboldItalic.woff') format('woff'),
       url('../fonts/Zodiak-ExtraboldItalic.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Zodiak-Black';
  src: url('../fonts/Zodiak-Black.woff2') format('woff2'),
       url('../fonts/Zodiak-Black.woff') format('woff'),
       url('../fonts/Zodiak-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Zodiak-BlackItalic';
  src: url('../fonts/Zodiak-BlackItalic.woff2') format('woff2'),
       url('../fonts/Zodiak-BlackItalic.woff') format('woff'),
       url('../fonts/Zodiak-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: 'Zodiak-Variable';
  src: url('../fonts/Zodiak-Variable.woff2') format('woff2'),
       url('../fonts/Zodiak-Variable.woff') format('woff'),
       url('../fonts/Zodiak-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: 'Zodiak-VariableItalic';
  src: url('../fonts/Zodiak-VariableItalic.woff2') format('woff2'),
       url('../fonts/Zodiak-VariableItalic.woff') format('woff'),
       url('../fonts/Zodiak-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}
/**
* @license
*
* Font Family: Outfit
* Designed by: On Brand Investments Pty Ltd, Rodrigo Fuenzalida
* URL: https://www.fontshare.com/fonts/outfit
* © 2026 Indian Type Foundry
*
* Outfit Thin 
* Outfit ExtraLight 
* Outfit Light 
* Outfit Regular 
* Outfit Medium 
* Outfit SemiBold 
* Outfit Bold 
* Outfit ExtraBold 
* Outfit Black 
* Outfit Variable (Variable font)

*
*/
@font-face {
  font-family: 'Outfit-Thin';
  src: url('../fonts/Outfit-Thin.woff2') format('woff2'),
       url('../fonts/Outfit-Thin.woff') format('woff'),
       url('../fonts/Outfit-Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-ExtraLight';
  src: url('../fonts/Outfit-ExtraLight.woff2') format('woff2'),
       url('../fonts/Outfit-ExtraLight.woff') format('woff'),
       url('../fonts/Outfit-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-Light';
  src: url('../fonts/Outfit-Light.woff2') format('woff2'),
       url('../fonts/Outfit-Light.woff') format('woff'),
       url('../fonts/Outfit-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-Regular';
  src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
       url('../fonts/Outfit-Regular.woff') format('woff'),
       url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-Medium';
  src: url('../fonts/Outfit-Medium.woff2') format('woff2'),
       url('../fonts/Outfit-Medium.woff') format('woff'),
       url('../fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-SemiBold';
  src: url('../fonts/Outfit-SemiBold.woff2') format('woff2'),
       url('../fonts/Outfit-SemiBold.woff') format('woff'),
       url('../fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-Bold';
  src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
       url('../fonts/Outfit-Bold.woff') format('woff'),
       url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-ExtraBold';
  src: url('../fonts/Outfit-ExtraBold.woff2') format('woff2'),
       url('../fonts/Outfit-ExtraBold.woff') format('woff'),
       url('../fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit-Black';
  src: url('../fonts/Outfit-Black.woff2') format('woff2'),
       url('../fonts/Outfit-Black.woff') format('woff'),
       url('../fonts/Outfit-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 100.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: 'Outfit-Variable';
  src: url('../fonts/Outfit-Variable.woff2') format('woff2'),
       url('../fonts/Outfit-Variable.woff') format('woff'),
       url('../fonts/Outfit-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}



