/* :root {
    --xx: #0000ff20;
    --xy: #00ff0020;
    --xz: #ff000020;

    --f-main: 'Panchang', sans-serif;

    --bg: #000000;
    --tx: #fafafa;
    --tx2: #606060;
    --cf: #c800e2;

    --padding-side: 50px;
    --padding-top: 34px;
} */

/* #smooth-content {
    background-image: initial;
    background-repeat: initial;
    background-size: initial;
} */

/*  */

/* .moving-canvas {
    width: fit-content;
    background-image: url(assets/particle-texture.avif);
    background-repeat: repeat;
    background-size: 100vw;
} */

/*  */

.home {
    /* background-color: var(--xx); */
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transform: translateX(50px); */
    /* padding-right: 100px; */
}

.interactive-prespective-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.img-1-container-parent {
    position: relative;
    transform-style: preserve-3d;
}

.img-1-container {
    position: relative;
    transform-style: preserve-3d;
}


.section-img-1 {
    position: relative;
    width: 380px;
    max-width: 70vw;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    rotate: 6deg;
    transform: translateZ(0px);
}

.tape {
    position: absolute;
}

/* .home-img-1-container::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    transform: translate(-24%, -24%) translateZ(40px);
    background-image: url(assets/tape-1.png);
    background-repeat: no-repeat;
    z-index: 99;
    width: 145px;
    height: 155px;
    border: 1px solid;
} */
.img-1-tape-1 {
    top: 0;
    left: 0;
    transform: translate(-24%, -24%) translateZ(40px);
    max-width: 30vw;
    max-height: auto;
}

.img-1-tape-2 {
    bottom: 0;
    right: 0;
    transform: translate(26%, 30%) translateZ(40px);
    max-width: 46vw;
    max-height: auto;
}

.img-1-para {
    position: relative;
    transform-style: preserve-3d;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.99);
}

.img-1-para-right {
    text-align: right;
    margin-left: -120px;
    max-width: 480px;
    transform: translateZ(60px);
}

.img-1-para-line {
    /* position: absolute; */
    display: inline-block;
}

.img-1-para-line-right {
    /* top: 0;
    left: 0; */
    margin-bottom: 1.2em;
    /* transform: translate(10%, -110%); */
}

.img-1-para-top {
    position: absolute;
    top: 0;
    left: 30%;
    display: flex;
    gap: 10px;
    width: 320px;
    transform: translateZ(100px);
}

.img-1-para-line-top {
    margin-top: .8em;
}

.img-1-para-left {
    position: relative;
    top: 30%;
    left: 0;
    transform:
        /* translateX(calc(-100% + 30px)) */
        translateZ(80px);
    max-width: 240px;
    margin-right: -40px;
    z-index: 99;
}

.img-1-para-line-left {
    /* margin-bottom: .5em; */
    position: absolute;
    right: 2ch;
    top: -6px;
    transform: translate(100%, -100%);
}

.home-img-1-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 80vw;
    rotate: -10deg;
    transform: translateZ(120px);
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.5));
}

/*  */

.events {
    position: relative;
    width: 100dvw;
    /* margin-left: 50vw; */
    padding-top: 100px;
}

.events-heading {
    text-align: right;
    margin: 0 auto;
    margin-bottom: 100px;
}

.main-events-ul {
    /* position: relative; */
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 150px;
    list-style: none;
    padding: 0 var(--padding-side) 100px;
}

.get-tickets-heading {
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cf);

    /* font-family: reey;
    letter-spacing: 1px; */
}

.main-events-ul li a {
    display: block;
    position: relative;
    border-bottom: 1px solid var(--tx2);
    /* border-left: none;
    border-right: none; */
    padding: 12px 0;
    /* min-height: 84px; */
    transition: padding 0.3s ease;
}

.main-events-ul li:first-child a {
    border-top: 1px solid var(--tx2);
}

.main-events-ul-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 8px 0;
}

