/*
    Loads custom fonts to be used site-wide via font-family references
*/
@font-face {
    font-family: 'archivo-black';
    src: url(../fonts/Archivo_Black/ArchivoBlack-Regular.ttf);
}

@font-face {
    font-family: 'serif';
    src: url(../fonts/Source_Serif_4/SourceSerif4-Regular.ttf);
}

@font-face {
    font-family: 'serif-bold';
    src: url(../fonts/Source_Serif_4/SourceSerif4-SemiBold.ttf);
}

/* 

    root for repeated properties 
    Defines reusable CSS variables for consistent styling
    Especially useful for managing colors across the site

*/
:root {
    /* main colors */
    --color-notwhite: #FFFCF0;
    --color-notwhite-hover: #fffcf0bc;
    --color-notblack: #2E1A07;
    --color-orange: #FF922E;
    --color-orange-cta: #d56700;
    --color-orange-lo-title: #ebceb3;
}

/*
    Sets up a scrolling text effect using CSS animation
    Text moves leftwards infinitely to simulate a carousel
*/

.scrolling-txt__container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    z-index: 2;
}

.txt__big-orange {
    display: flex;
    align-items: center;
    width: max-content;
}

.scrolling-txt {
    color: var(--color-orange);
    font-size: 5.5rem;
    font-family: 'archivo-black';
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
    padding: 0 10px;
    width: max-content;
    display: flex;
    align-items: center;
    transform: translateX(0);
    transition: ease;
    animation: a-text-scroll 35s linear infinite;
}

@keyframes a-text-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/*
    Applies default styles to all elements for consistency and smoother layout behavior
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'serif';
}

body {
    background-color: var(--color-notwhite);
    overflow-x: hidden;
}

a {
    color: var(--color-notblack);
    text-decoration: none;
}

/* 

    main header styling 
    Styles the sticky header to remain visible during scrolling
    Centralizes navigation and adds spacing and blur for aesthetics
*/
.main-header {
    position: sticky;
    z-index: 10;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

/*
    Applies horizontal layout and blur to nav items inside the header
*/

.main-header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 10px;
    backdrop-filter: blur(50px);
}

.main-header nav ul li {
    padding-left: 30px;
    padding-right: 30px;
}

/*
    Highlights nav links on hover for interactivity and emphasis
*/

.main-header nav ul li a:hover {
    font-family: 'serif-bold';

}

.main-header__select {
    position: relative;
    display: inline-block;
    font-family: 'serif-bold';
}

/* Creates an underline effect below the selected menu item using a pseudo-element */
.main-header__select::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -2px;
    width: 130%;
    height: 2px;
    background-color: var(--color-orange);
}


