@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap";

:root {
    --black: #000000;
    --red: #FF1814;
    --white: #ffffff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--black);
}

body,
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;

}




/* Home */

/* Custom Font */
@font-face {
    font-family: 'Tan mon cheri';
    src: url('/assets/Web/TAN-MONCHERI.woff2') format('woff2'),
        /* Modern Browsers */
        url('/assets/Web/TAN-MONCHERI.woff') format('woff');
    /* Legacy Browsers */
}

body {
    font-family: 'Tan mon cheri', sans-serif;
}

html {
    font-size: 62.5%;
    background-color:rgba(0, 0, 0, 0.548);
}

/* CSS for the loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#0000009a;
    color: var(--white);
    font-size: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 8;
    /* Ensure it's above other content */
}

#loader p{
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    padding: 0 1rem;
    color: var(--white);
}

@media only screen and (max-width: 550px) {
    #loader {
        font-size: 2.5rem;
    }
    #loader p{
        font-size: 1.5rem;
    }

}


#home {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* Ensure content within #home doesn't overflow */
}

#home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* z-index: -1; */
    filter: contrast(110%);
}



.home-content {
    position: relative;
    /* Ensure z-index works properly */
    z-index: 2;
    /* Set z-index higher than video */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 55vh;
}

.home-content img {
    height: 7rem;
}

.home-content h1 {
    margin: 2.5rem 0;
    text-align: center;
    font-size: 9rem;
    letter-spacing: .5rem;
    color: var(--black);
    background-color: transparent;
    position: relative;
    z-index: 3;
    /* Set z-index higher than other elements */
}

.home-content::before {
    content: '';
    position: absolute;
    left: 5rem;
    right: 5rem;
    top: 50%;
    height: 4rem;
    background-color: var(--red);
    z-index: 1;
    /* Set z-index lower than content to keep it behind */
    transform: translateY(25%);
}


.navbar {
    height: 10vh;
    padding: 1rem 0;
    animation: slideInFromLeft 7s ease forwards;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    list-style: none;
    padding: 1rem 6rem;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
    color: var(--white);
    transition: all 0.3s ease;

}

nav ul li a:hover {
    color: var(--red);
}

nav ul li a:active {
    color: transparent;
}



/* Navbar Animation */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive Home */

@media only screen and (max-width: 1199px) {
    .navbar {
        visibility: hidden;
    }
}


@media only screen and (min-width: 320px) and (max-width: 480px) {

    .home-content h1 {
        margin: 2.5rem 0;
        font-size: 4.3rem;
        letter-spacing: .6rem;
    }

    .home-content img {
        height: 5rem;
    }

    .home-content::before {
        height: 1.5rem;
        left: 2rem;
        right: 2rem;
    }



}




/* Style for the toggle menu bar button */

#menu-toggle-btn {
    /* background: none; */
    background-color: rgba(0, 0, 0, 0.329);
    height: 4rem;
    width: 4rem;
    text-align: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 1rem;
    outline: none;
    position: fixed;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
    z-index: 7;

}

#menu-toggle-btn .icon-wrapper i {
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;

}


#overlay {
    position: fixed;
    top: 52%;
    right: 7rem;
    transform: translateY(-50%);
    width: 15rem;
    height: 20rem;
    z-index: 999;
    border-radius: .7rem;
    background-color:#00000070;

}


.overlay-nav {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    z-index: 7;
}

.overlay-nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    border-right: 3px solid var(--white);

}

.overlay-nav ul li {
    padding: .5rem 1rem;
}

.overlay-nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.4rem;
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
    .home-content::before {
        height: 2rem;
        left: 1rem;
        right: 1rem;
    }

    .home-content h1 {
        margin: 2.5rem 0;
        font-size: 4rem;
        letter-spacing: .8rem;
    }

    .home-content img {
        height: 5rem;
        margin-bottom: -1rem;
    }

}

@media only screen and (min-width: 769px) and (max-width: 1199px) {

    .home-content h1 {
        margin: 2.5rem 0;
        font-size: 8rem;
        letter-spacing: .5rem;
    }

    .home-content::before {
        height: 3rem;
    }

    .home-content img {
        height: 6rem;
    }

    .home-content {
        margin-top: 5vh;
        height: 60vh;
    }

    .emptydiv {
        height: 30vh;
    }
}

@media only screen and (max-width: 319px) {
    .home-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0rem;
    }

    .home-content::before {
        height: 1rem;
        left: .1rem;
        right: .1rem;
    }

    .home-content img {
        height: 4rem;
    }

    .home-content {
        height: 50vh;
    }

    .emptydiv {
        height: 40vh;
    }
}




/* Gallery */
#gallery {
    height: 100vh;
    background-image: url('/assets/Images/GalleryBG.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

#gallery h1 {
    padding: 3rem 0;
    text-align: center;
    font-size: 10rem;
    letter-spacing: .5rem;
    color: rgba(255, 255, 255, 0.541);
    background-color: transparent;
    z-index: 3;
}

