/* TR: Bu tema Ahmet Doğukan Konuk tarafından geliştirilmiş olup; tüm kaynak kodları, tasarımlar, görseller ve videolar münhasıran BK Creative şirketine aittir. İzinsiz kullanımı, kopyalanması veya dağıtılması kesinlikle yasaktır; tespiti halinde derhal ağır tazminat davaları açılarak hukuki işlem başlatılacaktır.
EN: This theme was developed by Ahmet Doğukan Konuk; all source codes, designs, images, and videos belong exclusively to BK Creative. Unauthorized use, copying, or distribution is strictly prohibited; upon detection, immediate legal action and heavy compensation lawsuits will be initiated.
*/

:root {
    --bg-color: #F4F4F0;
    --text-main: #111111;
    --text-muted: #666666;
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--text-main);
    color: var(--bg-color);
}

.premium-nav {
    padding: 2rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.premium-nav.scrolled {
    padding: 1rem 0;
    background: rgba(244, 244, 240, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-main) !important;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-premium-dark {
    background-color: var(--text-main);
    color: var(--bg-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--text-main);
    transition: all 0.3s ease;
}

.btn-premium-dark:hover {
    background-color: transparent;
    color: var(--text-main);
}

/* =========================================
   ULTRA PREMIUM DROPDOWN MİKRO ANİMASYONLARI
   ========================================= */

@media (min-width: 992px) {
    .custom-dropdown-wrapper {
        position: relative;
    }

    .custom-dropdown-wrapper::after {
        content: '';
        position: absolute;
        bottom: -25px;
        left: 0;
        width: 100%;
        height: 25px;
    }

    .custom-dropdown-wrapper:hover .custom-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

.custom-dropdown {
    display: block;
    position: absolute;
    top: calc(100% + 15px);
    left: -1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    min-width: 280px;
    z-index: 99;
}

.custom-dropdown .dropdown-item {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    letter-spacing: -0.3px;
}

.custom-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--bg-color);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
}

.custom-dropdown .dropdown-item::after {
    content: '↗';
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-main);
    opacity: 0;
    transform: translate(-15px, 15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown .dropdown-item:hover {
    color: var(--text-main);
    padding-left: 2rem;
}

.custom-dropdown .dropdown-item:hover::before {
    width: 100%;
}

.custom-dropdown .dropdown-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.dropdown-toggle::after {
    display: none !important;
}

/* =========================================
   MOBİL İÇİN TAM EKRAN (FULLSCREEN) MENÜ
   ========================================= */

.menu-toggle-btn {
    background: transparent;
    border: none;
    z-index: 9999;
    position: relative;
    padding: 10px;
    cursor: pointer;
}

.burger-lines {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-lines span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-open .burger-lines span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-open .burger-lines span:nth-child(2) {
    opacity: 0;
}
.menu-open .burger-lines span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    pointer-events: none;
}

.menu-bg {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 0;
    height: 0;
    background-color: var(--bg-color);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 1;
}

.menu-open .menu-bg {
    width: 300vw;
    height: 300vw;
}

.menu-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transition-delay: 0s;
}

.menu-open .fullscreen-menu-overlay {
    pointer-events: auto;
}

.menu-open .menu-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.4s;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-item-anim {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-open .menu-item-anim {
    transform: translateY(0);
    opacity: 1;
}

.menu-open .menu-item-anim:nth-child(1) { transition-delay: 0.4s; }
.menu-open .menu-item-anim:nth-child(2) { transition-delay: 0.5s; }
.menu-open .menu-item-anim:nth-child(3) { transition-delay: 0.6s; }
.menu-open .menu-item-anim:nth-child(4) { transition-delay: 0.7s; }
.menu-open .mobile-socials { transition-delay: 0.8s; }

.premium-footer {
    background-color: #0a0a0a;
    color: #F4F4F0;
    padding-top: 8rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-top-row {
    margin-bottom: 6rem;
}

.footer-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    transform: translateY(-4px);
}

.footer-sub-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-links-pill {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pill-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #cccccc;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.pill-link:hover {
    background-color: #ffffff;
    color: #0a0a0a;
}

.footer-contact-info li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-info a:hover {
    opacity: 0.7;
}

.footer-bottom-row {
    align-items: flex-end;
    margin-top: 4rem;
}

.giant-brand-text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 16vw, 13rem);
    font-weight: 800;
    color: #be0808;
    letter-spacing: -6px;
    line-height: 0.75;
    margin: 0;
    text-shadow: 0 0 80px rgba(255, 17, 17, 0.5);
    white-space: nowrap;
}

