*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mono-0: #050505;
    --mono-1: #101010;
    --mono-2: #1e1e1e;
    --mono-3: #3a3a3a;

    --text-main: #f2f2f2;
    --text-muted: #bcbcbc;

    --accent: #ff4b81;
}

@font-face {
    font-family: "Akira";
    src: url("../../../fonts/Akira Expanded Demo.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

/* =======================================
   PAGE BASE
======================================= */

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at top, #111 0, var(--mono-0) 50%, #000 100%);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

section {
    width: 100vw;
    min-height: 100vh;  
}

footer {
    width: 100vw;
    padding: 3rem 0;     
}

/* =======================================
   HEADER
======================================= */

header {
    width: 100vw;          
    height: 100vh;
    margin: 0;

    background-color: var(--mono-1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    text-align: center;
}

.header {
    width: 70vw;
    max-width: 70vw;
    margin: 0 auto;        
}

.typing {
    font-size: 1.6vw;       
    line-height: 1.2;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--accent);
    font-family: "Akira";
    text-align: center;
    white-space: nowrap; 
}




/* =======================================
   TYPOGRAPHY
======================================= */

h1 {
    font-size: 4rem;
    font-family: "Oswald-Variable", sans-serif;
    text-align: center;
    color: var(--text-main);
}

h2 {
    font-size: 3rem;
    text-align: center;
    font-family: "Oswald-Variable", sans-serif;
    color: var(--text-main);
}

h4 {
    text-align: center;
    color: var(--accent);
    font-size: 1.5rem;
    font-family: "Oswald-Variable", sans-serif;
    letter-spacing: 0.18em;
}

h5 {
    font-size: 2.5rem;
    color: var(--text-main);
    font-family: "Oswald-Variable", sans-serif;
    text-align: center;
    margin-bottom: 1rem;
}

h6 {
    color: var(--text-main);
    font-size: 1.2rem;
    font-family: "Oswald-Variable", sans-serif;
    margin: 0.8rem auto 0.2rem;
    max-width: 800px;
    padding: 0 1.5rem;
    transition: color 0.5s ease, transform 0.5s ease;
}

h6:hover {
    color: var(--accent);
    transform: translateX(10px);
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0.6rem auto 1rem;
    padding: 0 1.5rem;
}

/* =======================================
   MAIN LAYOUT & SECTIONS
======================================= */

main {
    width: 100vw;
}

.darkpink {
    background: radial-gradient(circle at top left, rgba(255, 75, 129, 0.12), transparent 55%), var(--mono-1);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section {
    background-color: var(--mono-2);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.current   { background-color: var(--mono-1); }

/* =======================================
   INFINITE SCROLL STRIP
======================================= */

.infinite-scroll-container {
    width: 80%;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--mono-3);
    background: linear-gradient(90deg, rgba(255, 75, 129, 0.18), transparent);
    overflow: hidden;
    text-align: right;           
}

.infinite-scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--text-main);
    white-space: nowrap;
}

/* =======================================
   IMAGES
======================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-image {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 1rem;
    border: 1px solid var(--mono-3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
}

/* =======================================
   FIXED NAVIGATION BUBBLES (SCOPED)
======================================= */

nav {
    position: fixed;
    top: 25vh;
    right: clamp(16px, 4vw, 48px);
    z-index: 10;
}

nav ol li a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: clamp(40px, 2.8vw, 56px);
    height: clamp(40px, 2.8vw, 56px);


    border: clamp(2px, 0.2vw, 3px) solid var(--accent);

    border-radius: 50%;
    margin-bottom: clamp(10px, 1.5vh, 18px);
    color: var(--text-main);
    background-color: var(--mono-1);
    text-decoration: none;

    position: relative;
    overflow: visible;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

@media (max-width: 900px) {
    .typing {
        font-size: 3.4vw;
    }
}

@media (max-width: 600px) {
    .typing {
        font-size: 4.2vw;
    }
}


nav ol li a span {
    position: absolute;
    top: 50%;
    right: 120%;                
    transform: translateY(-50%);
    white-space: nowrap;

    font-size: 0;
    opacity: 0;
    font-family: "Akira";
    color: #ff4b81;

    transition:
        font-size 0.25s ease,
        opacity 0.25s ease,
        right 0.25s ease;
}


nav ol li a:hover span {
    font-size: 1.1rem;         
    opacity: 1;
    right: 135%;               
}

nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ol li {
    list-style: none;
}

nav ol li::marker {
    content: "";
}



/* =======================================
   FOOTER
======================================= */

footer {
    background-color: var(--mono-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer h1 {
    font-size: 2rem;
    font-family: "Akira";
    src: url("../../../fonts/Akira\ Expanded\ Demo.otf");
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

footer p {
    color: var(--text-muted);
    text-align: center;
}

/* =======================================
   FLOATING LOGO NAV / BACK BUTTON
======================================= */

#navbar {
    position: fixed;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 10px 20px;
    background-color: transparent;
    border-radius: 1.5rem;
    backdrop-filter: blur(8px);
}

.back-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    background-color: var(--mono-1);
    border-radius: 50%;
    border: 3px solid var(--accent);
    overflow: visible;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-logo {
    display: block;
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
}

.back-btn span {
    position: absolute;
    left: 70px;
    white-space: nowrap;

    font-size: 0;
    opacity: 0;
    color: #ff4b81;
    font-family: "Akira";
    src: url("../../../fonts/Akira\ Expanded\ Demo.otf");
    

    transition:
        font-size 0.25s ease,
        opacity 0.25s ease,
        left 0.25s ease;
}


.back-btn:hover span {
    font-size: 1.2rem;
    opacity: 1;
    left: 80px;  
}

.back-btn:hover {
    transform: scale(1.05);
}

/* =======================================
   GENERIC CIRCLE BUTTON WITH HOVER REVEAL
======================================= */

.circle-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    border-radius: 999px;
    border: 3px solid var(--accent);

    background-color: var(--mono-1);
    overflow: visible;
    cursor: pointer;
    text-decoration: none;
}


.circle-btn:hover .circle-label {
    font-size: 1.2rem;
    opacity: 1;
    left: 70px;        
}

.circle-btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* =======================================
   BACK TO TOP BUBBLE
======================================= */

.back-to-top-wrapper {
    display: flex;
    justify-content: flex-start;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.back-to-top-row {
    max-width: 800px;       
    margin: 2rem auto 0;      
    padding-left: 1.5rem;      
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.back-to-top-bubble {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background-color: var(--mono-1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.back-to-top-bubble:hover {
    transform: scale(1.06);
}

.back-to-top-label {
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;

    font-size: 0;        
    opacity: 0;          
    color: #ff4b81;
    font-family: "Akira";
    src: url("../../../fonts/Akira\ Expanded\ Demo.otf");

    transition:
        font-size 0.25s ease,
        opacity 0.25s ease,
        left 0.25s ease;
}

.back-to-top-bubble:hover .back-to-top-label {
    font-size: 1rem;
    opacity: 1;
    left: 130%;
}

/*
  __  __  __   __
|  \/  | | | / /
| |\/| | | |/ /
| |  | | |   |
| |  | | |    \
|_|  |_| |_| \_\
                         M  K  S  T  U  D  I  O
*/