:root {
    --review-color: #205fff;
    --review-sec-color: #00113d;
    --text-dark: black;
}

/* Preloader Fullscreen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00113d, rgb(0, 0, 0));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    animation: gradient 6s ease infinite;
    transition: 1s ease, visibility 0s linear 1s;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}



#loading-signature {
    position: absolute;
    color: white;
    top: 225px;
    left: 300px;
    opacity: 0;
    animation: fade-in-left 2s forwards;
    animation-delay: 1s;

}

#loading-text {
    font-size: 48px;
    color: whitesmoke;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 8px 15px #205fff;
    animation: pulse 3s infinite;
}

#loading-quote-bar {
    position: absolute; 
    bottom: 150px; 
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%; 
    height: 40px; 
    background: linear-gradient(to right, transparent, #205fff, transparent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
    animation: fade-in 2s forwards;
    animation-delay: 2.5s;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #014fd2 #000000;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: #000000;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #014fd2;
    border-radius: 15px;
    border: 3px ridge #ffffff;
  }


html {
    overflow: auto;
}

a, button{
    cursor: url('assets/cursors/pointer.png')16 16, auto;
}


body {
	background: linear-gradient(-45deg,  #910A67, #0B1B70, #4f0c39, #081c45, #030637, var(--review-color));
    background-size: 400% 400%;
    font-family: 'Cinzel', sans-serif;
    margin: 0;
    height:100vh;
    padding: 0;
    color: whitesmoke;
    align-items: center;
    justify-content: center;
    overflow: auto;
    cursor: url('./assets/cursors/cursor.png')8 8, auto;
    position: relative;
    animation: gradient 8s ease infinite;
}



@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


h1{
    font-size: 8rem;
    margin: 0;
    background: linear-gradient(to bottom right, #FFE4A1, #3253FA 90%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* -webkit-text-stroke: 1px whitesmoke; */
      filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7)) 
          drop-shadow(-2px -2px 1px #FFE4A1);
    
}

h2 {
    font-size: 5em;
    line-height: 1.2;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
}

.fade-in-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.shak-logo {
    height: 5rem;
    display: flex;
    filter:drop-shadow(0 3px 5px #000000);
    animation: pulse 3s infinite;
}

#title-card-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.intro-subtext {
    text-align: center;
}

#nav-bar-section {
    position: sticky;
    top: 0;
    background-color: #00113d;
    opacity: 0.88;
    z-index: 10;
    transition: top 0.3s;
}


.nav-bar-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    padding: 0px 30px;
    gap: 2rem;
 
}

.socials-container {
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: row; 
    width: auto;
    gap: 0rem;

}

.socials-container a {
    padding: 1.75rem;
}

.socials-container a:hover svg {
    fill: #FFD700;
}

.socials-container svg {
    background-color: var(--review-sec-color);
    border-radius: 50%;
    padding: 0.8px;
}

.dropdown {
    float: left;
    overflow: hidden;

}

.dropdown svg {
    transition: transform 0.3s ease;
}

.dropdown-content {
    visibility: hidden; 
    opacity: 0; 
    position: absolute;
    background-color: var(--review-color);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
    padding: 1rem;
    margin: 1rem 0.1rem 0rem 0rem;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-content li {
    float: none; 
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 1.2rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown:hover svg {
    transform: rotate(180deg);
}

.links-container {
    display: flex; 
    justify-content:center; 
    align-items: center; 
    padding: 0; 

}

.links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0; 
    margin: 0; 

}

.links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    gap: 15px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #FFD700
}

.logo-container, .socials-container, .links-container {flex: 1}

.fade-out {
    animation: fade-out 1s forwards;
}

.fade-out-hero {
    opacity: 0;
}

.pfp-hero {
    transition: opacity 0.5s ease-in-out;
}

.fade-in-hero {
    opacity: 1;
}


.intro-container {
    margin: 30px 30px 20px 50px;
    width: 50%;
    max-width: 100%;
}

