@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face{font-family:monument extended;font-style:normal;font-weight:400;src:local('Monument Extended'),url(https://fonts.cdnfonts.com/s/19595/MonumentExtended-Regular.woff) format('woff')}
@font-face{font-family:monument extended;font-style:normal;font-weight:800;src:local('Monument Extended'),url(https://fonts.cdnfonts.com/s/19595/MonumentExtended-Ultrabold.woff) format('woff')}
.montserrat-universal {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
:root {
    --light: #E43A57;
    --mid-light: #892F4F;
    --mid-dark: #301B3E;
    --dark: #1C1124;
}
a {
    text-decoration: none;
    color: unset;
}
body {
    font-family: 'Montserrat', sans-serif;
}
h1 {
    font-family: Montserrat;
}
.gradient-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #ffffff00 50%);
    backdrop-filter: blur(5px);
    z-index: 9998;
}
.verright {
    z-index: 5555555555555555;
    bottom: 0;
    right: 0;
    position:fixed;
    color: white;
    font-size: 15px;
    opacity: 0.5;
    font-family: 'Inconsolata', monospace;
  }
  .left {
    z-index: 5555555555555555;
    bottom: 0;
    left: 0;
    position:fixed;
    color: white;
    font-size: 15px;
    opacity: 0.5;
    font-family: 'Inconsolata', monospace;
    cursor: pointer;
  }
  .left:hover {
    text-decoration-line:underline;
    font-size: 16px;
    color: blue;
  }
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #000000 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 20px #ffffff;
  }
html {
    overflow-x: hidden;
}
h1 {
    margin: 0;
}
.arrow {
    cursor: pointer;
    scale: 0.9;
    z-index: 10000;
    fill: black;
}
.uparrow {
    right: 0;
    bottom: 0;
    position: fixed;
    margin-bottom: 2vh;
    margin-right: 2vh;
    height: 10vh;
    width: 10vh;
    border-radius: 40%;
    background-color: rgba(255, 255, 255, 0.5);
    outline-color:rgba(0, 0, 0, 0);
    justify-content: center;
    align-content: center;
    border-color:rgba(255, 255, 255, 0);
}
.uparrow:hover {
    scale: 1.1;
    transition: scale .1s ease-in-out;
}
selector {
    z-index: 9999;
    padding: 0.5vw;
    position: fixed;
    display: flex;
    flex-direction: column;
    font-family: "montserrat";
    transition: all 200ms ease-in-out;
}
.burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    width: 30px;
    height:30px;
    cursor: pointer;
    margin-bottom: 5px;
}
.burger div {
    width: 15px;
    height: 2px;
    transition: all 200ms ease-in-out;
    background-color: white;
}
.burger:hover div {
    width: 30px;
}
.burger .burger1 {
    transition-delay: 50ms;
}
.burger .burger2 {
    transition-delay: 100ms;
}
.burger .burger3 {
    transition-delay: 150ms;
}
.menu {
    transition: all 200ms ease-in-out;
    transform: translateX(-500px);
}
.menu.menu-active {
    display: block;
    transform: translateX(0px);
}
.item {
    font-size: 3vh;
    color: #fff;
    transition: all 200ms ease-in-out;
    text-align: left;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.item:hover {
    font-weight: 800;
    color: rgb(239, 185, 255);
    mix-blend-mode: normal;
}
.item:hover::before {
    transition: all 200ms ease-in-out;
}
.item:hover p {
    width: 30px;
    background-color: rgb(239, 185, 255);
    margin-right: 5px;
}
.item p {
    display: inline-block;
    transition: all 400ms cubic-bezier(0.6, 0.13, 0, 0.97);
    height: 2px;
    width: 0px;
    background-color: #fff;
    margin: 0;
}
/* Staggered left-in animation for menu items */
.menu .item {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.menu.menu-active .item {
    opacity: 1;
    transform: translateX(0);
}
.menu.menu-active .item:nth-child(1) { transition-delay: 0ms; }
.menu.menu-active .item:nth-child(2) { transition-delay: 50ms; }
.menu.menu-active .item:nth-child(3) { transition-delay: 100ms; }
.menu.menu-active .item:nth-child(4) { transition-delay: 150ms; }
.menu.menu-active .item:nth-child(5) { transition-delay: 200ms; }
.menu.menu-active .item:nth-child(6) { transition-delay: 250ms; }
.menu.menu-active .item:nth-child(7) { transition-delay: 300ms; }
.menu.menu-active .item:nth-child(8) { transition-delay: 350ms; }
.menu.menu-active .item:nth-child(9) { transition-delay: 400ms; }

/* After a short timeout JS will add the .menu-opened class to disable staggered delays
   for subsequent interactions. Use !important so this override wins over nth-child rules. */
.menu.menu-active.menu-opened .item { transition-delay: 0ms !important; }

.video-container {
    position: fixed;
    overflow: hidden;
    top: 50%;
    left: 50%;
    scale: 1;
    transform: translate(-50%,-50%);
    width: auto;
    height: auto;
    transition: all .01s ease-in-out; 
    z-index: -5;
    min-width: 100%; 
    min-height: 100%; 
  }
.content {
    z-index: 150;
}
body {
    overflow-x: hidden;
    margin: 0;
    width: 100%;
}
.logo {
    float: right;
    z-index: 1;
    width: 110px;
    position: fixed;
    transition: all .1s ease-in-out; 
    top: 0;
    right: 0;
    margin-top: 7px;
    margin-right: 7px;
    cursor: pointer;
}
.logo:hover {
    scale: 1.1;
}
.content-backgrounds {
    background-color: var(--light);
}
.miscwbg {
    background-color: white;
    position: absolute;
    z-index: 5;
    padding: 10px;
}
.misc {
    background-color: var(--light);
}
.Thumbs {
    background-color: var(--mid-light);
    gap: 50px;
}
.misc, .Thumbs, .Transitions, .visuals {
    justify-items: center;
    align-items: center;
    display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    grid-template-rows: auto auto auto;
    gap: 8vw;
    padding-left: 5vw;
    padding-right: 5vw;
}
.Transitions {
    background: var(--mid-dark);
}
.miscbg {
    transition: scale .1s ease-in-out;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////CONTENT SETTINGS/////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
.miscbg1, .ThumbsImg, .trans, .poster, .visual, .jerseyimg {
    width: 100%;
    height: 100%;
    transition: scale .1s ease-in-out;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.miscbg:hover, .miscbg1:hover, .ThumbsImg:hover, .trans:hover, .poster:hover, .visual:hover, .jerseyimg:hover  {
    box-shadow: 10px 5px 15px rgba(0, 0, 0, 0.4);
    scale: 1.01 ;
    cursor: pointer;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////CONTENT SETTINGS/////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
.hidden {
    transform: translateX(-100%);
    transition: all 500ms ease-in-out;
    opacity: 0;
    filter:blur(10px);
    color:#1C1124;
    font-weight: 0;
    rotate: -15deg;
}
* {
    scroll-behavior: smooth;
}
.show {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    color: #fff;
    font-weight: 700;
    rotate: 0deg;
}
.header {
    font-family: Montserrat;
    display: grid;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 48pt;
    color: white;
    scale: auto;
    z-index: 10000000;
}
wave {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 900/200;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
}
.miscwave {
    background-image: url(../res/wave-backgrounds/wavebg.svg);
}
.thumbwave {
    background-image: url(../res/wave-backgrounds/wavethumbnail.svg);
}
.transwave {
    background-image: url(../res/wave-backgrounds/wave-mographs.svg);
}
.webwave {
    background-image: url(../res/wave-backgrounds/waveweb.svg);
}
.img1 {
    grid-column: 1;
}
.img2 {
    grid-column: 2;
}
.img3 {
    grid-column: 1;
    grid-row: 1;
}
.img4 {
    grid-column: 2;
    grid-row: 2;
}
.img5 {
    grid-column: 1;
    grid-row: 3;
}
.img6 {
    grid-column: 2;
    grid-row: 4;
}
h1 {
    color: white;
    text-align: center;
    font-family: Montserrat
}
.trans1 {
    grid-column: 1;    
}
.trans2 {
    grid-column: 2;
}
.trans3 {
    grid-row: 2;
    grid-column: 1;
} 
.trans4 {
    grid-row: 2;
    grid-column: 2;
}
.trans5 {
    grid-row: 3;
    grid-column: 1;
}
.trans6 {
    grid-row: 3;
    grid-column: 2;
}
.websites {
    font-family: Montserrat;
    display: flex;
    flex-direction: column;
    background-color: var(--dark);
    color: white;
    width: 100vw;
    justify-content: space-around;
}
.web {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 28pt;
}
.web > h1 {
    margin: 5vh;
}
.website {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.prev {
    width: 30vw;
    border-radius: 25px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.web-button {
    font-family: Monument Extended;
    background: var(--light);
    font-size: 1vmax;
    padding: 2vw;
    transition: 100ms ease-in-out;
    border-radius: 25px;
    outline: 0px solid rgba(255, 255, 255, 0.5);

}
.web-button:hover {
    background-color: var(--mid-dark);
    color: var(--light);
    text-shadow: 0 0 15px #E43A57;
    scale: 1.05;
    outline: 5px solid rgba(37, 4, 59, 0.671);
}
.website3 {
    padding-bottom: 10vh;
}
.designmanuals {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--mid-dark);
    color: white;
}
.manual {
    text-align: center;
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-items: center;
    align-items: center;
    width: 80%;
}
.manualpreview {
    border-radius: 25px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    aspect-ratio: 6/4;
    width: 50%;
}
.manual a {
    width: min-content;
    white-space: nowrap;
}
.manualdescription {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.dm-button {
    font-family: Monument Extended;
    background: var(--light);
    font-size: 1.2vmax;
    padding: 2vw;
    transition: 100ms ease-in-out;
    border-radius: 25px;
    outline: 0px solid rgba(255, 255, 255, 0.5);
}
.dm-button:hover {
    background-color: var(--mid-dark);
    color: var(--light);
    text-shadow: 0 0 15px #E43A57;
    scale: 1.05;
    outline: 2px solid rgba(255, 255, 255, 0.5);
}
.dmwave {
    transform: rotate(180deg);
}
.dmwave h1 {
    transform: rotateZ(180deg);
}
.posters {
    background-color: var(--mid-light);
    justify-items: center;
  align-items: center;
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  grid-template-rows: auto auto auto;
  gap: 8vw;
  padding-left: 5vw;
  padding-right: 5vw;
}
.visuals {
    background-color: var(--light);
}
.Apparel {
    background-color: var(--mid-light);
    justify-items: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.jerseytitle {
    margin-top: 50px;
    margin-bottom: 50px;
}
.jersey {
    justify-items: center;
  align-items: center;
  display: grid; 
  grid-template-columns: 3fr 3fr 3fr;
  grid-template-rows: auto auto auto;
  gap: 8vw;
  padding-left: 5vw;
  padding-right: 5vw;
}
@media only screen and (max-width: 600px) {
    .websites {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .website {
        justify-content: center;
        align-content: center;
        flex-direction: column;
        width: 100%;
    }
    .web {
        justify-content: center;
        align-items: center;
    }
    .web-button {
        font-size: 18pt 
    }
    .prev {
        width: 80vw;
        margin: 5vw;
    }
    h1.ThumbHeader {
        font-size: 5vh;
    }
    .TransHeader {
        font-size: 5vh;
    }
    .mischeader {
        font-size: 5.5vh;
    }
    .logo {
        opacity: 0.5;
    }
    .misc, .Thumbs, .Transitions {
        grid-template-columns: 3fr;
        grid-template-rows: repeat(6, auto);
    }
    .misc5 {
        grid-area: unset;
        width: 100%;
    }
    .trans, .Thumbs, .misc {
        gap: 10vw;
    }
    .header {
        font-size: 24pt;
    }
    .web {
        font-size: 18pt;
    }
    .manual {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .manualpreview {
        width: 100%;
    }
    .manual a {
        width: 60%;
    }
    .dm-button {
        font-size: 12pt;
    }
    .posters {
        display: flex;
        flex-direction: column;
    }
    .visuals {
        display: flex;
        flex-direction: column;
    }
}
@media (prefers-color-scheme: dark) {}
.vid {
    width:auto;
    max-height: 100%;
    max-width: 100%;
    transition: scale .1s ease-in-out;
    display:flex;
    flex-direction: column;
    gap: 2.5px;
    align-items: center;
}

.vid1 {
    grid-column: 1;
    border-radius: 1em;
}
.vid2 {
    grid-column: 2;
    grid-row: 1;
    border-radius: 1em;
}
.vid3 {
    grid-row: 2;
    border-radius: 1em;
}

/* --- Overlay animation classes --- */
.anim-fade {
    animation: pf-fade-in 280ms ease-out;
}
.anim-zoom {
    animation: pf-zoom-in 300ms cubic-bezier(.2,.9,.2,1);
}
.anim-slide-right {
    animation: pf-slide-in-right 300ms cubic-bezier(.2,.9,.2,1);
}
.anim-slide-left {
    animation: pf-slide-in-left 300ms cubic-bezier(.2,.9,.2,1);
}

@keyframes pf-fade-in {
    from { opacity: 0; transform: translateY(6px) scale(0.995); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pf-zoom-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pf-slide-in-right {
    from { opacity: 0; transform: translateX(24px) scale(0.99); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes pf-slide-in-left {
    from { opacity: 0; transform: translateX(-24px) scale(0.99); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* overlay arrows and counter */
.overlay-arrow {
    position: absolute; /* position relative to the overlay so arrows align with centered media */
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.28);
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10003;
    transition: background .12s ease, transform .08s ease;
}
.overlay-arrow:hover { background: rgba(255,255,255,0.12); transform: translateY(-50%) scale(1.05); }
.overlay-arrow:active { transform: translateY(-50%) scale(0.98); }
.overlay-arrow-left { left: 18px; }
.overlay-arrow-right { right: 18px; }
.overlay-counter {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
}

/* overlay close button */
.overlay-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10005;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: rgba(0,0,0,0.32);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.overlay-close:hover { background: rgba(255,255,255,0.08); }

/* pagination dots and colors from :root */
.overlay-dots {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10004;
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}
.overlay-dots-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap; /* prevent wrapping which can stretch items */
}
.overlay-dots-inner::-webkit-scrollbar { display: none; }
.overlay-dots-inner { scrollbar-width: none; -ms-overflow-style: none; }
.overlay-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--mid-dark);
    opacity: 0.95;
    cursor: pointer;
    /* No transitions or animations for dots (hover and active changes are instantaneous). */
    transition: none;
    display: inline-flex; /* avoid flex children stretching */
    flex: 0 0 12px;
    padding: 0;
    margin: 0;
}
.overlay-dot:hover {
    /* No animated transform — change background instantly on hover only. */
    background: var(--mid-light);
    opacity: 1;
}
.overlay-dot.active {
    background: var(--light);
    box-shadow: 0 0 14px 4px rgba(228,58,87,0.14), 0 0 30px rgba(228,58,87,0.22);
}

/* arrow image inside button */
.overlay-arrow-img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    display: block;
    pointer-events: none; /* clicks handled by button */
}

/* mobile: move overlay arrows below center */
@media (max-aspect-ratio: 5/6) {
        .overlay-arrow {
                top: auto !important; 
                transform: none !important;
                bottom: 80px !important;
                width: 56px;
                height: 56px;
                font-size: 28px;
        }
        .overlay-arrow-left {
                left: calc(50% - 70px) !important;
                right: auto !important;
        }
        .overlay-arrow-right {
                left: calc(50% + 14px) !important;
                right: auto !important;
        }
        .overlay-dots {
                display: hidden;
                opacity: 0;
        }
        .overlay-arrow:hover { transform: none !important; }
        .overlay-arrow:active { transform: none !important; }
}
