
:root {
    --primary: #050505;
    --glass-bg: rgba(22, 22, 22, 0.85);
    --glass-border: rgba(255, 255, 255, 0.15);
    --accent: #ffffff;
    --silver: #cbd5e1;
    --text-main: #ffffff;
    --text-body: #ffffff;
    --text-dim: #94a3b8;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);

    /* Swiper Custom Colors */
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

body {
    background-color: var(--primary);
    color: var(--text-body);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .st-title {
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 400;
    color: var(--text-main);
    text-transform: uppercase;
}

/* --- Global Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--easing);
}

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

/* --- Navigation --- */
.navbar {
    padding: 25px 0;
    transition: 0.5s var(--easing);
    background: transparent !important;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 6px;
    font-weight: 700;
}

.nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 10px;
    color: var(--text-main) !important;
    opacity: 0.7;
    font-weight: 700;
}

/* Mobile Nav expanded background */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 30px;
        border: 1px solid var(--glass-border);
        border-radius: 12px;
    }
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), #0505053d), url(/images/sporshia-viral.jpg) no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-title-main {
    font-size: clamp(3.5rem, 12vw, 11rem);
    line-height: 0.8;
    margin-bottom: 10px;
    overflow: hidden;
}

.hero-title-main span {
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 1.2s var(--easing) forwards;
}

.hero-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 15px;
    color: var(--silver);
    opacity: 0;
    animation: fadeIn 1.5s var(--easing) 0.8s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* --- Trailers Section --- */
.trailer-spotlight {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.trailer-spotlight iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trailer-thumb {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: 0.3s var(--easing);
    position: relative;
    aspect-ratio: 16/9;
}

.trailer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.trailer-thumb:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.trailer-thumb.active {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.trailer-thumb.active img {
    opacity: 1;
}


/* --- Shooting Gallery Swiper --- */
.swiper-shooting {
    width: 100%;
    padding: 40px 0 80px;
    position: relative;
}

.shooting-card {
    width: 100%;
    height: 550px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: zoom-in;
}

.shooting-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 1.2s;
}

.shooting-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

/* --- Vertical Timeline --- */
.v-timeline {
    position: relative;
    padding: 40px 0;
}

.v-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .v-timeline::before {
        left: 50%;
    }
}

.v-item {
    position: relative;
    margin-bottom: 100px;
    width: 100%;
}

.v-content {
    width: 100%;
    padding-left: 50px;
}

@media (min-width: 768px) {
    .v-content {
        width: 45%;
        padding-left: 0;
    }

    .v-item:nth-child(even) .v-content {
        margin-left: auto;
        text-align: left;
        padding-left: 60px;
    }

    .v-item:nth-child(odd) .v-content {
        text-align: right;
        padding-right: 60px;
    }
}

.v-dot {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .v-dot {
        left: calc(50% - 11px);
    }
}

.tm-year-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 3.5rem;
    color: var(--silver);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

/* --- Art with Purpose Section --- */
.purpose-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.purpose-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '\ea7c';
    font-family: 'unicons';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    color: white;
    opacity: 0.03;
}

.purpose-tag {
    color: var(--silver);
    letter-spacing: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Contact Form Design --- */
.contact-card {
    background: #0d0d0d;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: clamp(30px, 6vw, 80px);
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--silver);
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.form-control {
    background: #151515 !important;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: white !important;
    padding: 18px;
    margin-bottom: 25px;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: white;
    background: #1a1a1a !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-premium {
    background: white;
    color: black;
    padding: 22px 60px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    border: none;
    width: 100%;
    transition: 0.4s;
    border-radius: 5px;
}

.btn-premium:hover {
    background: var(--silver);
    transform: translateY(-3px);
}

/* --- Global Titles --- */
.st-tag {
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 12px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.st-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin-bottom: 50px;
    line-height: 0.95;
}

.social-link {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: 0.4s;
    text-decoration: none;
}

.social-link:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-5px);
}
/* --- Updated Hero Section Styles --- */

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    /* Reduced spacing slightly for better readability of the longer string */
    letter-spacing: 8px;
    color: var(--silver);
    opacity: 0;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    animation: fadeIn 1.5s var(--easing) 0.5s forwards;
}

.hero-title-main {
    line-height: 0.8;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-size: 100px;
}

/* Creating a sophisticated contrast for the second name */
.hero-last-name {
    font-style: italic;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.6);
    transition: 0.5s var(--easing);
}

#hero:hover .hero-last-name {
    color: var(--silver);
    -webkit-text-stroke: 1px var(--silver);
}

