:root {
    --primary-text:#fff;
    --primary-text-hover:#3ca6b8;
    
}

html {
  scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'poppins', serif;
    scroll-behavior: smooth;
    transition: all 0.5s ease-in-out;
}

@font-face {
  src: url('../ASSETS/Fonts/Cheque-Regular.otf');
  font-family: 'Cheque';
}

@font-face {
    src: url('../Assets/Fonts/BBHHegarty-Regular.ttf');
    font-family: 'BBHHegarty';
}

@font-face {
    src: url(../Assets/Fonts/AvenirLTProBlack.otf);
    font-family: 'AvenirLTProBlack';
}

@font-face {
    src: url(../Assets/Fonts/AvenirLTProLight.otf);
    font-family: 'AvenirLTProLight';
}

@font-face {
    src: url(/Assets/Fonts/AvenirLTProHeavy.otf);
    font-family: 'AvenirLTProHeavy';
}


html {
    scroll-behavior: smooth;
}


body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background-color: #0a0a0a;
} 

.Preloader {
    background: #000 url('/Web Page/ASSETS/Loading/Infinity@1x-1.0s-200px-200px.gif') no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;

}



/* hero section style */

.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* background video style */

.hero .bg-video {
    position: absolute;
    width: 110vw;
    height: 120vh;
    overflow: hidden;
    object-fit: cover;
    z-index: -1;
}



/* Navbar Style */

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.342);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.navbar .logo {
    color: #fff;
    font-size: 34px;
    width: 120px;
    font-weight: 700;
    font-family: 'Cheque', serif;
    text-decoration: none;
}

.navbar .logo:hover {
    color: var(--primary-text-hover);
}

.navbar .logo-img {
    width: 100px;
    margin-left: 10px;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--primary-text);
    font-size: 24px;
    font-weight: 200;
    text-spacing-trim: space-all;
    padding: 6px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar ul li a:hover {
    color: var(--primary-text-hover);
}

.content {
    text-align: center;
}

.content h1 {
    color: #fff;
    font-size: 160px;
    font-weight: 700;
    font-family: 'A';
}

.Logo-img-home {
    border: 2px solid #fff;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 500px;
}

.content p {
    color: #fff;
    font-size: 24px;
    margin-top: 10px;
    letter-spacing: 24px; /* Adjust the pixels (px) to increase/decrease space */
    text-transform: uppercase; /* Common for VFX studio aesthetics */
    font-weight: 500;
}

.content a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff ;
    backdrop-filter: blur(10px);
    padding: 10px 50px;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.content a:hover {
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease;
}


/* content-work */

.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.banner h1{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 50px;
    z-index: 2;
}

.banner .slider{
    position: absolute;
    width: 200px;
    height: 250px;
    top: 30%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 2;
}

.banner .slider .item:hover {
  cursor: pointer;
  border: 2px solid #fff;
  transition: all 0.5s ease;
  box-shadow: #fff 130px;
}


@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateX(-2deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateX(-2deg) rotateY(360deg);
    }
}

.banner .slider .item{
    position: absolute;
    inset: 0 0 0 0;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
}
.banner .slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .slider .item h4 {
    color: #fff;
    font-size: 24px;
    margin-top: 10px;
}


@media screen and (max-width: 1023px) {
    .banner .slider{
        width: 160px;
        height: 200px;
        left: calc(50% - 80px);
    }
    .banner .slider .item{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(300px);
    }
}


@media screen and (max-width: 767px) {
    .banner .slider{
        width: 100px;
        height: 150px;
        left: calc(50% - 50px);
    }
    .banner .slider .item{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(180px);
    }
    .banner .content h1{
        font-size: 5em;
    }
}


/*content-show reel*/



/*content-cantact*/

