
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); */


@font-face {
    font-family: neu;
    src: url(./fonts/NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./fonts/NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(./fonts/NeueHaasDisplayRoman.ttf); 
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:neu;
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    /* background-color: #000; */
    position: relative;
    z-index: 10;
}

#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 0 2vw;
}
/* NAVIGATION */
nav {
    padding: 2vw 5vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
    background-color: #EFEAE3;
  }
  
  nav img {
    height: 50px;
  }
  
  #nav-part2 {
    display: flex;
    gap: 1vw;
  }
  
  #nav-part2 h4 {
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 500;
    color: #000000bb;
    font-size: 18px;
    transition: all ease 0.4s;
    position: relative;
    overflow: hidden;
  }
  
  /* fancy black fill animation */
  #nav-part2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
  }
  
  #nav-part2 h4:hover::after {
    bottom: 0;
    border-radius: 0;
  }
  
  #nav-part2 h4 a {
    color: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
  }
  
  #nav-part2 h4:hover a {
    color: #fff;
  }
  
  
  #menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ababab;
    border-radius: 50px;
    font-size: 4vw;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  
  /* Optional: Change color when active */
  #menu-btn.active {
    background-color: #000;
    color: #fff;
  }
  
  
  /* FULL SCREEN MENU */
  #full-scr {
    height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 999;
    transition: top 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #full-scr.active {
    top: 0;
  }
  
  #full-scr::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(254, 50, 10, 0.2), transparent 70%);
    filter: blur(80px);
    top: -10%;
    left: -10%;
    z-index: 1;
  }
  
  #full-div1 {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  #full-div1 a {
    display: block;
    font-size: 10vw;
    margin: 20px 0;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  #full-div1 a:hover {
    color: #FE320A;
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 10vw;
    cursor: pointer;
    z-index: 3;
    color: #000;
  }
  
  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    #nav-part2 {
      display: none;
    }
  
    #menu-btn {
      display: block;
    }
  }
  

#center {
    height: 65vh;
    width: 100%;
    /* background-color: orange; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 2.5vw;
}

#left h3 {
    width: 25vw;
    font-size: 1.8vw;
    line-height: 2vw;
}

#center h1 {
    font-size: 10vw;
    text-align: right;
    line-height: 8vw;
}

#page1 video {
    position: relative;
    border-radius: 30px;
    margin-top: 4vw;
    width: 100%;
}

#hero-shape {
    position: absolute;
    width: 55vw;
    height: 37vw;
    right: 0;
    top: 70vh;
}

#hero-1{
    background-color: #FE320A;
    height: 100%;
    width: 100%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
    position: absolute;
}


#hero-2{
    background: linear-gradient(#FE320A, #fe3f0a);
    height: 30vw;
    width: 30vw;
    border-radius: 50%;
    position: absolute;
    animation-name: anime1;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    filter: blur(25px);
}

#hero-3{
    background: linear-gradient(#FE320A, #fe3f0a);
    height: 30vw;
    position: absolute;
    width: 30vw;
    border-radius: 50%;
    filter: blur(25px);
    animation-name: anime2;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes anime1 {
    from {
        transform: translate(55%, -3%);
    }

    to {
        transform: translate(0%, 10%);
    }
}

@keyframes anime2 {
    from {
        transform: translate(5%, -5%);
    }

    to {
        transform: translate(-20%, 30%);
    }
}

#page2 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 8vw 0;
    position: relative;
}

#moving-text {
    overflow-x: auto;
    white-space: nowrap;
}

#moving-text::-webkit-scrollbar {
    display: none;
}

.con {
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#moving-text h1 {
    font-size: 9vw;
    /* background-color: lightblue; */
    display: inline-block;
}

#gola {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
    background-color: #FE320A;
    margin: 1vw 2vw;
}

@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#page2-bottom {
    height: 80vh;
    width: 100%;
    /* background-color: aliceblue; */
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