/*
    Mobile-specific adjustments to header spacing and alignment
*/
@media (max-width: 480px) {
    .main-header nav ul li {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}



/*
    Footer styling with background image and blurred overlay
*/

.main-footer {
    position: relative;
    backdrop-filter: blur(2px);
    height: 50vh;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0px;
    background-image: url(../pictures/footer-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*
    Ensures footer typography is styled for readability on a dark background
*/
.main-footer h2,
.main-footer a {
    color: var(--color-notwhite);
    font-size: 1.2rem;
}

.main-footer a {
    position: relative;
}

.main-footer li {
    padding-bottom: 10px;
    list-style: none;
}

/*
    Adds underline to footer links for visual feedback
*/
.main-footer a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 120%;
    height: 2px;
    background-color: var(--color-orange);
    filter: blur(1px);
}

.main-footer a:hover {
    color: var(--color-notwhite-hover);
}

.main-footer a::after:hover {
    background-color: blue;
}

.footer__content nav ul li:first-child a {
    font-size: 1.5rem;
}


/*
    Positioning and layout for footer imagery and content sections
*/
.footer__img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45vw;
}

.footer__dropdowns {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 40px;
}

.footer__element {
    display: flex;
    flex-direction: column;
    /* align-content: flex-end; */
    align-items: flex-end;
}

.footer__element-mid {
    margin-left: 75px;
    margin-right: 75px;
}

.footer__input {
    display: none;
}

.footer__content {
    display: none;
}

.footer__content nav {
    display: flex;
    text-align: end;
}

/*
    When the input is checked (via label), show the related content
*/
.footer__input:checked~.footer__content {
    display: block;
}

.footer__label {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;

    padding-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.footer__label:hover {
    transform: scale(95%);
    filter: brightness(1.1);
}


.footer__nav-img {
    height: 1.5rem;
}

.footer__nav-img-loc {
    height: 1.9rem;
}



.footer__arrow,
.footer__arrow-loc {
    height: 1rem;
    padding-left: 10px;
}

.footer__arrow-loc {
    margin-bottom: 6px;
}

/*
    Rotates arrow indicators when dropdown is active
*/
.footer__input:checked~.footer__label .footer__arrow {
    transform: translateX(35%) rotate(0.5turn);
}

.footer__input:checked~.footer__label .footer__arrow-loc {
    transform: translateX(35%) rotate(0.5turn);
}

/*
    Adjusts footer layout for tablet-sized screens for better vertical stacking
*/
@media (max-width: 1030px) {
    .footer__dropdowns {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding: 10px;
        padding-bottom: 150px;
    }

    .footer__element {
        display: flex;
        flex-direction: column;
        /* align-content: flex-end; */
        align-items: flex-start;
        padding-bottom: 10px;
    }

    .footer__element-mid {
        margin: unset;
    }

    .footer__img {
        bottom: 0px;
    }

    .main-footer {
        height: fit-content;
    }

    .footer__content nav {
        display: flex;
        text-align: start;
    }

    .footer__nav-img {
        height: 1rem;
    }

    .footer__nav-img-loc {
        height: 1.4rem;
    }


}










/* 

    home page styling

*/

.home__main {
    /* min-height: 200vh; */
    overflow: hidden;
}

p {
    color: var(--color-notblack);
    font-size: 1.2rem;
}

.home__top-section {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

/* home page lila letters image */
.home__LILA {
    width: 110vw;
    bottom: 0;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    max-width: none;
}

.home__LILA img {
    position: absolute;
    width: 100%;
    bottom: 0;
    opacity: 0;
    transition: opacity 10s ease-in-out;
    /* Smooth fade */
    z-index: 1;
}

.home__LILA img.active {
    opacity: 1;
    z-index: 2;
}

/* 
    animation (with js) for letters image on landing section on the homepage
*/
@keyframes changeImage {

    0%,
    100% {
        background-image: url('../pictures/LILA-home.png');
    }

    33% {
        background-image: url('../pictures/LILA-home.png');
    }

    66% {
        background-image: url('../pictures/LILA-home.png');
    }
}

.home__discover-btn {
    position: absolute;
    left: 25.25vw;
    top: 30%;
    width: 10vw;
}

.home__about-section {
    /* height: 100vh; */
    width: 100vw;
    position: relative;
    /* overflow: hidden; */
}


.home__about-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    margin-top: 40px;
    margin-bottom: 100px;
}

.home__about-content__img-div {
    padding-right: 60px;
}



.home__orchid {
    width: 17vw;
    filter: drop-shadow(0px 0px 15px var(--color-orange));
    min-width: 200px;
    transition: transform 0.3s ease-in-out;
}

.home__orchid:hover {
    transform: scale(98%);
}

.home__about-content__div {
    width: 40%;
}

.home__about-content__txt {
    /* width: 40%; */
    max-width: 800px;
    padding-bottom: 10px;
}

.home__about-content__txt span {
    font-family: 'serif-bold';
}

.home__about-content__txt span a {
    font-family: inherit;

}

.home__about-content__txt span a:hover {
    color: var(--color-orange);
}


.home__about-content__txt a:hover {
    font-family: 'serif-bold';
    cursor: pointer;
}

/* 
    Grid layout for the collage section on the homepage.
    Defines an 8-column, 4-row grid with uniform gaps between items.
*/
.home__collage {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    /* width: 500px; */
}

/* 
    Makes all images inside collage divs fully occupy their grid cells
    without distortion.
*/
.home__collage div img {
    width: 100%;
    height: 100%;
}

/* 
    Base styling for grid items (if used in .grid-container class).
    Applies background color, padding, text styling, and alignment.
*/
.grid-container>div {
    background-color: #f1f1f1;
    color: #000;
    padding: 10px;
    font-size: 30px;
    text-align: center;
}

/* 
    Individual positioning of collage items within the grid.
    Each item is placed manually using grid-column and grid-row.
*/
.home__collage-item1 {
    grid-column: 1 / 3;  /* spans columns 1-2 */
    grid-row: 1 / 3;     /* spans rows 1-2 */
}

.home__collage-item3 {
    grid-column: 3 / 4;  /* column 3 */
    grid-row: 2 / 3;     /* row 2 */
}

.home__collage-item4 {
    grid-column: 4 / 6;  /* spans columns 4-5 */
    grid-row: 1 / 3;     /* spans rows 1-2 */
}

.home__collage-item5 {
    grid-column: 6 / 8;  /* spans columns 6-7 */
    grid-row: 1 / 3;     /* spans rows 1-2 */
}

.home__collage-item9 {
    grid-column: 1 / 2;  /* column 1 */
    grid-row: 4 / 5;     /* row 4 */
}

.home__collage-item10 {
    grid-column: 2 / 4;  /* spans columns 2-3 */
    grid-row: 3 / 5;     /* spans rows 3-4 */
}

.home__collage-item11 {
    grid-column: 4 / 6;  /* spans columns 4-5 */
    grid-row: 3 / 5;     /* spans rows 3-4 */
}

.home__collage-item13 {
    grid-column: 6 / 7;  /* column 6 */
    grid-row: 4 / 5;     /* row 4 */
}

.home__collage-item14 {
    grid-column: 7 / 9;  /* spans columns 7-8 */
    grid-row: 3 / 5;     /* spans rows 3-4 */
}

.collage-item__hover:hover {
    /* transform: scale(101%); */
    /* transform: scale(90%); */
    cursor: pointer;
    filter: drop-shadow(0px 0px 5px var(--color-orange));
}



.home__prvproject-section {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.home__prevproject-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 40px;
    margin-bottom: 100px;
}

.home__prevproject-content {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
}

.home__prevproject-content:hover {
    cursor: pointer;
    font-family: 'serif-bold';
    transform: scale(98%);
}

.home__prevproject-content:hover h2 {
    font-family: 'serif-bold';
}

.home__prevproject-content h2,
h3 {
    font-size: 1.5rem;
    font-weight: lighter;
}

.home__prevproject-content h3 {
    font-size: 1.2rem;
}

.home__prvproject-img {
    width: 20vw;

}

/* 
    mobile responsiveness for home page
*/
@media (max-width: 480px) {
    .home__collage {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 4px;

    }

    .home__top-section {
        height: 80vh;
    }

    .home__about-content__div {
        width: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home__about-content {
        flex-direction: column;
    }

    .home__about-content__img-div {
        padding-right: 0px;
        padding-bottom: 45px;
    }

    .home__about-content__txt {
        width: 80%;
    }

    .home__prevproject-div {
        flex-direction: column;
    }

    .home__prvproject-img {
        width: 50vw;
    }

    .home__prevproject-content {
        padding-bottom: 40px;
    }

}

/* 
    tablet responsiveness for home page
*/

@media (max-width: 1030px) {
    .home__prvproject-section {
        height: unset;
    }

    .home__about-content {
        flex-direction: column;
    }

    .home__about-content__div {
        width: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home__about-content__txt {
        width: 450px;
    }
}






/* 

    main learning outcome styling 

*/

.loc__main {
    margin-bottom: -28.3px;
}

.loc__main h2 {
    font-family: 'archivo-black';
    font-size: 5.5rem;
    margin-top: -95.6px;
    margin-left: -8px;
    color: var(--color-notwhite);
}

.loc__loc-img {
    padding-top: 60px;
    padding-bottom: 100px;
    width: 100vw;
}

.loc__section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.loc__img-div {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
}

.loc__loc-small-img {
    width: 19.5vw;
}

.loc__img-div:hover {
    transform: scale(95%);
    cursor: pointer;
}

/* 
    tablet responsiveness for main lo page
*/

@media (max-width: 1030px) {
    .loc__section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .loc__loc-small-img {
        width: 100%;
    }
}

/* 
    mobile responsiveness for main lo page
*/
@media (max-width: 480px) {
    .loc__section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .loc__loc-small-img {
        width: 60vw;
    }
}











/* 

    studio page styline

*/
.studio__main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.studio__top {
    height: 100vh;
}

.studio__top-div {
    position: relative;
}

.studio__logo {
    position: absolute;
    width: 20%;
    top: 48%;
    left: 20%;
    transition: transform 0.3s ease-in-out;
}

.studio__logo:hover {
    transform: scale(95%);
    cursor: pointer;
    filter: drop-shadow(0px 0px 1px var(--color-orange));
}

.studio__project-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: -27.7px;
    transition: transform 0.3s ease-in-out;
}

.studio__project-div h2 {
    font-family: 'archivo-black';
    font-size: 5.5rem;
    margin-top: -96.2px;
    color: var(--color-notwhite);
    text-align: center;
}

.studio__project-img {
    width: 55vw;
}

.studio__project-div:hover {
    transform: scale(95%);
    cursor: pointer;
}

.studio__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    margin: 20px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 60px;
    width: 70%;
}

.studio__content p {
    max-width: 550px;
    padding-bottom: 30px;
}

.studio__content-img {
    width: 100%;
}

.studio__sub-section {
    padding-bottom: 100px;
}

.studio__sub-section_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 100px;
}

.studio__sub-section_right p {
    text-align: end;
}

.branding__logo {
    margin-top: 75px;
    margin-bottom: 150px;
    transition: transform 0.3s ease-in-out;
}

.branding__logo:hover {
    transform: scale(98%);
    cursor: pointer;
    filter: drop-shadow(0px 0px 1px var(--color-orange));
}

.studio__arrow {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}


/* 
    mobile responsiveness for studio page
*/

@media (max-width: 480px) {
    .studio__top-div {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .studio__project-img {
        width: 100vw;
    }

    .studio__logo {
        position: relative;
        width: 100%;
        top: unset;
        left: unset;
        transition: transform 0.3s ease-in-out;
        padding-bottom: 20px;
    }

    .studio__project-div h2 {
        font-family: 'archivo-black';
        font-size: 5.5rem;
        margin-top: -96.2px;
        margin-left: -10px;
        color: var(--color-notwhite);
        text-align: center;
    }


}

/* 
    tablet responsiveness for homepage
*/
@media (max-width: 1030px) {

    .studio__main {
        /* height: 100vh; */
        display: flex;
        /* align-content: space-around; */
        flex-direction: column;
        /* justify-content: space-between; */
    }

    .studio__project-div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 19px;
        transition: transform 0.3s ease-in-out;
    }

    .studio__project-img {
        width: 90vw;
    }

    .branding__logo {
        width: 75vw;
    }
}


/* 

    secret page styling

*/

.secret__top-sec {
    height: 100vh;
}


.joke__container {
    columns: 250px;
}

.joke__container a img {
    transition: transform 0.3s ease-in-out;
}

.joke__container a img:hover {
    transform: scale(95%);
    filter: drop-shadow(0px 0px 5px var(--color-orange));
}

.joke__container img {
    width: 100%;
    margin-bottom: 10px;
}



/* 

    induv lo pages styling

*/

.lo__main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lo__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 20px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 60px;

    width: 70%;
}

