/* Declaration */
:root {
  --mobile-breakpoint: 320px;
  --tablet-breakpoint: 640px;
  --desktop-breakpoint: 960px;

  /*usage: background-color: var(--primary-color)*/

}

html, body {
  /*
  background-color: rgb(0, 0, 0);
  margin: 0;
  height: 9000px;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  */

  background-color: rgb(0, 0, 0);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

header{
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  height: 76px;
  width: 100%;
  
  background: rgb(80 79 79 / 42%);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);

  border-bottom: .5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hidden{
  display: none !important;
}

.hidden_effect {
  opacity: 0;
  transform: translateY(20px); /* Starts 30 pixels down */
  transition: all 0.5s ease-out; /* Smoothly animates both opacity and position */
}

.show_effect {
  opacity: 1;
  transform: translateY(0); /* Slides up to its original position */
}

.regular_font {
  font-family: Arial, sans-serif;
}

.marketing_font {
  font-family: 'Times New Roman', serif;
}

.container {
  display: flex;
  flex-direction: column;
}

.panchannel_logo {
  position: inherit;
  width: 120px;
  height: 22.15px;
  margin-top: 23px;
  margin-left: 20px;
}

.card {
  width: 100%;
}

.container_nav {
  gap: 35px;
}

.links {
  /*display: none;*/
  visibility: hidden;
}

.hamburger_icon{
  position: absolute;
  top: 27.5px;
  right: 28px;
  width: 30px;
}

#hamburger_menu{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 76px;
  background-color: white;
  z-index: 2000;
}

#hamburger_items{
  position: absolute;
  top: 25px;
  left: 25px;
  gap: 25px;
  font-weight: 200;    
  font-size: 15px;
}

#special_text{
  font-weight: 600;
  background-image: linear-gradient(to bottom right, #561EE3 30%, #2F117D 70%);
  background-clip: text;
  -webkit-background-clip: text; /* Required for Safari/Chrome */
  color: transparent;
  display: inline-block; /* Ensures the background only covers the text width */
  font-size: 18px;
}

.exit_hamburger{
  position: absolute;
  top: 25px;
  right: 28px;
  width: 20px;
  z-index: 100;
}

.desktop{
  display: none;

  --scene-scale: 1;
  --scene-left: 0px;
  --design-width: 1360px;
  --design-height: 650px;

  position: relative;
  width: 100%;
  overflow: visible;
}

.mobile {
  display: block;
  padding-top: 76px; /* Offset for fixed header */
}


/* Breakpoints */

/********************************************** Mobile and lower **********************************************/

/* Mobile */
@media (min-width: 420px) {

  .container {
    flex-direction: column;
  }

}

/********************************************** Tablet and up **********************************************/

@media (min-width: 768px) {

  .container {
    flex-direction: row;
  }

  .desktop{
    display: block;
    padding-top: 76px; /* Offset for fixed header */
  }

  .mobile{
    display: none;
  }

  .container_nav {
    flex-direction: row;
    align-items: center;
  }

  .hamburger_icon, .exit_hamburger{
    visibility: hidden;
  }
  
  .panchannel_logo {
    position: inherit;
    width: 150px;
    height: 22.15px;
    margin-top: 23px;
    margin-left: 22px;
  }

  .links {
    position: absolute;
    top: 17px;
    right: 24px;
    font-size: 17px;
    font-weight: 650;
    color: white;
    visibility: visible;
  }

}

/********************************************** Large Desktop **********************************************/

/* Desktop */
@media (min-width: 960px) {}


/***********************************************************************************************************/

/* Generics */

.demo_button{
  width: 130px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(to bottom right, #561EE3, #2F117D);
  border-radius: 3px;
  outline: solid #6c00fa 1px;
  cursor: pointer;
  color: #ffffff;
}

/**************************************************Navigations CSS**************************************************/

.navigation{
  display: flex;
}

/**************************************************First Splsah Section CSS**************************************************/

.first_splash_section{
  position: relative;
  width: 100%;
  height: 735px;
  background-color: rgb(0, 0, 0);
}

/* mobile */

.hero_text {
  width: 275px;
  position: absolute;
  top: 16.5px;
  left: 50%;
  transform: translateX(-50%);
}

.hero_description {
  z-index: 5;
  position: absolute;
  left: 50%;
  top: 438px;
  width: 150px;
  transform: translateX(-50%);
}

.first_section_animation_slider{
  z-index: 1;
  position: absolute;
  width: 250px;
  height: 207px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  /*background-color: aqua;*/
}

#media_branches {
  position: absolute;
  width: 250px;
  left: 50%;
  transform: translateX(-50%);  

  /* Fade In */
  opacity: 0; 
  animation: fadeIn 0.6s ease-in forwards;
  animation-delay: 0.2s; 
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile .animation_shrinking_box{
  z-index: 2;
  position: absolute;
  width: 240px;
  height: 146px;
  background-color: black;
  top: 55.74px;
  left: 5px;

  /*Revealing animation*/
  transform-origin: bottom; /* This makes it shrink toward the bottom */
  animation: shrinkDown 2s ease-in-out forwards; 
  animation-delay: 0.8s; /* Optional: wait a moment after load */
}

@keyframes shrinkDown {
  from {
    transform: scaleY(1); /* Full height */
  }
  to {
    transform: scaleY(0); /* Zero height */
  }
}

.fade_in_tv{
  opacity: 0; 
  animation: fadeIn2 0.6s ease-in forwards;
  animation-delay: 2.8s; 
}

@keyframes fadeIn2 {
  from { opacity: 0; }
  to { opacity: 1; }
}

#purple_halo {
  z-index: 3;
  position: absolute;
  width: 250px;
  left: 50%;
  top: 170px;
  transform: translateX(-50%);
}