#page2-bottom h1 {
    font-size: 4vw;
    width: 60%;
    line-height: 4vw;
}

#bottom-part2 {
    width: 20%;
    /* background-color: aqua; */
}

#bottom-part2 img {
    width: 100%;
    border-radius: 15px;
}

#bottom-part2 p {
    font-weight: 200;
    margin-top: 2vw;
    font-size: 1vw;
}

#page2 #gooey {
    height: 32vw;
    width: 32vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #ff2d03, #ff5c0b);
    /* background: linear-gradient(to top right,red,blue); */


    top: 58%;
    left: 25%;
    filter: blur(20px);
    animation-name: gooey;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;

}

@keyframes gooey {
    from {
        filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }

    to {
        filter: blur(30px);
        transform: translate(-10%, 10%) skew(-12deg);
    }
}




#page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 4vw 0;
}

.elem {
    height: 150px;
    width: 100%;
    position: relative;

    border-bottom: 1px solid #38383864;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2vw;
}

.elem h2 {
    font-size: 3vw;
    position: relative;
    z-index: 9;
}

.elem .overlay {
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.25s;
}

.elem:hover .overlay {
    top: 0;
}



#fixed-image {
    height: 30vw;
    width: 24vw;
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 25%;
    display: none;
    background-size: cover;
    background-position: center;
}
#page4 {
    height: 70vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 10vw 2vw;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 30%;
    border-left: 1px solid #aeadad;
    padding: 0 2vw;
}


#sec2 {
    display: flex;
    gap: 0.5vw;
    padding: 8vw 6vw 0;
    align-items: center;
}
#gol {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #FE330A;
}
#page5 {
    height: 100vh;
    width: 100%;
    /* background-color: #EFEAE3; */
}

/* General styles for the main footer container */
#footer {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #000;
    color: #fff;
    z-index: 9;
    bottom: 0;
    padding: 2vw 3vw;
    display: flex; /* Using flexbox to align content */
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */

}

/* The glowing background effect */
#footer-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(254, 51, 10, 0.6), transparent 60%);
    filter: blur(100px); /* Increased blur for a softer effect */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-animation 5s infinite alternate ease-in-out;
}

/* Simple animation to make the glow feel alive */
@keyframes glow-animation {
    from {
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        transform: translate(-50%, -50%) scale(1.1);
    }
}


/* Wrapper to hold all text and links above the glow */
#footer-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3vh; /* Adds space between top, h1, and bottom sections */
}


/* Top section with links and email signup */
#footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3vw;
}

#footer-links h2 {
    font-size: 2vw;
    font-weight: 300;
    line-height: 1.4;
    cursor: pointer;
}

#footer-signup {
    width: 30%;
}

#footer-signup p {
    font-size: 1.5vw;
    font-weight: 300;
    margin-bottom: 1.5vw;
    line-height: 2;
}

.email-input {
    width: 100%;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;

}

.email-input h6 {
    font-size: 1.3vw;
    font-weight: 200;
    color: #ffffffc1;
}

/* Large "Sundown" heading */
#footer h1 {
    font-size: 23vw;
    line-height: 0.8; /* Adjusted for tighter line height */
    text-align: center;
}

/* Bottom section with copyright, etc. */
#footer-bottom {
    border-top: 1px solid #dadada;
    padding-top: 1.5vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-bottom h5 {
    font-size: 1.1vw;
    font-weight: 300;
    cursor: pointer;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    #footer-top {
        flex-direction: column;
        gap: 30px;
    }

    #footer-links h2 {
        font-size: 5vw;
    }

    #footer-signup {
        width: 100%;
    }

    #footer-signup p, .email-input h6 {
        font-size: 3.5vw;
    }

    #footer h1 {
        font-size: 23vw;
        padding-top: 5vh;
    }

    #footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #footer-bottom h5 {
        font-size: 3.5vw;
    }
}
#full-scr {
    height: 100vh;
    width: 100%;
    background-color: #00000070;
    position: fixed;
    z-index: 99;
    top: -100%;
    transition: all ease 0.5s;
}

