@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    /* border: 1px solid red; */
}

:root {
    --prim: rgb(255, 245, 112);
    --secon: rgb(136, 89, 189);

	
	--prim-dim: rgb(180, 173, 70);
	--secon-dim: rgb(95, 62, 130);

	--beam-count: 25;
	--duration: 40s;
	
    --nav-height: 4rem;
}

body {
	margin: 0;
	padding: 0;

  background-color: black;
  color: white;
  font-family: Arial, sans-serif;

  /* background-image: url('https://images.unsplash.com/photo-1649962843028-54905316eb21?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2127'); */
  /* background-image: url('https://images.unsplash.com/photo-1762433813475-e6b761cc23d0?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1974'); */
  /* background: black; */
  background-position: center;

	position: relative;
	z-index: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .zalando-sans-expanded-<uniquifier> {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

/* 
	Background effect
 */


.rainbow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -100;
}

.rainbow-beam {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 0;
  transform: rotate(10deg);
  transform-origin: top right;
  animation: beam-slide var(--duration) linear infinite;
  z-index: -100;
}

@keyframes beam-slide {
  from { right: -25vw; }
  to   { right: 125vw; }
}

.rainbow-beam {
  animation-delay: calc(var(--duration) * -1 * (var(--i) / var(--beam-count)));
}

.h {
  box-shadow: 0 0 50vh 40vh white;
  width: 100vw;
  height: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -100;
}

.v {
  box-shadow: 0 0 35vw 25vw white;
  width: 0;
  height: 100vh;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -100;
}

.blur-border {
	border: 8px solid rgb(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  box-sizing: border-box;
  background-clip: content-box;
}

.rainbow-wrapper {
  background: linear-gradient(135deg, var(--prim-dim), var(--secon-dim));
  background-size: 150% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#particle-container {
  position: fixed;
  width: 100%;
  /* height: 100vh; */
}

.particle {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/*
  Headers & default elements
*/

h1 {
  top: 50%;
  left: 50%;

  /* width: 100%; */
  /* height: 100vh; */

  font-family: "Zalando Sans Expanded", sans-serif;
  /* height: 16rem; */
  /* text-align: center; */
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1.h1-client,
h1.h1-videography,
h1.h1-growth {
  font-family: "Zalando Sans Expanded", sans-serif;
  /* width: 100%; */
  text-align: center;
  display: block;
  margin: 2rem;
  padding: 0;
}

h3 {
  font-family: "Zalando Sans", sans-serif;
  width: 100%;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

ul, p {
  margin: 0;
  padding: 0;

  width: 40%;

  font-family: "Zalando Sans", sans-serif;

  /* position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* display: grid; */
  /* grid-template-columns: repeat(3, 1fr); */

  font-size: 16px;
  font-weight: 100;
  
  color: rgba(255, 255, 255, 0.7);
}

ul li {
  padding: 0.25rem 5rem;
  width: 40rem;
  text-align: center;
  font-family: "Zalando Sans", sans-serif;
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  /* margin-bottom: 2rem; */
  height: var(--nav-height);
}

nav a {
  font-family: "Zalando Sans Expanded", sans-serif;
  color: inherit;
  font-weight: 100;
  text-decoration: none;
}

nav a {
  padding: 0.25rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.05);
}

nav a::before {
  position: absolute;
  inset: 0;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 245, 112, 0.2),
    rgba(136, 89, 189, 0.2)
  );
}

nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

nav a:visited,
nav a:hover,
nav a:active {
  color: inherit;
  text-decoration: none;
}

menu-ctr {
  position: absolute;
  top: 0%;
  left: 0%;

  width: 3rem;
  aspect-ratio: 1;

  margin-top: 1rem;
  margin-left: 1rem;

  /* padding: 0.5rem 2rem; */
  border-radius: 0.5rem;
  /* border: 1px solid; */
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* Mobile nav overlay */
@media screen and (max-width: 991px) {
    menu-ctr {
        display: flex;
    }

    nav {
        display: flex;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 9rem 3rem;
        border-radius: 1rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.1);
        z-index: 9999;

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    nav.show {
        opacity: 1;
        pointer-events: all;
    }

    .nav-close {
      display: flex;
    }
}


/* @media screen and (max-width: 991px) */

/*
  Title elements
*/

dc-title {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-weight: 800;
  font-size: 96px;

  height: calc(84vh - var(--nav-height));

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 0rem;
  padding: 0.5rem;
}


@media screen and (max-width: 991px) {
    dc-title {
      font-size: 48px;
      height: calc(100vh);
    }

    dc-title p {
      font-size: 14px;
      width: 100%;
    }
}

@media screen and (max-width: 479px) {
    dc-title {
      font-size: 36px;
    }

    dc-title p {
      font-size: 12px;
      width: 100%;
    }
}

.david-image {
  border: 1px solid white;
  width: 5rem;
  border-radius: 100%;
  width: 200px;
}

/* dc-title img { 
  width: 100%;
} */

/* Client Testimonials */

client-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10rem;

  position: fixed;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  pointer-events: none;
}

client-carousel * {
  pointer-events: auto;
}

@media screen and (max-width: 991px) {
    client-carousel {
      position: relative;
      flex-direction: column;
      gap: 1rem;
    }
}


tt-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

tt-info > img:first-of-type {
  position: absolute;
  top: 2rem;
  left: -3rem;
}

tt-info > img:last-of-type {
  position: absolute;
  top: 2rem;
  right: -3rem;
}

single-client-ctr {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  position: relative;

  width: 25rem;
  /* height: 12rem; */
  margin: 1rem 0rem;
  /* padding: 0rem 1rem 1rem; */

  font-family: "Zalando Sans", sans-serif;
}

client-name {
  display: block;
  
  font-family: "Zalando Sans Expanded", sans-serif;
  font-weight: 750;
  font-size: 16px;
  text-align: center;
}

client-quote {
  font-weight: 250;
  font-size: 14px;
  text-align: center;
}

client-handle {
  display: block;
  text-align: left;
  opacity: 0.5;
  text-align: center;
}

client-img {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

client-img img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  /* border: 1px solid rgba(255,255,255,0.3); */
}

/* Impact Charts */

.chart-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	/* display: grid; */
	/* grid-template-columns: repeat(auto-fill, 480px);  */
	gap: 1rem;
	/* height: 0vh; */
	/* width: 100vw; */
	padding: 1rem;
	justify-content: center;
}

.chart-container canvas {
	/* border: 1px dotted red; */
	background-color: #222222;
}

.chart {
	width: 480px;
	height: 180px;
}

chart-box {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 1rem;

	font-family: "Zalando Sans", sans-serif;
	font-weight: 300;
}

chart-img {
	display: inline-block;
	overflow: hidden;
	border-radius: 16px;
}

chart-img img {
	display: block;
	width: 100%;
	height: auto;
}

chart-img {
    position: relative;
    display: inline-block;
    border-radius: 32px;
    overflow: hidden;
}

chart-img::before,
chart-img::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    /* background: rgb(0, 128, 128); */
    pointer-events: none;
}