#gallery button {
    background-color: rgba(0, 0, 0, 0.788);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: var(--white);
    border: none;
    padding: 1.5rem;
    position: absolute;
    top: 35%;
    right: 0;
    cursor: pointer;
}

.circle {
    height: 60rem;
    width: 60rem;
    background-color: #BC7340;
    border-radius: 50%;
    padding: 5% 0;
    position: absolute;
    top: 65vh;
    left: -5vh;
}

.quote {
    text-align: center;
    width: 100%;
    position: absolute;
    padding-top: 1rem;
    font-size: 3rem;
    font-weight: bold;
}

.quote span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;

}




#galleryH1 {
    margin-top: 3.2rem;
}

@media screen and (min-width:769px) {
    #about {
        height: 100vh;
        background-image: url(/assets/Images/AboutBG.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #about img {
        max-width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}



/* Responsive Gallery & About us */
@media screen and (min-width:769px) and (max-width:1190px) {

    .circle {
        height: 45rem;
        width: 45rem;
        padding: 5% 0;
        position: absolute;
        top: 78vh;
        left: -5vh;
    }

    .quote {
        position: absolute;
        padding-top: 1rem;
        font-size: 2rem;
    }

    .quote span {
        font-size: 1.5rem;
    }

    #galleryH1 {
        font-size: 4rem !important;
    }

    #aboutPara {
        font-size: 1.4rem !important;
        padding: 0 17% !important;
    }

    #galleryH1 {
        margin-top: 0rem;
    }

    #about {
        justify-content: end;
    }

    #about img {
        max-width: 90%;
    }
}


/* 
@media screen and (min-width:551px) and (max-width:768px) {

    .circle {
        height: 40rem;
        width: 40rem;
        padding: 5% 0;
        position: absolute;
        top: 80vh;
        left: -7vh;
    }

    .quote {
        text-align: center;
        width: 100%;
        position: absolute;
        padding-top: 1rem;
        font-size: 1.7rem;
    }

    .quote span {
        font-size: 1.5rem;

    }

    #galleryH1 {
        font-size: 3rem !important;
    }

    #aboutPara {
        font-size: 1.2rem !important;
        padding: 0 15% !important
    }


    #about img {
        max-width: 95%;
    }
} */




/* Hide mobile link on larger screens */
@media (min-width: 769px) {
    #galleryMob {
        display: none;
        /* Hide mobile link */
    }
}

/* Hide desktop link on smaller screens */
@media (max-width: 768px) {
    #gallery {
        display: none;
        /* Hide desktop link */
    }
}


#galleryMob {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: var(--black);
}

#galleryMob h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.623);
    background-color: transparent;
    margin-top: 3rem;
    z-index: 3;
    font-size: 4rem;
    letter-spacing: .5rem;
}

#imageContainer {
    display: flex;
    align-items: center;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    transition: transform 0.5s ease;
    /* Add transition for smooth sliding */
}

#imageContainer img {
    flex-shrink: 0;
    /* Ensure images don't shrink */
    width: 100%;
    height: auto;
}


/* Hide scrollbar for WebKit browsers */
#imageContainer::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
#imageContainer {
    scrollbar-width: none;
}

.mobCircle {
    height: 15rem;
    width: 30rem;
    border-radius: 15rem 15rem 0 0;
    /* Adjust border radius for the shape */
    background-color: #BC7340;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.7rem;
    font-weight: bold;
}

.mobCircle span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
}

.mobCircle button {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.788);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    color: var(--white);
    border: none;
    padding: .8rem;
    margin-bottom: 1rem;
}



@media (max-width: 768px) {

    .aboutCircle {
        height: 15rem;
        width: 30rem;
        border-radius: 0 0 15rem 15rem;
        /* Adjust border radius for the shape */
        background-color: #BC7340;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    
}



/* Hide mobile link on larger screens */
@media (min-width: 769px) {
    #mobAbout {
        display: none;
        /* Hide mobile link */
    }
}

/* Hide desktop link on smaller screens */
@media (max-width: 768px) {
    #about {
        display: none;
        /* Hide desktop link */
    }
}


#mobAbout {
    height: 100vh;
    background-image: url(/assets/Images/AboutBG.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.aboutCircle {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding-top: 2rem;
}

.aboutCircle h1 {
    font-size: 4rem;
}

#mobAbout img {
    max-width: 100%;
    margin-top: 2rem;
}

.mobAboutPara {
    font-family: 'Poppins', sans-serif;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 5rem;
    color: var(--white);
    background-color: #00000079;
    text-overflow: ellipsis;
    /* height: 50vh; */
}