.container-contact {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

.container-contact form {

    width: 670px;
    height: 400px;
    display: flex;
    justify-content: center;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.container-contact form h1 {
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    width: 500px;
    text-align: center;
}

.container-contact form input {
    width: 290px;
    height: 40px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 16px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
}

.container-contact form input::placeholder {
    color: #fff;
}

.container-contact form #lastName,
.container-contact form #mobile {
    margin-left: 20px;
}

.container-contact form h4 {
    color: #fff;
    font-weight: 300;
    margin-top: 20px;
    width: 600px;
}

.container-contact form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;

    font-weight: 200;
    font-size: 16px;
    padding: 10px;
    outline: none;
    min-width: 600px;
    max-width: 600px;
    min-height: 80px;
    max-width: 80px;
}

.container-contact form textarea::placeholder {
    color: #fff;
}

.container-contact button {
    width: 150px;
    height: 40px;
    margin-top: 20px;
    border: none;
    outline: none;
    background-color: #000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/*


footer {
    background-color: #fff;
    transition: all 0.3s ease;
    overflow: hidden; 
}

.footer-container {
    width: 100%;
    padding: 70px 30px 20px;
}



.social-icons, 
.footer-nav, 
.footer-info {
    opacity: 0;
    transform: scale(0.5); 
    
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.pop-active {
    opacity: 1 !important;
    transform: scale(1) !important;
}


.social-icons.pop-active {
    transition-delay: 0s;
}

.footer-nav.pop-active {
    transition-delay: 0.2s; 
}

.footer-info.pop-active {
    transition-delay: 0.4s; 
}




.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    padding: 10px; 
    margin: 10px;
    border-radius: 10%;
}

.social-icons a i {
    color: #000;
    font-size: 2em;
}

.social-icons a:hover i {
    color: #797878;
    transition: all 0.3s ease;
}



.footer-nav {
    margin: 30px 0;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; 
}

.footer-nav ul li {
    list-style: none;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1.3em;
    margin: 0 15px;
    transition: all 0.3s ease;
}




.footer-info {
    text-align: center;
    color: #000;
    font-size: 1em;
    margin-top: 20px;
} */



/* 1. FONTS & RESETS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&display=swap');

/* 2. FOOTER CONTAINER */
.site-footer {
    background-color: #04a8c5; /* Weta Green */
    color: #000;
    padding: 70px 10px;
    font-size: 14px;
    font-weight: 200;
    font-family: 'AvenirLTProLight';
    width: 100%;
    overflow: hidden; /* Prevents scrollbar during animation */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 90vw;
    height: 20vh;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

/* 3. LEFT SECTION (CONTACT INFO) */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 32px;
    margin-right: 20px;
    margin-top: 2px;
    width: 30px;
    text-align: center;
}

.contact-text strong {
    font-weight: 1200;
    font-size: 24px;
    letter-spacing: 0.5px;
    font-family: 'AvenirLTProHeavy';
}

.contact-gg strong {
    font-size: 25px;
    
}



.contact-text p, .contact-text span {
    line-height: 1.5;
    font-size: 18px;
     font-family: 'AvenirLTProLight';
}

.contact-text .phone-ph {
    font-size: 24px;
}

.contact-text .phone-ad {
    font-size: 20px;
}

.fax {
    margin-left: 24px;
}

.sub-text {
    font-size: 20px;
    opacity: 0.85;
    margin-top: 5px;
}

.mt-1 {
    margin-top: 5px;
}

/* 4. RIGHT SECTION (SOCIALS & LOGO) */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 300px;
    text-align: right;
}

/* Social Icons */
.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.follow-text {
    font-weight: 800;
    font-size: 24px;
    font-family: 'AvenirLTProHeavy';
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    text-decoration: none;
    background: transparent;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scaleY(25px);
}



/* Logo Styling */
.weta-logo {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 50px;
    line-height: 1;
}

.weta-logo span {
    font-weight: 400; /* Thinner font for 'FX' */
}

/* Legal Links */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-legal a {
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* 5. ANIMATION CLASSES */

/* The starting state (Hidden) */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* The ending state (Visible) - Added by JS */
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* 6. MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        margin-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 30px;
    }
    
    .social-section {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .weta-logo {
        margin-bottom: 30px;
    }
}