chart-img::before {
    left: 20%;
	bottom: 33%;
}

chart-img::after {
    left: 60%;
	bottom: 33%;
}

/* chart-img.bryceup::before,
chart-img.shroud::before,
chart-img.tarik::before {
    left: 20%;
	  bottom: 9.5%;
    background: rgb(196, 0, 0);
} */

/* chart-img.bryceup::after,
chart-img.shroud::after,
chart-img.tarik::after {
    left: 60%;
	  bottom: 9.5%;
    background: rgb(196, 0, 0);
} */
 
chart-img.hansumsmella,
chart-img.jimmyherelive,
chart-img.couchcast,
chart-img.mizkif,
chart-img.shroud,
chart-img.bryceup {
  width: 60rem;
}

chart-img.hansumsmella::before {
  left: 54%;
  border-left: 3px dotted rgba(65, 180, 217);
}

chart-img.jimmyherelive::before {
  left: 22%;
  border-left: 3px dotted rgba(65, 180, 217);
}

chart-img.couchcast::before {
  left: 29%;
  border-left: 3px dotted rgba(65, 180, 217);
}

chart-img.shroud::before {
  left: 50%;
  bottom: 9.5%;
  border-left: 3px dotted rgba(184, 84, 74);
}

chart-img.bryceup::before {
  left: 31%;
  bottom: 9.5%;
  border-left: 3px dotted rgba(184, 84, 74);
}

chart-img.tarik::before {
  left: 29%;
  bottom: 9.5%;
  border-left: 3px dotted rgba(184, 84, 74);
}

chart-img.mizkif::before {
  left: 21.5%;
  bottom: 33%;
  border-left: 3px dotted rgb(142, 140, 255);
}

.mizkif-label {
    position: absolute;
    left: 46%;
    bottom: 38%;
    color: rgb(255, 255, 255);
    font-family: "Zalando Sans", sans-serif;
}

