/* Import Fonts */
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

/* Body Styles */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
}

/* Banner Styles */
.banner {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: none;
}


/* Iframe Container Styles */
.iframe-container {
    position: relative;
    width: 80vw;
    height: 80vh;
    z-index: 1;
    pointer-events: none;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
    display: block;
}
/* Content Styles */
.banner .content {
    position: absolute;
    margin-top: 500px;
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 2; 
    pointer-events: none;
} 

.banner .content h1 {
    font-family: 'ICA Rubrik', sans-serif;
    line-height: 1em;
    color: black;
    position: relative;
    -webkit-text-stroke: 2px #d2d2d2;
    pointer-events: none; 
    display: flex;
    justify-content: center;
    gap: 0px; /* Adds space between pairs */
    background: linear-gradient(to right, #000000, #4d4d4d);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear;
}

/* Styling for each letter pair */
.banner .content h1 span {
    display: inline-flex; 
    transition: color 0.3s ease, border 0.3s ease, -webkit-text-stroke 0.3s ease;
    border: 2px solid transparent;

    letter-spacing: 5px; 

}

/* Hover effect */
.banner .content h1 span:hover {
    color: white;
    -webkit-text-stroke: 2px black;
    border: 2px solid transparent;
    background: none;
    -webkit-text-fill-color: #fff;
    pointer-events: none;
}




  @keyframes animate-gradient {
    to {
      background-position: 200%;
    }
  }





.banner .content .model {
    width: 100%;
    height: 75vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: auto 130%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
}

/* Media Queries for Responsiveness */
@media screen and (min-width: 1024px) {

    .banner{
        height: 100vh;
        justify-content: center;
    }
    .banner .content h1 {
        text-align: center;
        width: 100%;
        text-shadow: 0 10px 20px #000;
        font-size: 7em;
    }

    .banner .content .author {
        color: #fff;
        padding: 20px;
        text-shadow: 0 10px 20px #000;
        z-index: 2;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 0 30px;
        left: 20%;
    }
}

@media screen and (max-width: 768px) {
    .banner{
        height: 50vh;
        justify-content: left;
    }

    .banner .content h1 {
        font-size: 3em;
    }
    .banner content{
        left: 0%;
    }
    .iframe-container iframe{
        width: 125%;
    }

}


.lang-container{
    margin: 100px 0 0 200px;
    width: 70%;
    height: 450px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.lang-container img {
    width: 10%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.684);
    transition: all ease-in-out 0.5s;
}

.lang-container img:hover {
    width: 25%;
}



/* Adding the follow button css */
.bcontainer {
    position: relative;
    width: 355px;
    height: 92px;
    margin: 100px auto; /* top: 100px, bottom: 100px */
}


.bbuttons {
    background-color: black;
    padding: 20px;
    width: 355px;
    height: 92px;
    box-sizing: border-box;
}

button {
    background-color: transparent;
    border: none;
}

.fa {
    color: #2b2020;
    margin-left: 20px;
    transition: transform 0.3s;
}

.fa:hover {
    transform: scale(1.3);
}

.fa-instagram {
    margin-left: 30px;
}
.bbuttons button svg {
    margin-left: 20px;
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}
.bbuttons button:hover svg {
    transform: scale(1.3); /* Scale up on hover */
  }
.bcover {
    background-color: #3D3C3A;
    width: 355px;
    height: 92px;
    color: white;
    font-size: 38px;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.bcontainer:hover .bcover {
    transform: rotate(-75deg);
}

.white-icon {
    fill: white;
    width: 60px;
    height: 60px;
}






.watermark-cover {
    pointer-events: none;
}