.lo__content p {
    max-width: 550px;
    padding-bottom: 10px;
}

.lo__proof-txt {
    color: var(--color-orange);
    font-size: 4rem;
    font-family: 'archivo-black';
    margin-top: -22px;
}



.lo__top-img {
    height: 50vh;
    margin-right: 100px;
}

.lo__content-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
}

.lo__proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lo__proof div {
    margin-bottom: 12px;
}

.lo__proof-next-prev {
    color: var(--color-orange-cta);
    font-size: 1.2rem;
    font-family: 'archivo-black';
    display: flex;
    align-items: center;
    cursor: pointer;

    margin-top: -10px;
    margin-bottom: -10px;
    transition: transform 0.3s ease-in-out;
}

.lo__proof-next-prev span {
    font-size: 1.5rem;
}

.lo__proof-next-prev:hover {
    transform: scale(90%);
}

.lo__title {
    color: var(--color-orange-lo-title);
    font-size: 3.3rem;
    font-family: 'archivo-black';
    /* text-decoration: underline; */
    /* padding-bottom: 30px; */
}

.lo__headers {
    color: var(--color-orange);
    font-size: 2rem;
    font-family: 'archivo-black';
}

.lo__sub-head {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-notblack);
    font-family: 'archivo-black';
    padding-top: 15px;
}