chart-img.mizkif::after {
  left: 41%;
  bottom: 33%;
  border-left: 3px dotted rgb(142, 140, 255);
}

/* 
Consulted Channels
*/

.consulted-channels,
.roles-with-clients {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1rem;
  width: 80%;
  margin: 2rem auto;
  justify-content: center;
}

.managed-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, max-content));
  justify-content: center;
  gap: 1rem;
  width: 80%;
  margin: 2rem auto;
}


channel-ctr {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

channel-ctr:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

channel-subctr {
	display: flex;
	flex-direction: column;
}


roles-channel-ctr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 1rem 1.5rem;
  border-radius: 16px;
  
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  gap: 1rem;
  font-family: "Zalando Sans", sans-serif;
  text-align: center;
  font-weight: 300;
}

roles-channel-ctr channel-name {
	font-weight: 500;
}

.consulted-channels channel-name,
.managed-channels channel-name,
channel-handle {
  margin-left: 0.75rem;
  font-size: 16px;
  color: white;
  font-weight: 400;
  font-family: "Zalando Sans", sans-serif;
}

channel-handle {
	color: rgba(255, 255, 255, 0.5);
}

.consulted-channels channel-ctr img,
.managed-channels channel-ctr img,
.roles-with-clients roles-channel-ctr img {
  width: 64px;
  border-radius: 50px;
}

contact-aboutme-p {
	display: flex;

	width: 100%;
	/* margin: 0 auto; */

	font-family: "Zalando Sans", sans-serif;

	font-size: 16px;
	font-weight: 100;
}

contact-ctr {
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: left;

	width: 50%;
	margin: 0 auto;
}

contact-p-light {
  margin-block: 2rem 1rem;
  padding: 0;

  font-family: "Zalando Sans", sans-serif;

  font-size: 10px;
  font-weight: 100;

  color: rgba(255, 255, 255, 0.7);
}

vfx-p-light {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-block: 2rem 1rem;

  font-family: "Zalando Sans", sans-serif;

  font-size: 16px;
  font-weight: 100;

  color: rgba(255, 255, 255, 0.7);

}

contact-p,
vfx-p {
  font-family: "Zalando Sans", sans-serif;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;

  font-size: 16px;
  font-weight: 100;

  gap: 0.5rem;
}

contact-p a,
vfx-p a {
  position: relative;
  display: inline-block;
  color: inherit;
  font-weight: 400;
  text-decoration: none;
}

vfx-p {
  align-items: center;
  justify-content: center;
  margin: 1rem;
}

contact-p a::after,
vfx-p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

contact-p a:hover::after,
vfx-p a:hover::after {
  width: 100%;
}

channel-p,
videography-p,
growth-p {
  margin: 2rem;
  padding: 0;

  font-family: "Zalando Sans", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* display: grid; */
  /* grid-template-columns: repeat(3, 1fr); */

  font-size: 16px;
  font-weight: 100;
}

.roles-with-clients channel-ctr ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}

.roles-with-clients channel-ctr ul li {
	/* padding: 0.25rem 0; */
	font-family: "Zalando Sans", sans-serif;
	text-align: right;
}


/* 
	YouTube Videos
*/

yt-videos-r1,
yt-videos-r2 {
  display: flex;
  gap: 1rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

yt-videos-r1 {
  width: 80rem;
}

yt-videos-r2 {
  width: 54rem;
}

yt-videos-r1 iframe,
yt-videos-r2 iframe {
  max-width: 100%;
  height: auto;
}

.yt-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 225px;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.yt-card {
  overflow: hidden;
}

yt-shorts {
	display: grid;
	grid-template-columns: repeat(auto-fit, 225px);
	gap: 1rem;
	width: 50%;
	margin: 1rem auto;
	justify-content: center;
}

.ytshorts-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* width: 100%; */
  height: 400px;
}

video-concepts {
	display: grid;
	grid-template-columns: repeat(auto-fit, 400px);
	gap: 1rem;
	width: 80%;
	margin: 2rem auto;
	justify-content: center;
}

single-video {
  border-radius: 16px;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background-color: rgb(32, 32, 32);
}

single-video img {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

single-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* 
  Thumbnail Concepts
*/

/* Container for the entire row */
thumb-ctr {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 4rem;
}

/* Each column inside the row */
thumb-concept,
thumb-result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Arrow column */
right-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Individual thumbnails */
.thumbnail-test {
  width: 24rem;
  height: 13.5rem;
  border-radius: 8px;
  object-fit: cover;
}

/* Arrow styling */
.r-arr {
  font-size: 2rem;
  width: 8rem;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