#floating_tv{
  z-index: 4;
  position: absolute;
  left: 49%;
  top: 241.5px;
  transform: translateX(-50%);
}

@keyframes floatUpDown {
  from {
    transform: translateY(-8px);
  }
  to {
    transform: translateY(8px);
  }
}

#tv-float {
  width: 150px;
  animation: floatUpDown 2.8s linear infinite alternate;
  will-change: transform;  
}


/* desktop */

.desktop .first_splash_stage{
  /*position: relative;*/
  /*width: 100%;*/
  height: calc(var(--design-height) * var(--scene-scale));
  overflow: hidden;
}

#creation_box {
  width: 150px;
  position: absolute;
  top: 178px;
}

#starting_media_branches{
  position: absolute;
  top: 146px;
  left: 75px;
  width: 400px;

  /* start fully clipped */
  clip-path: inset(0 100% 0 0);

  /* reveal from left to right */
  animation: reveal-left-to-right 1.5s ease-in-out forwards;
}

#middle_media_branches{
  position: absolute;
  top: 100px;
  left: 475.2px;
  width: 105px;

  /* Fade In */
  opacity: 0; 
  animation: fadeIn_desktop 0.6s ease-in forwards;
  animation-delay: 1.5s; 
}

#end_media_branches{
  position: absolute;
  top: 146px;
  left: 580.1px;
  width: 337px;

  /* start fully clipped */
  clip-path: inset(0 100% 0 0);

  /* reveal from left to right */
  animation: reveal-left-to-right 1.5s ease-in-out 2.1s forwards;
}

.desktop .fade_in_tv{
  opacity: 0; 
  animation: fadeIn_desktop 0.6s ease-in forwards;
  animation-delay: 3.6s; 
}

#tv-float-desktop{
  position: relative;
  width: 320px;
  left: 950px;
  top: -185px;
  animation: floatUpDown 2.8s linear infinite alternate;
  will-change: transform; 
}

#purple_halo_desktop{
  position: relative;
  width: 404px;
  left: 925px;
  top: 121px;
}

@keyframes reveal-left-to-right {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeIn_desktop {
  from { opacity: 0; }
  to { opacity: 1; }
}


.desktop .first_splash_section {
  /*position: relative;*/
  /*background-color: brown;*/

  left: var(--scene-left);
  width: var(--design-width);
  height: var(--design-height);
  margin: 0;
  overflow: hidden;

  transform: scale(var(--scene-scale));
  transform-origin: top left;
}


/**************************************************Second Splsah Section CSS**************************************************/


/* Mobile */

.second_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 940px;
  background-color: #F6F4FE;
}

.one_fade{
  width: 100%;
  height: 60.55px;
  background-color: #3E3D40;
}

.two_fade{
  width: 100%;
  height: 45.41px;
  background-color: #6C6B70;
}

.three_fade{
  width: 100%;
  height: 34.06px;
  background-color: #8E8D92;
}

.four_fade{
  width: 100%;
  height: 25.54px;
  background-color: #A8A6AD;
}

.five_fade{
  width: 100%;
  height: 19.16px;
  background-color: #BBBAC1;
}


.six_fade{
  width: 100%;
  height: 14.37px;
  background-color: #CBC9D1;
}

.seven_fade{
  width: 100%;
  height: 10.78px;
  background-color: #D5D3DC;
}

.eight_fade{
  width: 100%;
  height: 8.08px;
  background-color: #DDDBE4;
}

.nine_fade{
  width: 100%;
  height: 6.06px;
  background-color: #E7E5EE;
}

.header_text{
  font-size: 25px;
  text-align: center;
  position: relative;
}

.first_header{
  top: 40px;  
}

.what_we_provide_text{
  font-size: 15px;
  top: 60px;
  width: 280px;
  left: 50%;
  transform: translateX(-50%);
}