.hero-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-dim);
    max-width: 600px;
    margin-top: 20px;
    font-weight: 600;
}

/* Adding a subtle overlay to ensure text pops regardless of image brightness */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0) 60%);
    z-index: -1;
}

#hero .container {
    position: relative;
    z-index: 2;
}
/* --- Enhanced About Typography & Styles --- */

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--silver);
    font-style: italic;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.brand-list {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 2;
}

.stat-item h4 {
    font-family: 'Tenor Sans', sans-serif;
    color: var(--accent);
}

.btn-premium-outline {
    border: 1px solid var(--glass-border);
    color: white;
    padding: 18px 35px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.4s var(--easing);
    display: inline-block;
    text-decoration: none;
}

.btn-premium-outline:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

/* Portrait Styling */
.portrait-container {
    position: relative;
    padding: 20px;
}

.glass-frame {
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 4px;
}

.main-portrait {
    filter: grayscale(20%);
    transition: 1s var(--easing);
}

.portrait-container:hover .main-portrait {
    filter: grayscale(0%);
}

.floating-year {
    position: absolute;
    top: -20px;
    left: -20px;
    background: white;
    color: black;
    padding: 15px 25px;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: bold;
    letter-spacing: 4px;
    font-size: 0.8rem;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 991px) {
    .floating-year {
        left: 20px;
        top: 20px;
    }
}/* Ensure year labels don't overlap on smaller screens */
@media (max-width: 767px) {
    .tm-year-label {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }
    .v-item {
        margin-bottom: 60px; /* Tighter spacing for mobile */
    }
}

/* Subtle highlight for movie titles in timeline */
.v-content p em, .v-content p i {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}
/* --- Journey Section Specifics --- */

.journey-visual-grid {
    position: relative;
    padding-bottom: 40px;
}

.main-visual {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.main-visual img {
    width: 100%;
    transition: transform 1.5s var(--easing);
    filter: brightness(0.7);
}

.journey-visual-grid:hover .main-visual img {
    transform: scale(1.1);
    filter: brightness(1);
}

.overlay-card {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
}

.list-unstyled li {
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.list-unstyled li:hover {
    color: white;
    transform: translateX(10px);
}

.work-highlight h5 {
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 2px;
}

/* Ensure spacing between sections */
#journey + #evolution {
    border-top: 1px solid rgba(255,255,255,0.05);
}
/* --- Redesigned Vertical Timeline --- */

.v-timeline-wrapper {
    position: relative;
    padding: 60px 0;
}

.v-timeline {
    position: relative;
}

/* The Central Line */
.v-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 15%, rgba(255,255,255,0.2) 85%, transparent);
}

.v-item {
    position: relative;
    margin-bottom: 80px;
}

.v-dot {
    position: absolute;
    left: 10px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #050505;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 10;
    transition: 0.5s var(--easing);
}

.v-item:hover .v-dot {
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
    transform: scale(1.3);
}

.v-content {
    padding-left: 60px;
}

.tm-year-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    color: white;
    font-weight: 400;
    letter-spacing: -1px;
    opacity: 0.2;
    transition: 0.5s var(--easing);
}

.v-item:hover .tm-year-label {
    opacity: 1;
    transform: translateX(10px);
}

.timeline-heading {
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: white;
}

.timeline-text {
    color: var(--text-dim);
    max-width: 500px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Desktop Alternating Layout */
@media (min-width: 992px) {
    .v-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .v-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .v-content {
        width: 45%;
        padding-left: 0;
    }

    /* Odd items on the left */
    .v-item:nth-child(odd) .v-content {
        text-align: right;
        margin-right: auto;
        padding-right: 60px;
    }

    .v-item:nth-child(odd) .tm-year-label {
        transform-origin: right;
    }

    /* Even items on the right */
    .v-item:nth-child(even) .v-content {
        margin-left: auto;
        padding-left: 60px;
    }

    .v-item:hover .v-dot {
        transform: translateX(-50%) scale(1.3);
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .tm-year-label {
        font-size: 2.5rem;
    }
}/* --- Final Cinematic Trailer Styles --- */

.trailers-section {
    padding: 120px 0 !important; /* Forces top and bottom spacing */
    background-color: #050505 !important;
    position: relative;
    width: 100%;
}

.trailer-container {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: #000;
    overflow: hidden;
}

.trailer-spotlight {
    position: relative;
    padding-top: 56.25%; /* Fixed 16:9 Aspect Ratio */
}

.trailer-spotlight iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Thumbnail Styling */
.trailer-thumb {
    cursor: pointer;
    transition: 0.4s var(--easing);
}

.thumb-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16/9;
}

.trailer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: 0.5s var(--easing);
}