#full-div1 {
    height: 70%;
    width: 100%;
    background-color: #EFEAE3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

@media (max-width:600px) {

    #page1 {
        min-height: 100vh;
        width: 100vw;
        padding: 0 0vw;
    }

    nav {
        padding: 8vw 5vw;
        background-color: #EFEAE3;
        /* padding: 0 5vw; */
    }

    nav img {
        transition: all ease 0.2s;
        height: 9vh;
    }

    #nav-part2 {
        display: none;
    }

    nav h3 {
        display: block;
        padding: 3vw 5vw;
        border: 1px solid #ababab;
        border-radius: 50px;
        font-size: 4vw;
        font-weight: 200;
        padding-left: 10vw;
    }

    #center {
        height: 62vh;
        width: 100%;
        /* background-color: orange; */
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 1px solid #0000003c;
        padding: 7vw 5vw;
        padding-bottom: 10vw;
        flex-direction: column-reverse;
        position: relative;
        z-index: 9;
    }

    #left h3 {
        width: 80%;
        font-size: 5.5vw;
        line-height: 6vw;
    }

    #center h1 {
        font-size: 13vw;
        text-align: right;
        line-height: 13vw;
    }

    #page1 video {
        position: relative;
        border-radius: 15px;
        margin-top: 4vw;
        height: 70vh;
        object-fit: cover;
        object-position: center;
        width: 92%;
        margin-left: 4%;
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        background-color: #EFEAE3;
        padding: 8vw 0;
        position: relative;
    }

    #moving-text {
        overflow-x: auto;
        white-space: nowrap;
    }

    #moving-text::-webkit-scrollbar {
        display: none;
    }

    .con {
        white-space: nowrap;
        display: inline-block;
        animation-name: move;
        animation-duration: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    #moving-text h1 {
        font-size: 14vw;

        display: inline-block;
    }

    #gola {
        height: 25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        background-color: #FE320A;
        margin: 2vw 2vw;
    }

    #page2-bottom {
        height: 90vh;
        width: 100%;
        /* background-color: aliceblue; */
        padding: 10vw 4vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        flex-direction: column;
        z-index: 9;
    }

    #page2-bottom h1 {
        font-size: 5.2vw;
        width: 100%;
        line-height: 9vw;
    }

    #bottom-part2 {
        width: 70%;
        /* background-color: aqua; */
    }

    #bottom-part2 img {
        width: 100%;
        border-radius: 10px;
    }

    #bottom-part2 p {
        font-weight: 200;
        margin-top: 2vw;
        font-size: 4vw;
    }

    #page2 #gooey {
        height: 62vw;
        width: 62vw;
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(to top right, #ff2d03, #ff5c0b);
        /* background: linear-gradient(to top right,red,blue); */
        top: 58%;
        left: 25%;
        filter: blur(20px);
        animation-name: gooey;
        animation-duration: 6s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-timing-function: ease-in-out;

    }
}
#loader{
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1{
    font-size: 5vw;
    color: transparent;
    background: linear-gradient(to right,orange,orangered);
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}
#loader h1:nth-child(2){
    animation-delay: 2s;
}
#loader h1:nth-child(3){
    animation-delay: 3s;
}


@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@media (max-width:600px) {
    #loader h1{
        font-size: 9vw;
      
    }
}

@media (max-width: 600px) {
    #page3 {
        padding: 6vw 0;
    }

    .elem {
        height: 80px;
        padding: 0 4vw;
    }

    .elem h2 {
        font-size: 6vw;
    }

    #fixed-image {
        display: none;   /* hide the floating image on mobile */
    }

    #sec2 {
        padding: 6vw 4vw;
        font-size: 4vw;
    }

    #sec2 p {
        font-size: 4vw;
    }

}