.images{
  width: 200px;
  gap: 20px;
  position: relative;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

/* Desktop */

.desktop .second_splash_section{
  /*position: relative;*/
  /*width: 100%;*/
  height: 400px;
  /*background-color: #009619;*/
  background-color: rgb(0, 0, 0);
}

.desktop .hero_text {
  width: 550px;
  /*position: relative;*/
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.desktop .hero_description {
  position: absolute;
  width: 700px;
  top: 210px;
  transform: translateX(-50%);
  left: 50%;
}

/**************************************************Third Splsah Section CSS**************************************************/


/* Mobile */

.third_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 465px;
  /*background-color: #F6F4FE;*/
  background-color: #F6F4FE;
}

.second_header{
  top: 40px;  
}

.gray_bar_separation{

  position: absolute;
  visibility: visible;
  width: 75%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #DFDBDB;

}

.panels{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
}

.first_panel, .second_panel{
  width: 275px;
}

.second_panel{
  margin-top: 25px;
}

/* Desktop */

.desktop .third_splash_section{
  /*position: relative;*/
  /*width: 100%;*/  
  height: 224px;
  background-color: #F6F4FE; 
}

/**************************************************Fourth Splsah Section CSS**************************************************/


/* Mobile */

.fourth_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 200px;
  background-color: #F6F4FE;
}

.interested_text{
  width: 275px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contact_options{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
}

.buttons{
  align-items: center;
  gap: 10px;
}

.contact_button{
  width: 65px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6F4FE;
  border-radius: 3px;
  outline: solid black 1px;
  cursor: pointer;
  color: black;
  font-size: 13px;
  font-weight: 650;
}

.contact_demo_button{
  width: 100px;
  height: 30px;
  font-size: 13px;
  font-weight: 650;
  color: white;
}


/* Desktop */

.desktop .fourth_splash_section{
  /*position: relative;*/
  /*width: 100%;*/
  height: 600px;
  /* background-color: #F6F4FE; */
  background-color: #F6F4FE; 
}

.desktop .first_header {
  top: 120px;
  font-size: 40px;
}

.desktop .what_we_provide_text{
  top: 150px;
  font-size: 20px;
  width: 700px;
  left: 50%;
  transform: translateX(-50%);
}

.desktop .images {
  position: absolute;
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  top: 315px;
}

.desktop .images img {
  width: 230px;
  height: auto;
}

@media (min-width: 1000px) {
  .desktop .images img {
    width: clamp(230px, calc(10px + 22vw), 340px);
  }
}

/**************************************************Fifth Splsah Section CSS**************************************************/

/* Mobile */

.fifth_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 100px;
  background-color: #F6F4FE;
}

.logo_transparent{
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.legal_text{
  position: absolute;
  font-size: 8px;
  color: #A1A1A1;
  gap: 6px;
  bottom: 16px;
  left: 15px;
}

.navigation_text_bottom{
  position: absolute;
  bottom: 25px;
  font-weight: 650;
  text-align: right;
  right: 15px;
  gap: 5px;
  font-size: 15px;
  color: black;
}

/* Desktop */

.desktop .fifth_splash_section{
  /*position: relative;*/
  /*width: 100%;*/
  height: 450px;
  background-color: #F6F4FE;
  /*background-color: #aeffbb;*/
}

.desktop .second_header {
  top: 65px;
  font-size: 40px;
}

.desktop .panels{
  position: absolute;
  top: 167px;
  /*height: 30px;*/
  width: 100%;
  /*background-color: #ff9900;*/
}

.desktop .panels .images {
  position: absolute;
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.desktop .panels .images img {
  width: 20vw;
}


@media (min-width: 1000px) {
  .desktop .panels .images img {
    /*width: clamp(230px, calc(10px + 22vw), 340px);*/
    width: 230px;
  }
}


/**************************************************Sixth Splsah Section CSS**************************************************/

/* Mobile */

.sixth_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 100px;
  background-color: #F6F4FE;
}


/* Desktop */

.desktop .sixth_splash_section{
  /*position: relative;*/
  /*width: 100%;*/
  height: 350px;
  background-color: #F6F4FE; 
}

.desktop .interested_text{
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
}

.desktop .contact_options{
  top: 175px;
}

/**************************************************Seventh Splsah Section CSS**************************************************/

/* Mobile */


/* Desktop */

.desktop .seventh_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 210px;
  background-color: #F6F4FE; 
}

.desktop .logo_transparent{
  /*width: 90%; */
  width: clamp(300px, 95%, 1250px);
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}


/**************************************************Eighth Splsah Section CSS**************************************************/

/* Mobile */

/* Desktop */

.desktop .eighth_splash_section{
  position: relative;
  visibility: visible;
  width: 100%;
  height: 175px;
  background-color: #F6F4FE; 
}

.desktop .legal_text{
  display: flex;
  flex-direction: column;

  position: absolute;
  font-size: 15px;
  color: #A1A1A1;
  gap: 6px;
  bottom: 15px;
  left: 15px;
}

.desktop .navigation_text_bottom{
  display: flex;
  flex-direction: column;

  position: absolute;
  bottom: 50px;
  font-weight: 650;
  text-align: right;
  right: 50px;
  gap: 5px;
  font-size: 20px;
  color: black;
}
  
.desktop .demo_button{
  outline: none;
}