:root {
    --primary-dark: #0A0A0F;
    --primary-purple: #ff0097;
    --primary-gold: #D4AF37;
    /* Keeping as secondary accent */
    --primary-blush: #E6C9C9;
    --secondary-gray: #1a1a24;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.center {
    text-align: center;
}

.accent-purple {
    color: var(--primary-purple);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--text-white);
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary-dark);
}

.btn-gold {
    background: var(--primary-purple);
    color: var(--text-white);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 151, 0.4);
}

.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-dark);
}

.btn-dark {
    background: var(--secondary-gray);
    color: var(--text-white);
    border: 1px solid var(--secondary-gray);
}

.btn-dark:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--text-white);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.9), transparent);
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom shadow/border for blog pages sticky menu */
nav.blog-nav.scrolled {
    background: #000 !important;
    border-bottom: 2px solid #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-dot {
    color: var(--primary-purple);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--primary-purple);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-white);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.nav-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--primary-dark) 10%, rgba(255, 0, 151, 0.2) 60%, rgba(10, 10, 15, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.hero-title {
    font-size: 8vw;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 0, 151, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: #ff0097;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 0, 151, 0.5);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: var(--text-white);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.silhouette-bg {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 500px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    filter: sepia(10%) contrast(1.1);
}

.about-text {
    padding-left: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.about-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ff0097;
    font-size: 1.1rem;
}

.about-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-purple);
    border-radius: 50%;
}

/* Classes Section */
.classes {
    padding: 6rem 0;
    background: var(--secondary-gray);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.class-card {
    position: relative;
    height: 400px;
    /* adjusted slightly smaller */
    background: #252530;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.class-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
}

/* Using a subtle pattern for class background if no image */
.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/class.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.3;
    /* Create a fade out effect towards the bottom */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    z-index: 1;
    transition: var(--transition);
}

.class-card.junior-team::before {
    background-image: url('assets/images/junior-team.jpg');
    opacity: 0.6;
}

.class-card.kids-team::before {
    background-image: url('assets/images/kids-team.jpg');
    opacity: 0.6;
}

.class-card.lumi-steps::before {
    background-image: url('assets/images/lumi-steps.jpg');
    opacity: 0.6;
}

.class-card.mini-wizards::before {
    background-image: url('assets/images/mini-wizards.jpg');
    opacity: 0.6;
}

.class-card.stars-team::before {
    background-image: url('assets/images/stars-team.jpg');
    opacity: 0.6;
}

.class-card.team-a::before {
    background-image: url('assets/images/team-a.jpg');
    opacity: 0.6;
}

.class-card.pro-team::before {
    background-image: url('assets/images/pro-team.jpg');
    opacity: 0.6;
}

.desktop-filler-image {
    display: none;
    border-radius: 8px;
    background: url('assets/images/pro-team-large.jpg') no-repeat center center/cover;
    height: 400px;
}

@media (min-width: 950px) {
    .desktop-filler-image {
        display: block;
        grid-column: span 2;
    }
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.class-card:hover .card-content {
    transform: translateY(-10px);
}

.class-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.age-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 0, 151, 0.3);
    border: 1px solid rgba(255, 0, 151, 0.5);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: #E0D4FF;
}

.btn-link {
    font-size: 0.9rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    border-bottom: 1px solid var(--primary-purple);
}

/* Impact Section */
.impact {
    padding: 4rem 0 4rem;
    background: linear-gradient(to bottom, #0A0A0F 0%, #151520 100%);
    text-align: center;
}

.impact-container {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-stat .number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 1rem;
}

.impact-stat .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.impact-text-container {
    max-width: 100%;
    margin: 0 auto;
}

.impact-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.impact-sub {
    font-size: 1.3rem;
    color: #ff0097;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0 8rem;
    /* Added top padding, kept bottom padding */
}

/* Blog Section */
.blog {
    padding: 2rem 0;
    background: #050508;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-link i {
    transform: translateX(5px);
}

.blog-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* Gallery Grid Fix (if needed) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    background: #1a1a24;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(40%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.item-1 {
    grid-column: 1 / 3;
}

.item-2 {
    grid-column: 3 / 4;
}

.item-3 {
    grid-column: 4 / 5;
}

.item-4 {
    grid-column: 3 / 5;
}

.item-5 {
    grid-column: 1 / 2;
}

.item-6 {
    grid-column: 2 / 3;
}

/* Post Gallery (used in blog content) */
.post-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.post-gallery img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.post-gallery img:hover {
    transform: scale(1.03);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #121216 0%, #1a1a24 100%);
    text-align: center;
}

.testimonial-slide {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.author {
    font-size: 1rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Final */
.cta-final {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    background: url('assets/images/hero-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.5rem;
    color: #ff0097;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-info-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.cta-email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: #ff0097;
    font-family: var(--font-body);
    font-weight: 500;
    padding: 1rem 2.5rem;
    border: 1px solid #ff0097;
    border-radius: 50px;
    letter-spacing: 1px;
    cursor: default;
    user-select: text;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-col h4 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-col.social a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-col.social a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #555;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 15vw;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .post-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0.8rem;
    }

    .gallery-item {
        grid-column: span 1 !important;
        height: 200px;
    }

    .gallery-item.item-1,
    .gallery-item.item-4 {
        grid-column: span 2 !important;
        height: 250px;
    }

    .post-gallery img {
        height: 180px !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1.2rem;
    }

    .impact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        padding: 2rem;
        text-align: center;
        gap: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-btn {
        display: none !important;
    }

    .nav-actions {
        display: flex;
        order: 1;
        margin-left: auto;
        margin-right: 1rem;
    }

    .menu-toggle {
        display: block;
        order: 2;
        z-index: 1001;
    }

    .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: white;
        transition: var(--transition);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-col h3 {
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .impact-headline {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 0, 151, 0.4);
    border: none;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: white;
    color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.cursor-pointer {
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-family: 'Outfit', sans-serif;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    text-decoration: none;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 20px;
    }
}