@font-face {
    font-family: PP mori;
    src: url(./ppmori.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PP mori;
    color: #fff;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
#purple{
    height: 100vh;
    width: 100vw;
    top: 0;
    position: fixed;
    z-index: 100;
    background-color: #ff0101;
    opacity: 0;
    display: none;
    transition: opacity ease 1s;
}

.marquee {
    white-space: nowrap;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.marquee h1 {
    font-size: 8vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #0F0D0D;
    text-transform: uppercase;
    animation: marquee 24s linear infinite;
    padding-right: 20px; /* Gap between repeated text */
    flex-shrink: 0; /* Prevent text from wrapping/shrinking */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.cursor{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: fixed;
    background-color: #ff0101;
    z-index: 8;
    transition: background-image ease 0.5s;
    background-position: center;
    background-size:cover ;
    mix-blend-mode: difference;
}
.main{
    background-color: #0F0D0D;
    cursor: none;
}

.page1{
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding-top: 12vw;
}


#nav{
    height: 55px;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: fixed;
    mix-blend-mode: difference;
    z-index:102;
}
#nav img {
    height: 125px; /* Slightly smaller for a more refined look */
    width: auto;
    object-fit: contain;
}
#nav-part2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#nav #circle{
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: #fff;
}
#nav h4{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}
#nav h4 {
    border-bottom: 1.5px solid transparent; /* Reserve space for border */
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

#nav h4.active {
    border-bottom: 1.5px solid #fff;
    color: #fff;
}

.page1 h1{
    font-size: 8vw;
    font-weight: 300;
    font-family: PP mori;

    margin-left: 6vw;
    transform-origin: left;
}
.page1 h2{
    font-size: 8vw;
    font-weight: 300;
    transform-origin: left;

    margin-left: 26vw;
}

.page1 video{
    width: 60%;
    margin-top: 10vw;
    position: relative;
    left: 50%;
    transform: translate(-50%,0);
}

.page2{
    min-height: 80vh;
    width: 100%;
    padding: 100px 5vw;
    border-bottom: 2px solid #6c6c6c;
    position: relative;
    z-index: 9;
}

.page2 h1{
    font-size:7vw;
    font-weight: 500;
    color: #111;

}
.page2-container{
    height: 60vh;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 5vw; */
}
.page2-left{
    /* background-color: blue; */
    width: 40%;
}
.page2-right{
    /* background-color: blue; */
    width: 24%;
}
.page2-left h2{
    font-size: 4vw;
    font-weight: 300;
    color: #111;
    line-height: 4vw;
}
.page2-right p{
    font-size: 28px;
    color: #111;
}
.page2-right button{
    width: 100%;
    border-radius: 50px;
    border: none;
    padding: 4px 0;
    background-color: #fff;
    color: #111;
    margin-top: 20px;
}

.page3{
    min-height: 100vh;
    width: 100%;
    padding-top: 100px;
    position: relative;
    z-index: 9;
}

.page3 h1{
    font-size: 6.8vw;
    font-weight: 300;
    color: #111;
    margin-left: 100px;
}
.page3-part1{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}
.page3-part1 img{
    height: 400px;
    margin-top: 160px;
}
.page3-part1 video{
    height: 400px;
    margin-top: 40px;
}
.page4{
    min-height: 100vh;
    width: 100%;
    z-index: 9;
    position: relative;
    padding: 170px 100px;
}
.elem{
    /* background-color: salmon; */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.elem img{
    position: absolute;
    opacity: 0;
    transition: all ease-out 0.5s;
    transform: translateY(10%) rotate(2deg);
}
.elem img:nth-child(1){
    left: 2%;
}
.elem img:nth-child(3){
    right: 5%;
}
.text-div{
    height: 16vh;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.elem h1{
    font-size: 7.5vw;
    font-weight: 600;
    transition: all ease-out 0.5s;
}

.elem:hover h1{
    transform: translateY(-100%);
    color: #ff0101;
}
.elem:hover img{
    opacity: 1;
    transform: translateY(0%) rotate(0deg);

}


.page5{
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 140px 100px;
}
.page5 h2{
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 50px;
}
.box{
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 20px;
    border-top: 2px solid #dadada;
}

.box:nth-last-child(1){
    border-bottom: 2px solid #dadada;
}
/* New Footer Section */
.site-footer {
    background-color: #0F0D0D;
    color: #fff;
    padding: 8vw 5vw 4vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.site-footer .container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6vw;
}

.site-footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 12vw;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    font-style: italic;
}

.site-footer .cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 1.5vw;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-footer .btn-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vw;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent;
}

.site-footer .cta-btn:hover .btn-circle {
    background-color: #ff0101;
    border-color: #ff0101;
    transform: scale(1.1);
}

.site-footer .cta-btn:hover .arrow {
    transform: rotate(-45deg);
}

.site-footer .arrow {
    transition: transform 0.4s ease;
    display: inline-block;
}

.site-footer .footer-middle {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10vw;
}

.site-footer .footer-col h3 {
    font-size: 3vw;
    margin-bottom: 2vw;
    font-weight: 500;
}

