/* Thunder Font Family */
@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-ThinHC.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-ThinHCItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-ExtraLightHC.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-ExtraLightHCItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-LightHC.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-LightHCItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-HC.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-HCItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-MediumHC.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-MediumHCItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-SemiBoldHC.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-SemiBoldHCItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-BoldHC.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-BoldHCItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-ExtraBoldHC.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-ExtraBoldHCItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-BlackHC.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('FONT-FAMILY/Thunder-BlackHCItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Thunder LC (Low Contrast) Variants */
@font-face {
    font-family: 'Thunder LC';
    src: url('FONT-FAMILY/Thunder-LC.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder LC';
    src: url('FONT-FAMILY/Thunder-SemiBoldLC.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder LC';
    src: url('FONT-FAMILY/Thunder-SemiBoldLCItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Thunder LC';
    src: url('FONT-FAMILY/Thunder-BoldLC.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder LC';
    src: url('FONT-FAMILY/Thunder-ExtraBoldLC.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder LC';
    src: url('FONT-FAMILY/Thunder-BlackLC.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

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

html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Thunder', sans-serif;
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
}

#hydra-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

#hero {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    z-index: 2;
}

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: #fff;
}

.hero-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrowBounceVertical 1.5s ease-in-out infinite;
}

.hero-scroll-arrow svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

@keyframes arrowBounceVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.hero-scroll-text {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    color: #fff;
    transform: rotate(90deg);
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 150px;
    height: auto;
    z-index: 100;
}

/* Base styles for all brief rows - keep background colors */
.breif-01 {
    background-color: #37E2AD;
}

.breif-02 {
    background-color: #FFA407;
}

.breif-03 {
    background-color: #000;
}

.breif-03 .ethos-row-title,
.breif-03 .ethos-row-body-short,
.breif-03 .ethos-row-body-full,
.breif-03 .ethos-row-title.title-animate,
.breif-03:hover .ethos-row-title,
.breif-03:hover .ethos-row-body-short,
.breif-03:hover .ethos-row-body-full,
.breif-03 .ethos-row-body-full .word {
    color: #fff !important;
}

/* Ethos Row Structure */
.ethos-row {
    position: relative;
    width: 100%;
    height: 8vh;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    transition: height 0.6s ease-in-out,
                opacity 0.8s ease,
                transform 0.8s ease;
}

/* Reveal state (triggered by scroll) */
.ethos-row.reveal {
    opacity: 1;
    transform: translateY(0);
}

.ethos-row-inner {
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    position: relative;
}

.ethos-row-title {
    font-family: 'Thunder LC', sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.2;
    letter-spacing: 0.05em;
    transition: transform 0.4s ease, opacity 0.4s ease, letter-spacing 0.4s ease;
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

.ethos-row-title.title-animate {
    opacity: 1;
    transform: translateY(-4px);
    letter-spacing: 0.08em;
}

.ethos-row-body-short {
    font-family: 'Thunder LC', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
    opacity: 1;
    text-align: right;
    align-self: flex-start;
    margin-left: auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ethos-row-body-full {
    font-family: 'Thunder LC', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    line-height: 1.4;
    letter-spacing: 0.12em;
    width: 20vw;
    text-align: right;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* On hover: stack title and short body vertically, show full body */
.ethos-row:hover .ethos-row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.ethos-row:hover .ethos-row-body-short {
    opacity: 1;
    text-align: left;
    align-self: flex-start;
}

.ethos-row:hover .ethos-row-body-full {
    opacity: 1;
    transform: translateX(0);
    align-self: flex-end;
    margin-top: 1rem;
}

/* Word-by-word domino animation */
.ethos-row-body-full .word {
    display: inline-block;
    white-space: nowrap;
    opacity: 0.2;
    filter: blur(1px);
    animation: wordReveal 0.6s forwards;
}

@keyframes wordReveal {
    0% {
        opacity: 0.2;
        filter: blur(2px);
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
        color: #000;
    }
}

@keyframes wordRevealWhite {
    0% {
        opacity: 0.2;
        filter: blur(2px);
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
        color: #fff;
    }
}

.breif-03 .ethos-row-body-full .word {
    animation: wordRevealWhite 0.6s forwards;
}

/* Horizontal Scrolling Container */
.horizontal-scroll-container {
    width: 100%;
    height: 70vh;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    gap: 2px;
    padding: 0.2rem 0.1rem;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.scroll-item {
    width: 30%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.scroll-item-image {
    width: 100%;
    height: 95%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.scroll-item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.scroll-item-image:hover img {
    transform: scale(1.1);
}

.scroll-item-footer {
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
    box-sizing: border-box;
    background-color: #000;
    border: 1px solid #fff;
    align-items: center;
}

.scroll-item-title {
    color: #FFF;
    font-family: 'Thunder LC', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
    letter-spacing: -0.52px;
    text-transform: uppercase;
}

.scroll-item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.scroll-item-link svg {
    width: 34px;
    height: 33px;
    display: block;
}

.scroll-item-link:hover {
    opacity: 0.6;
}

/* Articles Section - RCA Style Split Scroll */
.articles-section {
    position: relative;
    width: 100%;
    padding: 8vh 0;
    background: #0a0a0a;
    overflow: hidden; /* Contain the expanded image */
}

.articles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    z-index: 5;
    position: relative;
}

.article-item {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #b3b3b3;
    text-decoration: none;
    display: block;
}

.article-item:hover {
    color: #fff;
}

.article-item.active {
    color: white;
}

.articles-visual {
    position: relative;
    height: 150vh;
    overflow: visible; /* Allow image to expand */
}

.articles-image {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.6s ease, transform 0.8s ease;
    opacity: 0;
    pointer-events: none; /* Prevent interaction when hidden */
}

.articles-image.expanded {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 2;
    mix-blend-mode: normal;
    pointer-events: auto;
}

/* Ensure image is hidden when section is out of view */
.articles-section:not(:target) .articles-image:not(.expanded) {
    opacity: 0;
}

.marquee {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Thunder LC', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2rem 0;
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about-section {
    background-color: rgb(0, 0, 0);
    transform: translate(0px, 0px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    touch-action: pan-y;
    cursor: pointer;
    position: relative;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.6;
    color: #fff;
    z-index: 2;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.about-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slide.prev {
    transform: translateX(-100%);
}

/* Arrow hint at bottom of slideshow container */
.about-slide-arrow-hint {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arrow-animated {
    animation: arrowBounce 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-animated svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.arrow-hint-text {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #fff;
    white-space: nowrap;
}

/* Second slide styling */
.about-slide-second {
    background-color: #FFA407;
    background-image: url('revibe_Page_02.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-size 0.6s ease;
}

.about-slide-second.active {
    background-size: cover;
}

.about-slide-second::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 164, 7, 0.7);
    border-radius: 0;
    z-index: 1;
}

.about-slide-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 80%;
}

/* Third slide styling */
.about-slide-third {
    background-color: #ff4e08;
    width: 100%;
    left: 0;
    right: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: pointer;
}

.container-50 {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.6;
    color: black;
    max-width: 50%;
    margin: 0 auto;
}

/* Mission Statement */
.mission-statement {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 80vh;
    position: relative;
    background-color: #FFA407;
}

.mission-statement-image {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.mission-statement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-statement-text {
    display: flex;
    align-content: space-around;
    align-items: center;
    width: 50%;
    padding: 0 8rem;
    display: block;
    font-family: 'Thunder LC', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.6;
    color: #000;
    box-sizing: border-box;
    position: relative;
    text-align: left;
}

.mission-statement-text .word {
    display: inline;
}

/* Join Us Section */
.join-us {
    background-color: #37E2AD;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-us-title{
    font-family: 'Thunder LC', sans-serif;
    font-size: 86px;
    font-weight: 800;
    font-style: normal;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.join-us a {
    font-family: 'Thunder LC', sans-serif;
    font-weight: 600;
    font-style: italic;
}

.join-us .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.join-us .word.animate {
    opacity: 1;
    transform: translateY(0);
}


.new-sound {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    font-family: 'Thunder', sans-serif;
    font-size: clamp(2rem, 5vw, 6rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.open-positions {
    position: relative;
    z-index: 2;
    display: block;
    text-align: center;
    padding: 1.5rem 3rem;
    margin: 2rem auto;
    max-width: 300px;
    font-family: 'Thunder', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.open-positions.hoverable:hover {
    background-color: #fff;
    color: #000;
}

footer {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    text-align: center;
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.9rem);
    color: #fff;
    background-color: #000;
    line-height: 2;
    word-spacing: 0.5em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-content-left,
.footer-content-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content-left-title {
    margin-bottom: 0.5rem;
}

.footer-content-left-title img {
    height: 1.5em;
    width: auto;
    display: block;
}

.footer-content-left-text,
.footer-content-right-title {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.9rem);
    color: #fff;
    text-transform: uppercase;
}

.footer-content-right-text {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.6rem, 0.8vw, 0.8rem);
    color: #fff;
}