@media only screen and (max-width: 2000px) {}

@media only screen and (max-width: 1450px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1260px) {}

@media only screen and (max-width: 1090px) {}

@media only screen and (max-width: 950px) {}

@media only screen and (max-width: 850px) {}

@media only screen and (max-width: 760px) {}

@media only screen and (max-width: 650px) {}

@media only screen and (max-width: 550px) {}

@media only screen and (max-width: 450px) {}




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    user-select: none;
    -webkit-user-select: none;
}

a {
    text-decoration: none;
}


@font-face {
    font-family: PoppinsRegular;
    src: url(../Fonts/poppins/Poppins-Regular.ttf)
}

@font-face {
    font-family: GironteRegular;
    src: url(../Fonts/GironteRegular/Gironte.ttf)
}

@font-face {
    font-family: ItalicFont;
    src: url(../Fonts/GLAMOURGIRL.TTF)
}

@font-face {
    font-family: Protfolio;
    src: url(../Fonts/MacsansRegular-VG2YV.otf)
}



:root {
    --Red: #A02334;
    --Magnita: #E90074;
    --Dark: #000;
    --Light: #fff;
    --PoppinsRegula: PoppinsRegular;
    --ItalicFont: ItalicFont;
    --GironteRegular: GironteRegular;
    --Protfolio: Protfolio;
    --Heading: Protfolio;
}


body.Dark {
    background-color: #000;
    color: white;
}

body.Light {
    background-color: #fff;
    color: #000;
}

.Main {
    overflow-x: hidden;
}



/* IMAGE SLIDER  */