.intro-brands {
    display: flex;
    justify-content: center;
    height: 7vh;
    width: 100%;
    padding-top: 10px;
    gap: 20px;

    
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.intro-brands img {
    transition: filter 0.3s ease;
}

.intro-brands img:hover {
    filter: drop-shadow(0px 0px 5px white);
    animation: shake 0.5s ease;
}


.pfp-container {
    display: flex;
    position: relative;
    justify-content:center;
    width: 100%;
    cursor: url('assets/cursors/pointer.png') 16 16, auto;
}

.pfp {
    height: 40rem;
    width: 90%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    box-shadow: 14px 18px 9px black;
}

.pfp-container:hover .pfp{
    box-shadow: rgba(59, 46, 240, 0.4) 5px 5px, rgba(143, 26, 193, 0.3) 10px 10px, rgba(78, 18, 229, 0.2) 15px 15px, rgba(28, 28, 238, 0.1) 20px 20px, rgba(15, 84, 195, 0.05) 30px 30px;
}

.scribble-hero {
    position: relative;
}

.frame {
    position: absolute;
    transform: translate(-23.5%, -87.5%);
    opacity: 0;
    object-fit: cover;
}

.animate-scribble{
    animation: scribbleLoop 1.2s infinite steps(1);
}

.frame-1 {animation-delay: 0s}
.frame-2 {animation-delay: 0.4s}
.frame-3 {animation-delay: 0.8s; left: -1rem;}

@keyframes scribbleLoop {
    0%, 33% {
        opacity: 1;
    }

    34%, 100% {
        opacity: 0;
    }
}

.wrapper-for-samples {
    display: flex ;
    position: relative;
    flex-direction: column;

}

#transition-yt-to-ab {
    height: 150px;
    background: linear-gradient(to bottom, #e91919, #864B68, #4A6274);
}

#transition-ab-to-cmc {
    height: 150px;
    background: linear-gradient(to bottom, #4A6274, #6C707D, #CFA42C);
}

#transition-cmc-to-el {
    height: 150px;
    background: linear-gradient(to bottom, #cfa42c, #8a9a5b, #A3B79B);
}

#youtube-section {
    background-color: #e91919;
}

.youtube-samples {
    display: flex; 
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    flex-wrap: wrap;
}

#commercial-section {
    background-color:#CFA42C;
    margin-top: 0;
}


.commercial-samples video {
    position: relative; 
    width: 100%;
    height: 80%;
    border: white 4px solid; 
}

.elearning-samples video {
    position: relative; 
    width: 100%;
    height: 80%;
    border: white 4px solid; 
}

#audiobook-section {
    background-color: #4A6274;
    margin-top: 0;
}

#elearning-section {
    background-color: #A3B79B;
    margin-top: 0;
}

.reel-sections {
    position: relative;
    margin-top: 200px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reel-containers {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 90%;
    gap: 2rem;
}

.reel-texts {
    justify-content: left;
    width: 50%;
    
}

.reel-texts p {
    font-size: 20px;
    font-weight: lighter;
}

.audio-title {
    color: black;
    font-weight: bold;
}

.audio-player {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: 10px 20px;
    background: white; 
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    margin: 20px;
    margin-left: 0px;
}

.play-btn {
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    padding: 5px 10px;
}

.yt-color {
    background: #e91919;
    color: white;
}

.ab-color {
    background: #4A6274;
    color: white;
}

.cmc-color {
    background: #CFA42C;
    color: white;
}

.el-color {
    background: #A3B79B;
    color: white;
}

.progress-container {
    flex: 1 1 100%;
    order: 3; 
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: white;
    transition: 0.2s;
}

.review-wrapper {
    display: flex;
    position: relative;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#review-section {
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    text-align: center;
}

#review-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

#review-section h1 {
    position: relative;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;

    background: linear-gradient(to top, #3253FA, white 60%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#review-section h1::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    width: 5rem;
    background-color: white;
}

/* .review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
} */

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
}

.carousel {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

.review-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(100% / 3 - 1.33rem); /* 3 cards visible at once with spacing */
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 5rem 2rem 2rem;    
    background-color: white;
    border-radius: 5px;
    box-shadow: 5px 5px 10px black;
    transition: 0.3s
}

.review-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 75%;
    aspect-ratio: 1;
    border-radius: 100%;
    background-color: var(--review-color);
    transition: 0.5s;
    z-index: -1;
}

.review-card span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    font-size: 3rem;
    color: white;
}

.review-card h4 {
    margin-top: 4rem; 
    margin-bottom: 1rem;
    font-size: 1.5rem; 
    font-weight: 600;
    color: var(--review-color);
    transition: 0.3s;
}

