/*---------------------------------------------------------------------------------

 Theme Name:   One Tap Child Theme
 Theme URI:    
 Description:  child theme
 Author:       SlevinChino
 Author URI:   https://slevinchino.com
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

------------------------------ ADDITIONAL CSS HERE ------------------------------*/


@import url('css/panchang.css');  

img {
    pointer-events: none;
}

.influencers h1 {
    background: #ff002b;
    background: linear-gradient(90deg,rgba(255, 0, 43, 1) 0%, rgba(253, 29, 29, 1) 10%, rgba(252, 176, 69, 1) 100%);
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    filter: drop-shadow(1px 1px 1px #000);
    text-align: center;
}

/* navigation stroke animation */
.et-menu-nav li a {
   position: relative;
   display: inline-block;
   overflow: hidden;
}

.et-menu-nav li a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   height: 4px;
   width: 100%;
   background: linear-gradient(90deg, #de270f, #ec852a, #e90027, #9a0913, #de270f, #de270f, #f6c046);
   background-size: 200% auto;
   transition: all .5s;
   transform: translateX(-100%);
}

.et-menu-nav li a:hover::after {
   transform: translateX(0%);
   animation: gradient-89 3s linear infinite;
}

@keyframes gradient-89 {
   0% { background-position: 100% 0%; }
   50% { background-position: 0% 0%; }
   100% { background-position: 100% 0%; }
}

#sofaking {
  background: #000000;
}

#sofaking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='turbulence' baseFrequency='2.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.3'/%3E%3C/svg%3E");
  pointer-events: none;
}

.scroller {
  max-width: 100%;
  background: #1B1C1E;
  background: radial-gradient(circle,rgba(27, 28, 30, 1) 0%, rgba(0, 0, 0, 1) 73%);
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: center;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 65s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 10s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 55s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 2.5rem));
  }
}

/* Image-specific styles to preserve aspect ratio */
.scroller img {
  width: auto;
  object-fit: contain;
  object-position: center;
}

/* Alternative approach - if you want all images to have the same dimensions but preserve aspect ratio */
.scroller img.fixed-size {
  height: 50px;
  width: 150px;
  object-fit: cover;
  object-position: center;
}

/* general styles */
:root {
  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-primary-100: hsl(205, 15%, 58%);
  --clr-primary-400: hsl(215, 25%, 27%);
  --clr-primary-800: hsl(217, 33%, 17%);
  --clr-primary-900: hsl(218, 33%, 9%);
}

html {
  color-scheme: dark;
}

/* FIXED: Removed display: grid and place-content: center from body */
body {
  /* Removed problematic styles that were constraining the layout */
  font-family: system-ui;
  font-size: 1.125rem;
  background-color: var(--clr-primary-800);
  min-height: 100vh;
}

/* Apply grid centering only to specific elements that need it */
.grid-centered {
  display: grid;
  place-content: center;
  min-block-size: 100vh;
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  padding: 1rem;
  background: var(--clr-primary-400);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
}

.diff {
  color: #C80E05;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  margin-top: -20;
  margin-bottom: 20px;
  padding-top: -30px;
  font-size: 40px;
}

.card_text {
  margin-left: 20px;
  margin-right: 20px;
}

.video_heat {
    mix-blend-mode: screen
}

.lava-text {
    position: relative;
}

.lava-text::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.3' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.3'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}

.test-font {
  font-family: "Panchang", Helvetica, sans-serif;
}

/* Grain Effect Animations */
@keyframes grainHeavy {
    0%, 100% { transform: translate(0, 0) }
    10% { transform: translate(-5%, -10%) }
    20% { transform: translate(-15%, 5%) }
    30% { transform: translate(7%, -12%) }
    40% { transform: translate(-5%, 10%) }
    50% { transform: translate(12%, 0) }
    60% { transform: translate(15%, 0) }
    70% { transform: translate(5%, 8%) }
    80% { transform: translate(10%, -5%) }
    90% { transform: translate(-10%, 5%) }
}

@keyframes grainMedium {
    0%, 100% { transform: translate(0, 0) }
    10% { transform: translate(-2%, -2%) }
    20% { transform: translate(2%, 2%) }
    30% { transform: translate(-2%, 2%) }
    40% { transform: translate(2%, -2%) }
    50% { transform: translate(0, 3%) }
    60% { transform: translate(-3%, 0) }
    70% { transform: translate(2%, -2%) }
    80% { transform: translate(-2%, 3%) }
    90% { transform: translate(3%, -3%) }
}

/* Ensure proper stacking */
.grain-effect-container > * {
    position: absolute;
}

.grain-effect-container .grain-content {
    position: relative !important;
}

/* end of grain effect*/

#video-hero{
  z-index: 999!important;
}

/* #img-hero {
    filter: blur(0px);
    transform: scaleY(1.1);
    position: relative;
    z-index: 1;
}

#img-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
    transform: translateY(-10px);
    z-index: -1;
} */

/* footer elements and code */
#footer-info {
    text-align: center;
    width: 100%;
}

.et_pb_section {    
    width: 100%;
}


#mobile_menu3 a {

  background-color: #000;
  color: white;
}

#mobile_menu3 {
  background-color: #000;
}

.menu-item-68 { 
  color: white !important;
}