/* Corrected Play Icon */
.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1; /* Keep visible but subtle */
}

.thumb-overlay i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.thumb-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
    text-align: center;
    color: var(--text-dim);
    font-weight: 700;
}

/* Interaction States */
.trailer-thumb:hover img,
.trailer-thumb.active img {
    filter: brightness(1);
    transform: scale(1.08);
}

.trailer-thumb:hover i {
    color: #fff;
    transform: scale(1.2);
}

.trailer-thumb.active .thumb-img-wrapper {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.trailer-thumb.active .thumb-label {
    color: #fff;
}
.btn{
    padding: 22px 60px !important;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
}
/* --- Refined About Section Styles --- */

.about-section-refined {
    padding: 180px 0 !important;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.about-title-main {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.text-outline-refined {
    font-style: italic;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.about-description {
    font-size: 1.15rem;
    color: var(--silver);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Image Presentation */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-inner {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
}

.image-inner img {
    transition: transform 1.5s var(--easing);
    filter: grayscale(10%) contrast(1.1);
}

.about-image-wrapper:hover .image-inner img {
    transform: scale(1.05);
}

.image-border-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
    transition: 0.6s var(--easing);
}

.about-image-wrapper:hover .image-border-decoration {
    transform: translate(30px, 30px);
    border-color: rgba(255,255,255,0.3);
}

/* Stats and Brands */
.brand-names {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.brand-names span {
    color: white;
    margin: 0 10px;
    opacity: 0.3;
}

.stat-number {
    display: block;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 700;
}

/* Button Refinement */
.btn-discover {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.4s;
}

.btn-discover:hover {
    color: var(--silver);
    border-color: white;
    gap: 25px;
}
/* --- Redesigned Archive Section --- */

.film-archive-section {
    padding: 160px 0 !important;
    background: #050505;
}

/* Spotlight Card Styles */
.featured-film-card {
    display: block;
    text-decoration: none;
    transition: 0.5s var(--easing);
}

.film-poster {
    position: relative;
    aspect-ratio: 2/3; /* Traditional Movie Poster Ratio */
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s var(--easing);
    filter: grayscale(20%);
}

.poster-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s var(--easing);
}

.poster-reveal i { font-size: 3rem; color: white; margin-bottom: 10px; }
.poster-reveal span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: white; }

.featured-film-card:hover .film-poster img { transform: scale(1.1); filter: grayscale(0); }
.featured-film-card:hover .poster-reveal { opacity: 1; }

.p-year { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 2px; display: block; margin-bottom: 5px; }
.p-title { font-size: 1.4rem; color: white; margin-bottom: 5px; transition: 0.3s; }
.p-director { font-size: 0.85rem; color: var(--text-dim); margin: 0; }

.featured-film-card:hover .p-title { color: var(--silver); }

/* Archive List Styling */
.archive-list {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.archive-item {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.4s;
    position: relative;
}

.archive-item span {
    font-family: 'Tenor Sans', sans-serif;
    color: white;
    margin-right: 20px;
    font-size: 0.85rem;
    opacity: 0.5;
}

.archive-item:hover {
    color: white;
    padding-left: 15px;
}



.archive-item:hover::after {
    opacity: 1;
    right: 10px;
}

.mb-100 { margin-bottom: 100px; }
/* --- Gallery Interaction for Archive --- */

.film-poster {
    cursor: zoom-in;
    display: block;
    text-decoration: none !important;
}

.poster-reveal i {
    font-size: 2.5rem; /* Slightly smaller icon for expand */
}

/* Ensure Fancybox captions match your site theme */
.fancybox__caption {
    font-family: 'Tenor Sans', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
/* --- Refined Archive Item with HTML Icon --- */

.archive-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes text to left, icon to right */
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.4s var(--easing);
}

.archive-text-wrap {
    transition: 0.4s var(--easing);
}

.archive-text-wrap span {
    font-family: 'Tenor Sans', sans-serif;
    color: white;
    margin-right: 20px;
    font-size: 0.85rem;
    opacity: 0.5;
}

.archive-icon {
    font-size: 1.4rem;
    color: white;
    opacity: 0; /* Hidden by default */
    transform: translateX(-10px); /* Positioned slightly to the left */
    transition: 0.4s var(--easing);
}

/* Hover State */
.archive-item:hover {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.archive-item:hover .archive-text-wrap {
    transform: translateX(10px); /* Text nudges right */
}

.archive-item:hover .archive-icon {
    opacity: 1; /* Arrow fades in */
    transform: translateX(0); /* Arrow slides to the far right position */
}