.main-events-ul-content>* {
    flex: 1;
}

.event-date {
    line-height: 1.4;
}

.event-countdown {
    color: var(--tx2);
    font-weight: 500;
    line-height: 1.4;
}

.event-location {
    text-align: right;
    color: var(--tx2);
}

.get-tickets-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--cf);
    background-image: url(assets/get-started-vector.svg);
    background-size: auto 1em;
    background-repeat: repeat-x;
    background-position: center;
    transition: height 0.3s ease;
    animation: slide-x 20s linear infinite;
}

@keyframes slide-x {
    from {
        background-position: 0 center;
    }

    to {
        background-position: 100% center;
    }
}

.main-events-ul li a:not(.view-all-events-link):hover {
    padding: 0 4px 24px;
    background-color: #ffffff20;
}

.main-events-ul li a:hover .get-tickets-stripe {
    height: 24px;
}

.view-all-events-li {
    margin-top: 50px;
    text-align: center;
}

.view-all-events-link {
    display: inline !important;
    color: var(--tx) !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 0.1em;
    transition: color 120ms ease !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.view-all-events-link:hover {
    color: var(--cf) !important;
}

.event-poster-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: auto;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    border: 8px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.event-poster-container img {
    width: 100%;
    height: auto;
    display: block;
}

.event-poster-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    transform: translateX(-50%) rotate(-2deg);
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/*  */

.gallery {
    padding: 0 100px;
    padding-top: 140px;
}

.cta-gallery {
    text-decoration: underline;
}

.gallery-project-info-container {
    position: relative;
    margin-top: 60px;
    margin-left: 150px;
    max-width: 460px;
}

.gallery-project-info-container p:not(:last-of-type) {
    margin-bottom: 10px;
}

.gallery-project-info-container p:not(.gallery-project-title) {
    color: var(--tx2);
}

.gallery-project-title {
    font-size: 1.4em;
}

.gallery-project-images-container {
    position: relative;
    margin-top: 60px;
    height: 500px;
    width: 100vw;
    margin-left: -100px;
    padding: 0 100px;
    /* max-height: 85vh; */
    display: flex;
    gap: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scroll-behavior: auto;
    /* Required for custom inertia */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    user-select: none;
    -webkit-user-drag: none;

    /* Scroll Snap for mobile */
    scroll-snap-type: x mandatory;
}

@media (max-width: 768px) {
    .gallery-project-images-container {
        padding: 0 var(--padding-side);
        /* margin-left: calc(var(--padding-side) * -1); */
        gap: 20px;
    }
}

.gallery-project-images-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.gallery-project-images-container:active {
    cursor: grabbing;
}

.gallery-project-images-container img,
.gallery-project-images-container video {
    position: relative;
    height: 100%;
    width: auto;
    max-width: 90vw;
    object-fit: contain;
    pointer-events: auto;
    /* Allow interactions like clicking for muting */
    user-select: none;
    -webkit-user-drag: none;
    scroll-snap-align: center;
}

/* Video Mute/Unmute Toggle UI */

.video-wrapper {
    position: relative;
    height: 100%;
    width: auto;
    display: inline-block;
    flex-shrink: 0;
}

.video-wrapper:hover .mute-ui-container {
    background-color: rgba(255, 255, 255, 0.3);
}

.mute-ui-container {
    --mute-ui-svg-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    user-select: none;
    fill: var(--tx);
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    z-index: 10;
    pointer-events: auto;
    transition: background-color 0.3s ease;
}

.mute-ui-container .mute-svg {
    position: absolute;
    animation: keyframes-fill .5s;
    width: var(--mute-ui-svg-size);
    height: var(--mute-ui-svg-size);
}

.mute-ui-container .voice-svg {
    position: absolute;
    display: none;
    animation: keyframes-fill .5s;
    width: var(--mute-ui-svg-size);
    height: var(--mute-ui-svg-size);
}

/* ------ On check event ------ */
.mute-ui-container input:checked~.mute-svg {
    display: none;
}

.mute-ui-container input:checked~.voice-svg {
    display: block;
}

/* ------ Hide the default checkbox ------ */
.mute-ui-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
    0% {
        transform: rotate(0deg) scale(0);
        opacity: 0;
    }

    50% {
        transform: rotate(-10deg) scale(1.2);
    }
}