@media (max-width: 991px) {
    .premium-footer {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .footer-top-row {
        margin-bottom: 2rem;
    }
    .giant-brand-text {
        letter-spacing: -2px;
        text-align: center;
        font-size: 3rem;
    }
}

/* =========================================
   YENİ: CUSTOM CURSOR (ÖZEL İMLEÇ)
   ========================================= */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #e95332;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 1);
    mix-blend-mode: difference;
}

@media (min-width: 992px) {
    body, a, button, .project-card {
        cursor: none !important;
    }
}

/* =========================================
   ULTIMATE UNIQUE CTA STİLLERİ
   ========================================= */
.interactive-marquee-cta {
    background-color: #080808;
    color: #F4F4F0;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    z-index: 5;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-cta-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.marquee-row {
    width: 100vw;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -4px;
    padding-right: 3rem;
    white-space: nowrap;
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
}

.outline-row .marquee-content span {
    color: transparent;
    -webkit-text-stroke: 2px rgba(244, 244, 240, 0.25);
}

.interactive-marquee-cta:hover .marquee-row:not(.outline-row) .marquee-content span {
    color: #e95332;
}

.interactive-marquee-cta:hover .outline-row .marquee-content span {
    -webkit-text-stroke: 2px #e95332;
}

.cta-bottom-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 6rem;
    position: relative;
    z-index: 15;
}

.cta-subtext {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.mail-pill-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border: 1px solid rgba(244, 244, 240, 0.2);
    border-radius: 100px;
    color: #F4F4F0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.mail-pill-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.mail-pill-btn .hover-bg {
    position: absolute;
    top: 100%; left: 0;
    width: 100%; height: 100%;
    background-color: #F4F4F0;
    z-index: 1;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.5s ease;
}

.mail-pill-btn:hover { border-color: #F4F4F0; }
.mail-pill-btn:hover .btn-text { color: #111111; }
.mail-pill-btn:hover .hover-bg {
    transform: translateY(-100%);
    border-radius: 0;
}

@media (max-width: 991px) {
    .interactive-marquee-cta { padding: 6rem 0; cursor: default; }
    .marquee-content span { font-size: clamp(3.5rem, 15vw, 5rem); padding-right: 1.5rem; }
    .mail-pill-btn { padding: 1rem 2rem; font-size: 1rem; }
    .cta-bottom-actions { margin-top: 4rem; }
}

/* =========================================
   YENİ: LATEST POSTS (BLOG) STİLLERİ
   ========================================= */

.blog-section {
    background-color: var(--bg-color);
    padding: 8rem 0;
    position: relative;
    z-index: 6;
    overflow: hidden;
}

.blog-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -2px;
    margin: 0;
}

.btn-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid #e95332;
    border-radius: 50px;
    color: #e95332;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-all-articles:hover {
    background-color: #e95332;
    color: #ffffff;
}

.blog-scroll-container {
    width: 100%;
    padding-left: 4rem;
}

.blog-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    will-change: transform;
    padding-right: 4rem;
}

.blog-card {
    width: 600px;
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    background: #e0e0e0;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-meta {
    align-items: flex-start;
}

.blog-date {
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.blog-date .day {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 0.9;
    color: var(--text-main);
    letter-spacing: -1px;
}

.blog-date .month-year {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-info {
    flex: 1;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.blog-title:hover {
    color: #e95332;
}

.blog-tags {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-tags a {
    color: #e95332;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.blog-tags a:hover {
    opacity: 0.7;
}

@media (max-width: 991px) {
    .blog-scroll-container {
        padding-left: 1.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
    }
    .blog-track {
        gap: 1.5rem;
    }
    .blog-card {
        width: 85vw;
        scroll-snap-align: center;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem;
    }
}

/* =========================================
   GÜNCELLENMİŞ TAM EKRAN MOBİL MENÜ (HATA DÜZELTMELERİ)
   ========================================= */
.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 10000;
    pointer-events: none;
}

.menu-bg {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #f5f5f0 !important;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
    border-radius: 0 !important;
}

.menu-open .menu-bg {
    transform: translateY(0);
}

.menu-inner-container {
    position: relative;
    z-index: 2;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.2s;
    overflow-y: auto;
}

.menu-open .fullscreen-menu-overlay { pointer-events: auto; }
.menu-open .menu-inner-container { opacity: 1; visibility: visible; }

.menu-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.menu-close-btn {
    background: none; border: none; padding: 5px; cursor: pointer;
    color: #111111;
    transition: transform 0.3s ease;
}

.menu-close-btn:hover { transform: rotate(90deg); }

.menu-content-scroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2rem;
}

.mobile-nav-list { margin: 0; padding: 0; }
.mobile-nav-list > li { margin-bottom: 1.2rem; }

.mobile-nav-link-wrapper { cursor: pointer; }

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 10vw, 4rem);
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -1px;
}