/* Vlogs */
#vlogs {
    height: 100vh;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-section {
    height: 40%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section video {
    width: 100vw;
    height: auto;
    object-position: center;
    cursor: pointer;
}



.title-section {
    height: 60%;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 95%;
    position: relative;
}


.title-section h1 {
    color: wheat;
    padding: 0 2rem;
    padding-top: 3rem;
    text-align: center;
    font-size: 7rem;
    letter-spacing: 1rem;
    position: relative;
    z-index: 3;
    width: 90%;

}

.title-section h1::before {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    left: 0;
    bottom: 45%;
    width: 100%;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.233);
    z-index: 1;
    /* Send the line behind the text */
}

.title-section img {
    position: absolute;
    bottom: 2rem;
}

.video-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}

.video {
    display: inline-block;
    /* Ensure iframes display horizontally */
    width: 300px;
    /* Adjust width as needed */
    height: 200px;
    /* Adjust height as needed */
    margin-right: 1.5rem;

}



@media screen and (max-width:530px) {
    #vlogs {
        background-color: var(--black);
    }

    .title-section h1 {
        font-size: 4rem;
        letter-spacing: 1rem;


    }

    .title-section img {
        height: 20%;
    }

    /* Hide scrollbar for WebKit browsers */
    .video-list::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (max-width:325px) {
    .title-section h1 {
        font-size: 3rem;
    }
}


/* Stories */
#stories {
    height: 100vh;
}





/* Contact us */
#contact {
    height: 100vh;
    background-image: url(/assets/Images/AboutBG.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactBox {
    height: 65rem;
    width: 120rem;
    background-color: var(--black);
}

.contactBox legend h1 {
    color: wheat;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 7rem;
    letter-spacing: .5rem;
    color: wheat;
    background-color: transparent;
    z-index: 3;
}

fieldset {
    margin: 0 auto;
    border-top: 0.50rem solid wheat;
    border-left: 0.45rem solid wheat;
    border-right: none;
    border-bottom: none;
    width: 85%;
    height: 70%;
    color: wheat;
    padding-left: 1rem;
    margin-top: 2rem;
}

.contact-form {
    width: 85%;
    margin: 0 auto;
}

::placeholder {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: .2rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: rgb(41, 41, 41);
    font-family: 'Poppins', sans-serif;
    letter-spacing: .2rem;
    color: var(--white);
    border: none;
}

.form-submit {
    background-color: var(--red);
    text-decoration: none;
    letter-spacing: .5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: var(--white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: .5rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: rgba(255, 0, 0, 0.829);

}

/* Responsive Contact us*/

@media screen and (min-width: 769px) and (max-width: 1350px) {
    .contactBox {
        height: 75vh;
        width: 85%;
    }

    .contactBox legend h1 {
        font-size: 5rem;
    }
}


@media screen and (min-width: 300px) and (max-width: 768px) {
    .contactBox {
        height: 70vh;
        width: 95%;
    }

    .contactBox legend h1 {
        font-size: 2.3rem;
    }

    fieldset {
        margin-top: 1rem;
    }

    .form-submit {
        font-size: 1.5rem;
    }

    .contact-form,
    input[type="text"],
    input[type="email"],
    textarea,
    .form-submit {
        width: 100%;
        /* Make form elements full-width */
    }
}


@media screen and (max-width: 299px) {
    .contactBox {
        height: 60vh;
        width: 90%;
    }

    .contactBox legend h1 {
        font-size: 1.8rem;
    }

    fieldset {
        margin-top: .5rem;
    }

    ::placeholder,
    .form-submit {
        font-size: 1rem;
    }

    .contact-form,
    input[type="text"],
    input[type="email"],
    textarea {
        width: 80%;
        /* Make form elements full-width */
    }

    fieldset {
        margin: 0 auto;
        border: none;
        width: 75%;
        height: 70%;
        border-top: 0.50rem solid wheat;
        border-left: 0.45rem solid wheat;
        border-right: none;
        border-bottom: none;
        margin-left: .5rem;
    }
}




/* Footer Section */
footer {
    background-color: #000000fa;
    text-align: center;
    padding: 1rem .5rem;
}

footer p {
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: .1rem;
    font-family: 'Poppins', sans-serif;
}


@media only screen and (max-width: 550px) {
    footer p {
        font-size: 1.2rem;
    }
}


.follow{
    height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:var(--black);
}

.follow h3{
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    color: var(--white);
}

.follow a {
    margin: 0 2rem;
}

.follow a i{
    font-size: 4rem;
    color: var(--white);
}

@media only screen and (max-width: 550px) {
    .follow{
        height: 5rem;
}

    .follow h3{
        font-size: 2rem;
    }
    .follow a {
        margin: 0 1rem;
    }
    
    .follow a i{
        font-size: 2.5rem;
    }
}

.follow a:hover .fab{
    transition: all 0.3s ease-in-out;

}

#yt:hover #yti {
    color: var(--red);
  }
  

#in:hover #ini{
    color: #e4405f;
}
#fb:hover #fbi{
    color: #4267B2;
}
#pt:hover #pti{
    color: #bd081c;
}