.gallery-project-images-container .video-wrapper video {
    height: 100%;
    width: auto;
}

/*  */

.contact {
    margin-top: 120px;
}

.contact-heading {
    /* margin: 0 auto; */
    margin-left: 100px;
}

.contact-content {
    position: relative;
    max-width: 570px;
    margin: 140px auto 100px;
    background-color: var(--tx);
    color: var(--bg);
}

.contact-content::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(assets/paper-texture.avif);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    pointer-events: none;
    user-select: none;
    /* z-index: -99; */
}

.contact-content-section {
    position: relative;
    /* width: 100%; */
    padding: 40px;
}

/* .contact-content-section-top {
    height: 60px;
} */
/* .contact-content-section-top-triangle-texture-container { */
/* position: absolute;
    top: -25px;
    left: 0; */
/* width: 100%;
    height: 24px;
    background-image: url(assets/triangle--white-up-vector.svg);
    background-size: 26px auto;
    background-repeat: repeat-x; */
/* width: 100%;
    height: 25px;

    background:
        linear-gradient(
            135deg,
            transparent 75%,
            #fff 75%
        ) 0 0 / 30px 15px repeat-x,
        linear-gradient(
            225deg,
            transparent 75%,
            #fff 75%
        ) 0 0 / 30px 15px repeat-x; */
/* } */

.contact-content-section-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--padding-side);
    border-top: 6px dashed var(--bg);
    border-bottom: 6px dashed var(--bg);
}

/* .contact-content-section-divider {
    position: relative;
    z-index: 999;
    border: none;
    border-top: 6px dashed var(--bg);
} */

.contact-triangle-full-stripe {
    position: absolute;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    z-index: -999;
    height: fit-content;
    left: 0;
    width: 100%;
}

.contact-triangle-full-stripe-top {
    top: 0;
    transform: translateY(-100%);
}

.contact-triangle-full-stripe-bottom {
    bottom: 0;
    transform: translateY(100%) scaleY(-1);
}

.contact-triangle-full-stripe>img {
    position: relative;
    width: 100%;
    min-width: 400px;
    height: auto;
}

.contact-profile-image-container {
    position: relative;
    width: 100%;
}

.contact-profile-image {
    width: 100%;
}

.contact-content-section-right {
    text-transform: uppercase;
}

.contact-content-section-right-heading {
    color: var(--tx2);
    margin-bottom: 10px;
}

.contact-content-section-right-text-name {
    margin-bottom: 4px;
}

.contact-content-section-right-text-role {
    font-size: 12px;
}

/* Corner Triangles Styling */
.corner-triangle {
    position: absolute;
    background-color: var(--bg);
    z-index: 10;
}

/* Size and Base Alignment (Reoriented to sides) */
.ct-tl,
.ct-tr,
.ct-bl,
.ct-br {
    width: 16px;
    height: 30px;
}

/* Positioning and Rotation to point inward from sides */
.ct-tl {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transform: translateY(-18px);
    margin-left: -1px;
}

.ct-tr {
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    transform: translateY(-18px);
    margin-right: -1px;
}

.ct-bl {
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transform: translateY(18px);
    margin-left: -1px;
}

.ct-br {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    transform: translateY(18px);
    margin-right: -1px;
}

.contact-content-section-2 {
    padding: 14px;
    border-bottom: 6px dashed var(--bg);
}