.HomeImagesSlider {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full height to cover screen */
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.slider {
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.SliderImageCard {
    width: 100vw;
    /* Set width to viewport width */
    height: 100%;
    /* Full height for consistency */
    flex-shrink: 0;
    /* Prevent shrinking */
    overflow: hidden;
    /* Avoid overflow issues */
}

.SliderImageCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Make images cover the container */
    transition: opacity 0.5s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    color: var(--Light);
    z-index: 2;
    padding: 20px;
}


.subtitle-description {
    font-family: var(--Heading);
    font-size: 5em;
    color: var(--Light);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: opacity 0.8s ease, transform 0.5s ease;
    letter-spacing: 3px;
}

.SliderMobile {
    display: none;
    visibility: hidden;
}

.SliderDesktop {
    display: flex;
    visibility: visible;
}

@media (max-width: 1024px) {
    .subtitle-description {
        margin-bottom: 15px;
    }

    .HomeImagesSlider {
        margin-top: 10% !important;
    }

    .banner-overlay {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .banner-logo img {
        width: 50%;
    }

    .HomeImagesSlider {
        margin-top: 15% !important;
    }

    .SliderDesktop {
        display: none;
        visibility: hidden;
    }

    .SliderMobile {
        display: flex;
        visibility: visible;
    }

    .subtitle-description {
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .banner-overlay {
        padding: 10px;
    }

}

@media (max-width: 550px) {
    .banner-logo img {
        width: 60%;
    }

    .subtitle-description {
        margin-bottom: 8px;
        font-size: 2.2em;
    }
}








/* IMAGE SHOW CASE  */

.Section-Showcase-Images-Card {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: center;
    padding: 5% 1.5% 8vh !important;
    background: var(--Dark);
}

.Section-Showcase-Images-Card-Inner {
    display: flex;
    flex-direction: row;
    gap: 30px;
    position: relative;
    width: 100%;
    will-change: transform;
}

.Showcase-Images-Card {
    flex: 0 0 calc(40% - 20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}



.Card-Content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    border-image-slice: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.Showcase-Images-Card:hover .Card-Content {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.Showcase-Images-Card-Image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.Showcase-Images-Card-Image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Showcase-Images-Card:hover .Showcase-Images-Card-Image img {
    transform: scale(1.2) rotate(5deg);
}

.Section-Heading {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50%;
    align-items: center;
    padding: 2% 0;
}

.Section-Heading h1 {
    font-size: 4rem;
    font-weight: bold;
    font-family: var(--Heading);
    color: var(--Light);
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
    background: var(--Light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.Showcase-Images-Card-Description {
    text-align: center;
    padding: 15px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    backdrop-filter: blur(20px);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    display: none;
    visibility: hidden;
}

.Showcase-Images-Card-Description-Title {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: var(--Heading);
    color: var(--Light);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    background: var(--Light);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s linear infinite;
}

/* Subtle Glow Effect */
.Showcase-Images-Card-Description-Title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 150%;
    animation: subtleGlow 3s infinite ease-in-out;
    border-radius: 50%;
    z-index: -1;
}

/* Underline with Smooth Fade */
.Showcase-Images-Card-Description-Title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--Magnita), var(--Red));
    opacity: 0.8;
    animation: underlineGlow 1.5s infinite ease-in-out alternate;
    border-radius: 5px;
}

/* Hover Effect: Enhance Glow */
.Showcase-Images-Card:hover .Showcase-Images-Card-Description-Title {
    animation: gradientShiftHover 1.5s ease-in-out infinite alternate;
    background: linear-gradient(90deg, var(--Magnita), var(--Magnita));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Showcase-Images-Card:hover .Showcase-Images-Card-Description-Title::after {
    animation: underlineGlowHover 0.5s ease-in-out infinite alternate;
}

.Showcase-Images-Card:hover .Showcase-Images-Card-Description {
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
}

/* Animations */

/* Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Gradient Hover */
@keyframes gradientShiftHover {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Subtle Glow Effect */
@keyframes subtleGlow {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.7;
    }
}

/* Underline Glow */
@keyframes underlineGlow {
    0% {
        opacity: 0.6;
        transform: scaleX(0.9);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Underline Glow Hover */
@keyframes underlineGlowHover {
    0% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0.8;
        transform: scaleX(0.95);
    }
}



/* Particle Glow Effect */
.Showcase-Images-Card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;

    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.Showcase-Images-Card:hover::before {
    opacity: 1;
}

@media (max-width: 2000px) {
    .Section-Heading h1 {
        font-size: 5rem;
    }
}

@media (max-width: 1450px) {
    .Section-Heading h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1050px) {
    .Showcase-Images-Card-Image img {
        height: 100%;
    }

    .Section-Showcase-Images-Card {
        padding: 0 3.5% 10vh !important;
    }

    .Section-Showcase-Images-Card-Inner {
        gap: 25px;
    }

    .Showcase-Images-Card {
        flex: 0 0 calc(75% - 10px);
    }

    .Section-Heading h1 {
        font-size: 4rem;
    }
}

@media (max-width: 900px) {
    .Section-Showcase-Images-Card {
        padding: 0 3.5% 10vh !important;
    }

    .Section-Showcase-Images-Card-Inner {
        gap: 30px;
    }

    .Showcase-Images-Card {
        flex: 0 0 calc(75% - 10px);
    }
}

@media (max-width: 550px) {
    .Section-Heading {
        height: 25%;
    }

    .Section-Heading h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .Showcase-Images-Card-Description-Title {
        font-size: 1.5rem;
    }

    .Section-Showcase-Images-Card {
        padding: 0 4.5% 10vh !important;
    }

    .Section-Showcase-Images-Card-Inner {
        gap: 35px;
    }

    .Showcase-Images-Card {
        flex: 0 0 calc(100% - 10px);
    }

}































.bento-gallery {
    width: 100%;
    padding: 5% 4%;
    background-color: #000;
}

.section-gallery-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-family: var(--Heading);
    text-transform: uppercase;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

.bento-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    grid-auto-flow: dense;
}

/* Card-style layout */
.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #111;
}

.bento-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-item.wide {
    grid-column: span 2;
}

/* Responsive tweaks */

/* Responsive tweaks */
@media (max-width: 2000px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-gallery-grid {
        display: grid
    ;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 12px;
        grid-auto-flow: dense;
    }
}

@media (max-width: 1450px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .bento-gallery-grid {
        display: grid
    ;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        grid-auto-flow: dense;
    }
}



@media (max-width: 1050px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-gallery-heading {
        font-size: 3rem;
    }
    .bento-gallery {
        padding-bottom: 20%;
    }
}

@media (max-width: 820px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 550px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .bento-item.wide {
        grid-column: span 1;
    }

    .section-gallery-heading {
        font-size: 2.5rem;
    }
}












.VideoGallery {
    padding: 10% 5%;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.VideoGallery__container {
    opacity: 0;
    transform: translateY(30px);
}

.VideoGallery__container.active {
    opacity: 1;
    transform: translateY(0);
}

.VideoGallery__heading {
    font-size: 5em;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    font-family: var(--Heading);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.VideoGallery__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fff 50%, transparent 100%);
}

.VideoGallery__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
}

.VideoCard {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.VideoCard__media {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.VideoCard__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.VideoCard__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    cursor: pointer;
}

.VideoCard__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.PlayButton {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
}

.PlayButton::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}

/* Hover Effects */
.VideoCard:hover .VideoCard__media {
    transform: scale(1.05);
}

.VideoCard:hover .VideoCard__thumbnail {
    transform: scale(1.1);
    filter: brightness(0.8) contrast(1.1);
}

.VideoCard:hover .VideoCard__overlay {
    opacity: 1;
}

.VideoCard:hover .PlayButton {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.VideoCard:hover .PlayButton::before {
    transform: translate(-35%, -50%) scale(1.2);
}

/* Scroll Animation */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 2000px) {
    .VideoGallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .VideoGallery__heading {
        font-size: 5em;
    }
}

@media (max-width: 1450px) {
    .VideoGallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1280px) {
    .VideoGallery__heading {
        font-size: 4.5em;
    }
}

@media (max-width: 1050px) {
    .VideoGallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .VideoGallery__heading {
        font-size: 4em;
    }
}

@media (max-width: 820px) {
    .VideoGallery__heading {
        font-size: 3em;
    }
}

@media (max-width: 550px) {
    .VideoGallery__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .VideoGallery__heading {
        font-size: 2.5em;
    }

    .PlayButton {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 450px) {
    .VideoGallery__heading {
        font-size: 2em;
    }
}