.dropdown-icon {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 300;
    color: #111111;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 1rem;
}

.mobile-sub-menu li { margin-top: 0.8rem; }
.mobile-sub-menu a {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    display: block;
}

.has-mobile-dropdown.active .mobile-sub-menu { max-height: 300px; }
.has-mobile-dropdown.active .dropdown-icon { transform: rotate(45deg); }

.mobile-menu-footer {
    flex-shrink: 0;
    margin-top: 1rem;
}

.mobile-menu-socials {
    display: flex; gap: 1rem; margin-bottom: 1.5rem;
}

.mobile-menu-socials a {
    color: #111111;
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.mobile-menu-address {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.mobile-menu-address strong {
    color: #111111;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.menu-item-anim { transform: translateY(20px); opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.menu-open .menu-item-anim { transform: translateY(0); opacity: 1; }
.menu-open .menu-item-anim:nth-child(1) { transition-delay: 0.3s; }
.menu-open .menu-item-anim:nth-child(2) { transition-delay: 0.4s; }
.menu-open .menu-item-anim:nth-child(3) { transition-delay: 0.5s; }
.menu-open .menu-item-anim:nth-child(4) { transition-delay: 0.6s; }
.menu-open .mobile-menu-footer { transition-delay: 0.7s; }

/* =========================================
   DARK VIDEO WALL STİLLERİ
   ========================================= */
.dark-wall-portfolio {
    background-color: #050505;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

.wall-grid {
    display: flex;
    gap: 1.2rem;
    width: 150vw;
    transform: rotate(-15deg) scale(1.1);
    justify-content: center;
    align-items: center;
}

.wall-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 320px;
    flex-shrink: 0;
    will-change: transform;
}

.wall-card {
    position: relative;
    width: 100%;
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.wall-card img, .wall-card .bg-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(233, 83, 50, 0.15);
}

.wall-card img {
    display: block;
    transition: opacity 0.4s ease;
}

.wall-card.hovered img {
    opacity: 0;
}

.bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.wall-card.hovered .bg-video {
    opacity: 1;
}

.wall-card:hover {
    transform: scale(1.01);
    z-index: 10;
}

.wall-card:hover img, .wall-card:hover .bg-video {
    box-shadow: -10px 15px 30px rgba(0, 0, 0, 1), 0 0 35px rgba(233, 83, 50, 0.3);
}

/* =========================================
   SADECE MOBİLDE GÖRÜNEN YAZI ALANI
   ========================================= */
.mobile-project-info {
    display: none;
}

/* =========================================
   MOBİLDE KART SAYISI DÜZELTMESİ (KESİN ÇÖZÜM)
   ========================================= */
@media (max-width: 991px) {
    .dark-wall-portfolio { height: auto; padding: 5rem 0; }

    .wall-grid {
        width: 100%;
        transform: none;
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 2.5rem;
    }

    .wall-col:not(:first-child) {
        display: none !important;
    }

    .wall-col {
        width: 100%;
        display: flex !important;
    }

    .wall-col:first-child .wall-card:nth-child(n+7) {
        display: none !important;
    }

    .wall-card img, .wall-card .bg-video {
        border-radius: 16px;
        aspect-ratio: 16/9;
        height: auto;
    }

    .mobile-project-info {
        display: block;
        margin-top: 1rem;
    }

    .m-title {
        font-size: 1.4rem;
        color: #F4F4F0;
        margin-bottom: 0.2rem;
    }

    .m-category {
        font-size: 0.8rem;
        color: #e95332;
        text-transform: uppercase;
    }
}

.btn-load-more {
    display: inline-flex;
    padding: 1rem 3rem;
    border: 1px solid var(--text-main);
    border-radius: 50px;
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--text-main);
    color: var(--bg-color);
}