.contact-content-section-2-card {
    position: relative;
    /* background:
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 1px,
            transparent 1px,
            transparent 2px),
        linear-gradient(135deg,
            #050505 0%,
            #0a0a0a 25%,
            #111111 45%,
            #1a1a1a 50%,
            #111111 55%,
            #0a0a0a 75%,
            #050505 100%); */
    background-color: var(--bg);
    color: var(--tx);
    border-radius: 20px;
    padding: 30px 30px 140px;
    display: flex;
    text-transform: uppercase;
    justify-content: space-between;
    align-items: flex-start;
    /* border: 1px solid rgba(255, 255, 255, 0.03); */
    /* box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        inset 0 -1px 2px rgba(0, 0, 0, 0.9),
        0 40px 80px -15px rgba(0, 0, 0, 0.7); */
    overflow: hidden;

    transform-style: preserve-3d;
    perspective: 1000px;

    /* Reflection control variables */
    --reflect-x: 50;
    --reflect-y: 50;
    --reflect-opacity: 0;
}

/* Dynamic Reflection Layer (Realistic Panning Highlights) */
.contact-content-section-2-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg,
            transparent 0%,
            transparent 35%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.04) 55%,
            transparent 65%,
            transparent 100%);
    transform:
        translateX(calc((var(--reflect-x) - 50) * -0.5%)) translateY(calc((var(--reflect-y) - 50) * -0.5%));
    opacity: var(--reflect-opacity);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Secondary static highlights for base depth */
/* .contact-content-section-2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.02) 47%,
            rgba(255, 255, 255, 0.01) 53%,
            transparent 60%);
    z-index: 1;
    pointer-events: none;
} */

.contact-content-section-2-card-left,
.contact-content-section-2-card-right {
    position: relative;
    z-index: 2;
}