.review-card p{
    margin-bottom: 2rem;
    color: rgb(135, 135, 135);
    transition: 0.3s;
}

.review-card img {
    margin-bottom: 1rem;
    max-width: 100px;
    border-radius: 100%;
    border: 2px solid var(--review-color);
    transition: 0.3s;
}

.review-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--review-color);
    transition: 0.3s;
}

.review-card h6 {
    font-size: 1rem;
    font-weight: 400;
    color: rgb(144, 144, 144);
    transition: 0.3s;
}


.review-card:hover::before{
    width: 800%;

}

.review-card:hover :is(h4, h5) {
    color: white;
}

.review-card:hover :is(p, h6) {
    color: var(--review-sec-color);
}

.review-card:hover img{
    border-color: white;
}

#contact-section {
    margin-top: 10vh;
    position: relative;
}

.contact-container {
    display: flex;
    position: relative;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 8vw;
}

.contact-banner {
    position: relative;
    height: auto;
    padding: 25px 0 50px 100px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-right textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-right-title h2{
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.contact-right-title hr{
    border: none;
    width: 80%;
    height: 5px;
    background-color: var(--review-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-right-title{
    text-align: center;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color:rgb(135, 135, 135);
    border-radius: 50px;
}

.contact-inputs:focus {
    border: 2px solid var(--review-color)
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}


.contact-right button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: white; 
    font-size: 1rem;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, var(--review-color), var(--review-sec-color));
    cursor: pointer;
}

.contact-right button img {
    height: 15px;
}

.banner-pfp {
    display: flex; 
    height: 85vh;
    margin-left: 8vw;

}

.banner-logo {
    position: absolute;
    align-items: flex-end;
    height: auto;
    width: 100%;
    transform: translateX(10%) translateY(-50%);
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 80%;
    z-index: -1;
    object-fit: cover;
}

.bg-video-border {
    position: absolute;
    width: 100%;
    height: 110%;
    background-color: #000000;
    object-fit: cover;
    z-index: -2;
    margin-top: 35px;
    padding-bottom: 35px;
}

.baby-footer {
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    right: 20rem;
    bottom: -40px;
    gap: 0; 
    line-height: 0;
    margin: 0;
    height: auto;
}

/* Buttons */
button {
    background: var(--review-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

button:hover {
    background: var(--review-sec-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.02);
        filter: brightness(1.5);
    }
}



@keyframes fade-in-left {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateX(400px);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;
        transform: translateY(-70%) translateX(-50%);
        width: 100%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =================== ABOUT PAGE STYLES ====================== */
.intro-container {
    width: 100%;
    position: relative;
}

.intro-container hr, .way-content hr {
    width: 20%
}

.intro-text {
    width: 100%;
    text-align: center;
}

.intro-subtext span {
    color: var(--review-color);
    transition: filter 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: url('./assets/cursors/pointer.png') 16 16, auto;
}

.intro-subtext span:hover, a:hover{
    filter: drop-shadow(1px 1px 10px var(--review-color));
    color: whitesmoke;
}

.pfp-container {
    display: flex;
    position: relative;
    justify-content:center;
    width: 100%;
    cursor: url('assets/cursors/pointer.png') 16 16, auto;
}

#aboutPfp {
    height: auto;
    width: auto;
}

.way-container {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 17, 61, 1) 60%, rgba(32, 95, 255, 1) 100%);
    margin: auto 2rem;
    border-radius: 20px;
    padding: 3rem;

}
.way-body {
    display: flex;
    gap: 5.6rem;
    margin: 4rem;

}

.way-pfp-wrapper { 
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.way-content {
    display: flex; 
    flex-direction: column;

}
.way-content h2 {
    text-align: center;
}

.way-content p {
    text-align: left;
    font-size: 20px; 
}

.way-content span {
    font-size: 22px;
    font-weight: bold;
}

.way-img-box {
    max-width: 320px;
    margin: 1.5rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-img-box img {
    width: 100%;
    display: block;
    border-radius: inherit;
}

.way-img-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}

.way-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    min-width: 200px;
    

}

.way-buttons button {
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* Image inside lightbox */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}


a {
    text-decoration: none;
    color: #FFD700;
    transition: filter 0.3s ease-in-out, color 0.3s ease-in-out;
}

a, button{
    cursor: url('assets/cursors/pointer.png')16 16, auto;
}