.lo__action-div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 60px;
    flex-wrap: wrap;
}

.lo__action-div p a,
.lo__feedback-div p a {
    text-decoration: underline;
}

.lo__action-div p a:hover,
.lo__feedback-div p a:hover {
    color: var(--color-orange);
}


.lo__action-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* padding-bottom: 30px; */
    flex-wrap: wrap;
}

.lo__action-img-div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* .lo__action-img-div img {
    width: 30%;
} */

.lo__feedback-div {
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.lo__feedback-div img {
    padding-top: 30px;
    width: 100%;
}

.lo__reflection {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
}

.up__arrow {
    font-size: 3.5rem;
    margin-bottom: -31px;
    color: var(--color-orange-cta);
}

.up__arrow:hover {
    cursor: pointer;
    transform: scale(120%);
}

.documentation-p {
    text-decoration: underline;
    width: fit-content;
    display: block;
}

.documentation-p:hover,
.documentation-p p:hover {
    color: var(--color-orange);
}

.lo__prev-next-bottom {
    padding-top: 30px;
    padding-bottom: 100px;
    display: block;
    width: fit-content;
}

/* 
    mobile responsiveness for induv lo pages
*/
@media (max-width: 480px) {
    .lo__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: unset;
        margin: unset;
        margin-left: unset;
        margin-right: unset;
        margin-top: unset;
        width: 100%;
        padding: 25px;
    }

    .lo__proof {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        width: fit-content;
    }

    .lo__content p {
        max-width: 100%;
    }

    .lo__feedback-div img {
        padding-top: 30px;
        width: 100%;
    }

    .lo__action-top {
        display: flex;
        flex-direction: COLUMN;
        justify-content: space-between;
        padding-bottom: 30px;
        flex-wrap: wrap;
    }

    .lo__action-top img {
        width: 100%;
    }

    .lo__action-img-div img {
        width: 100%;
    }

    .lo__top-img {
        width: 100%;
        margin-right: unset;
    }

    .lo__proof div {
        margin-bottom: 50px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .lo__prev-next-bottom {
        padding-top: 30px;
        padding-bottom: 100px;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
}





/* 

    playlist styling

*/

.playlist__content-sec {
    background-image: url(../pictures/playlist-LINE.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.playlist__div {
    width: 100%;
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;

}

.playlist__div div a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    transition: transform 0.3s ease-in-out;
}

.playlist__div div a:hover {
    transform: scale(90%);
}

.playlist__div img {
    width: 400px;
    padding-left: 60px;
    padding-right: 60px;
}

.playlist__div h3 {
    padding-top: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.playlist__div h2 {
    font-size: 1.5rem;
    font-family: inherit;
    font-weight: inherit;
}

/* 
    tablet responsiveness for playlist page
*/
@media (max-width: 1030px) {
    .playlist__div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
}









/* 

    gallery styling 

*/

/* 

    gallery styling , gallery for showing pictures 

*/

.galleryNew,
.galleryNew-v {
    position: relative;
    width: 25%;
    height: fit-content;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
}

.galleryNew:focus-within {
    min-width: 100%;
    /* max-height: 100vh; */
    /* z-index: 10;
    position: fixed;
    top: 50px; */
    /*Enlarged size on click*/
    /* height: 400px; */
    /* max-height: 80vh; */
}

.galleryNew-v:focus-within {
    width: unset;
    height: 80vh;
    /* Enlarged size on click */
    /* height: 400px; */
}

.galleryNew__viewport {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
}

.galleryNew__image {
    flex: 0 0 100%;
    /* Only one image visible at a time */
    object-fit: contain;
    /* Handles images of different sizes */
    width: 100%;
    height: 100%;
}

/* .galleryNew__blur {
    filter: brightness(0.8) blur(3px) opacity(0.65);
} */

.galleryNew__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-orange-cta);
    border: none;
    color: var(--color-notwhite);
    font-size: 18px;
    cursor: pointer;
    padding: 1px 4px;
    z-index: 4;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    text-shadow: 0px 0px 5px rgb(255 217 0 / 50%), 0px 0px 10px rgb(255 217 0 / 50%), 0px 0px 15px rgb(255 217 0 / 50%);
}

.galleryNew__arrow:hover {
    opacity: 1;
    color: var(--color-orange-cta);
    text-shadow: 0px 0px 5px rgb(255 217 0 / 75%), 0px 0px 10px rgb(255 217 0 / 75%), 0px 0px 15px rgb(255 217 0 / 75%);
    background: var(--color-notwhite);
}

.galleryNew__arrow--left {
    left: 10px;
}

.galleryNew__arrow--right {
    right: 10px;
}

.galleryNew__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed; /*Shows a "not allowed" icon (🚫) to indicate the element is not interactive*/
}

.galleryArrow-hidden {
    display: none;
}