.site-footer .brand-col p {
    font-size: 1.2vw;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 2vw;
    max-width: 30vw;
}

.site-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-link {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    font-size: 1.1vw;
    transition: opacity 0.3s ease;
}

.site-footer .footer-link:hover {
    opacity: 1;
    color: #ff0101;
}

.site-footer .footer-col h4 {
    font-size: 1vw;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2vw;
    opacity: 0.5;
}

.site-footer .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

.site-footer .footer-col ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1vw;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.site-footer .footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #ff0101;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4vw;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9vw;
    opacity: 0.5;
}

.site-footer .legal-links {
    display: flex;
    gap: 2vw;
}

.site-footer .legal-links a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

.site-footer .legal-links a:hover {
    opacity: 1;
}


/* Tablet Responsiveness (up to 1024px) */
@media (max-width: 1024px) {
    .page1 h1, .page1 h2 {
        font-size: 10vw;
    }
    
    .page1 h2 {
        margin-left: 15vw;
    }

    .page2-container {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }

    .page2-left, .page2-right {
        width: 100%;
    }

    .page2-left h2 {
        font-size: 6vw;
        line-height: 1.2;
        color: #fff;
    }

    .page2-right p {
        font-size: 20px;
        color: #fff;
    }

    .page2-right button {
        color: #0F0D0D; /* Keep button text dark for contrast on red bg */
    }

    .page3 h1 {
        font-size: 10vw;
        margin-left: 5vw;
        color: #fff;
    }

    .page3-part1 {
        flex-direction: column;
        align-items: center;
    }

    .page3-part1 img, .page3-part1 video {
        width: 90%;
        height: auto;
        margin-top: 2rem;
    }

    .page4 {
        padding: 100px 5vw;
    }

    .elem h1 {
        font-size: 10vw;
    }

    .text-div h1:nth-child(2) {
        display: none;
    }

    .text-div {
        height: auto;
    }
}

/* Mobile Responsiveness (up to 600px) */
@media (max-width: 600px) {
    #nav {
        padding: 0 5vw;
        height: 60px;
        top: 0; 
        margin-top: 10px;
    }
    
    #nav img {
        height: 85px;
    }

    #nav-part2 {
        gap: 3vw;
    }
    
    #nav h4 {
        font-size: 3.5vw;
    }

    #nav #circle {
        height: 12px;
        width: 12px;
    }

    .page1 {
        padding-top: 25vw;
    }

    .page1 h1, .page1 h2 {
        font-size: 12vw;
        margin-left: 5vw;
    }

    .page1 h2 {
        margin-left: 10vw;
    }
    
    .page1 video {
        width: 90%;
        margin-top: 15vw;
    }

    .page2 {
        padding: 60px 5vw;
    }

    .page2 h1 {
        font-size: 10vw;
        color: #fff;
    }

    .page2-left h2 {
        font-size: 8vw;
        color: #fff;
    }

    .page2-right p {
        font-size: 18px;
        color: #fff;
    }

    .page3 {
        padding-top: 60px;
    }

    .page4 {
        padding: 60px 5vw;
    }

    .elem {
        height: auto;
        padding: 2rem 0;
    }

    .text-div {
        height: auto;
    }

    .elem h1 {
        font-size: 12vw;
    }

    .text-div h1:nth-child(2) {
        display: none;
    }

    .text-div {
        height: auto;
    }

    .elem img {
        display: none; /* Disable hover images on mobile */
    }

    .page5 {
        padding: 60px 5vw;
    }

    .page5 h2 {
        font-size: 8vw;
    }

    .box {
        height: 80px;
        padding: 0 10px;
    }

    .box h3 {
        font-size: 5vw;
    }

    /* Footer Mobile Adjustments */
    .site-footer {
        padding: 15vw 5vw 8vw;
    }

    .site-footer .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10vw;
        padding-bottom: 10vw;
    }

    .site-footer .cta-text {
        font-size: 20vw;
    }

    .site-footer .cta-btn {
        font-size: 5vw;
        width: 100%;
        justify-content: space-between;
    }

    .site-footer .btn-circle {
        width: 60px;
        height: 60px;
    }

    .site-footer .footer-middle {
        grid-template-columns: 1fr;
        gap: 12vw;
    }

    .site-footer .footer-col h3 {
        font-size: 10vw;
        margin-bottom: 5vw;
    }

    .site-footer .brand-col p {
        font-size: 4.5vw;
        max-width: 100%;
        margin-bottom: 8vw;
    }

    .site-footer .footer-link {
        font-size: 4vw;
    }

    .site-footer .footer-col h4 {
        font-size: 3.5vw;
        margin-bottom: 6vw;
    }

    .site-footer .footer-col ul {
        gap: 4vw;
    }

    .site-footer .footer-col ul li a {
        font-size: 4.5vw;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8vw;
        font-size: 3.5vw;
        padding-top: 10vw;
    }

    .site-footer .legal-links {
        width: 100%;
        justify-content: space-between;
    }
}