.contact-content-section-2-card-left-heading {
    color: var(--tx2);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-content-section-2-card-left-link-container>a {
    display: block;
    text-decoration: underline;
    margin-bottom: 4px;
}

.contact-content-section-2-card-logo {
    position: absolute;
    width: 84px;
    max-width: 100%;
    height: auto;
    bottom: 30px;
    z-index: 2;
}

.contact-content-section-3 {
    border-bottom: 6px dashed var(--bg);
}

.contact-content-section-3-heading {
    text-transform: uppercase;
}

.contact-form {
    margin-top: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    display: block;
    width: 100%;
    padding: 4px;
    margin-bottom: 26px;
    border: none;
    border-bottom: 1px dashed var(--tx2);
    background-color: transparent;
    color: var(--bg);
    font-size: 26px;
    font-family: inherit;
    outline: none;
}

.contact-form .contact-form-submit-btn {
    background-color: var(--bg);
    color: var(--tx);
    padding: 6px 18px;
    border: none;
    margin-bottom: none;
    width: fit-content;
    margin-bottom: 0;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.contact-form .contact-form-submit-btn:hover {
    background-color: #353535;
}

/* Responsive Overrides */

@media (max-width: 1050px) {
    .img-1-para-right {
        max-width: 380px;
        margin-bottom: 100px;
    }
}

/* @media (max-width: 1024px) {
    .heading {
        font-size: 8vw;
    }
} */

@media (max-width: 1000px) {
    .gallery-event-2 {
        margin-top: 100px !important;
    }

    .contact {
        margin-top: 60px;
    }

    .contact-heading {
        margin-left: var(--padding-side);
    }
}

@media (max-width: 900px) {

    .img-1-para-line {
        display: none;
    }

    /* .img-1-para-right {
        margin-bottom: 0;
    } */
    .events .img-1-para-top,
    .img-1-para-left,
    .img-1-para-right {
        display: none;
    }
}

@media (max-width: 860px) {
    .home {
        margin-top: 20px;
    }

    .img-1-para-top {
        width: auto;
    }
}

/* @media (max-width: 500px) {
    .tape {
        display: none;
    }
} */
@media (max-width: 800px) {
    .gallery {
        padding: 0 var(--padding-side);
    }

    .gallery-project-info-container {
        margin-left: var(--padding-side);
    }

    .gallery-project-images-container {
        margin-left: calc(var(--padding-side) * -1);
    }

    .contact-content {
        margin-top: 100px;
        max-width: calc(100% - var(--padding-side) * 2);
    }
}

@media (max-width: 600px) {
    .contact {
        margin-top: 30px;
    }
}

@media (max-width: 460px) {

    .gallery-project-info-container,
    .gallery-project-images-container {
        margin-top: 40px;
    }
}

@media (max-width: 500px) {

    /* .contact {
        font-size: 16px;
    } */
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 18px;
    }

    .contact-content-section {
        padding: 20px;
    }
}

@media (max-width: 416px) {
    .img-1-para-top {
        position: absolute;
        top: initial;
        left: initial;
        bottom: -70px;
        width: auto;
    }

    .img-1-para-line-top {
        display: none;
    }
}

@media (max-width: 768px) {
    .events {
        padding-top: 60px;
    }

    .events .img-1-para-right {
        text-align: left;
        padding: 0 var(--padding-side);
        max-width: 100%;
        margin: 60px auto 0;
        font-size: 14px;
        line-height: 1.6;
        color: var(--tx2);
        display: block;
    }

    /* Adjust the interactive section image for mobile */
    .events .interactive-prespective-container {
        flex-direction: column;
        padding: 0 var(--padding-side);
        align-items: flex-start;
    }

    .events .img-1-container-parent {
        width: 100%;
        display: flex;
        justify-content: center;
        perspective: 1000px;
    }

    .events .section-img-1 {
        width: 80vw;
        max-width: 320px;
        max-height: none;
        rotate: 0deg;
        transform: translateZ(20px);
    }

    /* .events .img-1-para-left, */
    .events .img-1-para-top {
        display: none;
    }

    .events .img-1-tape-1 {
        max-width: 20vw;
    }

    .events .img-1-tape-2 {
        max-width: 30vw;
    }

    /* Redesign the events list as Tickets */
    .main-events-ul {
        margin-top: 60px;
        padding: 0 var(--padding-side);
    }

    .get-tickets-heading {
        margin-bottom: 30px;
        letter-spacing: 0.2em;
        text-align: center;
    }

    .main-events-ul li {
        margin-bottom: 24px;
        position: relative;
    }

    .main-events-ul li a {
        background-color: #0c0c0c;
        border: 1px solid #1a1a1a;
        border-radius: 12px;
        padding: 0;
        /* padding moved to content */
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
        display: block;
        overflow: hidden;
        border-top: 1px solid #1a1a1a !important;
    }

    .main-events-ul li a:active {
        transform: scale(0.97);
        border-color: var(--cf);
    }

    .main-events-ul-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 24px;
    }

    .list-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .event-date {
        font-size: 13px;
        color: var(--cf);
        font-weight: 600;
        text-transform: uppercase;
    }

    .event-countdown {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #1a1a1a;
        color: var(--tx);
        padding: 4px 10px;
        border-radius: 4px;
        border: 1px solid #333;
    }

    .list-center {
        width: 100%;
        margin-bottom: 15px;
    }

    .event-name {
        font-size: clamp(24px, 7vw, 32px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        color: var(--tx);
    }

    .list-right {
        width: 100%;
        padding-top: 15px;
        border-top: 1px dashed #222;
    }

    .event-location {
        font-size: 13px;
        color: var(--tx2);
        display: block;
        line-height: 1.4;
    }

    .get-tickets-stripe {
        position: relative;
        height: 24px;
        background-size: auto 0.7em;
        opacity: 0.8;
        border-top: 1px solid #1a1a1a;
    }

    .main-events-ul li a:hover {
        padding: 0;
        background-color: #0c0c0c;
    }

    .main-events-ul li a:hover .get-tickets-stripe {
        height: 24px;
    }
}

@media (max-width: 440px) {
    .home {
        padding-top: 150px;
        align-items: flex-start;
    }
}


/* @media (max-width: 480px) {
    .section-img-1 {
        max-height: 300px;
    }
} */