@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

:root {
    --font-primary: "Source Sans 3";
    --font-secondary: "Source Serif 4";
    --color-bg: #000;
    /*--color-bg-rgb: rgb(21 34 53);*/
    /*--color-text: #424242;*/
    --color-text: #e3e3e3;
}


/*GENERAL*/

body {
    font-family: var(--font-primary), sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.overflow-hidden {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary), serif;
    font-weight: 600;
}


h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
}

h2 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
}

h4 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

h6 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.section-padding {
    padding: 100px 0;
}

/*HEADER*/

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 990;
    padding: 1.25rem 3rem;
}

.navbar-social {
    position: relative;
    width: 33%;
    display: flex;
    color: #fff;
    /* gap: 1rem; */
}

a.social-square {
    border: 1px solid rgb(255, 255, 255, .2);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-right: 0;
    transition: .4s ease-in-out;
}

a.social-square:last-of-type {
    border-right: 1px solid rgb(255, 255, 255, .2);
}

a.social-square:hover {
    color: #000;
    background-color: #fff;
}

.navbar-logo {
    text-align: center;
    width: 33%;
    position: relative;
    z-index: 997;
}

.navbar-logo img {
    width: 240px;
    margin: 0 auto;
}

.navbar-menu {
    position: fixed;
    top: -100%;
    height: 100vh;
    left: 0;
    right: 0;
    transition: .6s ease-in-out;
    display: flex;
    align-items: center;
}

.navbar-menu.show {
    top: 0;
    background-color: var(--color-bg);
    color: #fff;
}

.navbar-menu-toggler {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 33%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-block: 2rem;
    position: relative;
    z-index: 999;
}

/* Bars */
.navbar-menu-toggler span {
    width: 65px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s ease;
}

/* Hover (optional, keep your effect) */
.navbar-menu-toggler:hover span {
    width: 100px;
}

/* 🔥 ACTIVE STATE (CROSS) */
.navbar-menu-toggler.active span:first-child {
    transform: translateY(6px) rotate(45deg);
    width: 80px;
}

.navbar-menu-toggler.active span:last-child {
    transform: translateY(-6px) rotate(-45deg);
    width: 80px;
}

.navbar-menu .faded-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 8%;
    pointer-events: none;
}

.navbar-main-menu {
    padding: 4rem 10rem;
}

.navbar-main-menu li {
    font-size: 34px;
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #dadada;
    font-family: var(--font-secondary);
}

.legal-menu {
    position: absolute;
    right: 80px;
    bottom: 50px;
    display: flex;
    align-items: center;
}

.legal-menu li {
    position: relative;
    padding: 0 28px;
    font-size: 14px;
}

/* remove padding from edges */
.legal-menu li:first-child {
    padding-left: 0;
}

.legal-menu li:last-child {
    padding-right: 0;
}

/* 🔥 DIAGONAL LINE */
.legal-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(-70deg);
    transform-origin: center;
}

/*FOOTER*/
footer {
    background-color: var(--color-bg);
    color: #fff;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 1px;
    background-color: #767676;
    height: 60px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 250px;
    margin: 0 auto;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 1.65rem;
}

.footer-faded-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    opacity: 8%;
    pointer-events: none;
}

.footer-bottom {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 140px;
    height: 1px;
    background-color: #767676;
    transform: translate(-50%);
}

.footer-bottom ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-bottom a {
    color: #aaa;
}

/*HERO*/

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    padding: 2.2rem 4rem;

    color: #fff;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    transition: all 0.35s ease;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hero-btn i {
    transition: transform 0.35s ease;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn:hover i {
    transform: translateX(6px);
}

.hero-meta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
}

.hero-slogan {
    text-align: center;
    margin-bottom: 20px;
}

.hero-subtitle {
    text-align: center;
    width: 50%;
    font-size: 20px;
    margin: 0 auto;
}

.hero .hero-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;

    display: flex;
}

.hero .hero-prev,
.hero .hero-next {
    position: static;
    margin: 0;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 40px;

    transition: all 0.35s ease;
}

.hero .hero-prev::after,
.hero .hero-next::after {
    font-size: 24px;
    font-weight: 400;
    pointer-events: none;
}

.hero .hero-prev:hover,
.hero .hero-next:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.hero .hero-prev::after,
.hero .hero-next::after {
    content: none;
}

.hero .hero-prev::before,
.hero .hero-next::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 100; /* THIN */
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero .hero-prev::before {
    content: "\f053"; /* chevron-left */
}

.hero .hero-next::before {
    content: "\f054"; /* chevron-right */
}

.hero .hero-controls svg {
    display: none;
}

/*PAGE BANNER*/
.page-banner {
    position: relative;
    height: 60vh;
    min-height: 420px;
    width: 100%;
    overflow: hidden;
    color: #fff;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-banner-image,
.page-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.page-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.25)
    );
}


.page-banner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.page-banner-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}


.page-banner-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);

    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.page-banner-breadcrumb a:hover {
    opacity: 0.7;
}


/*HOMEPAGE*/
.intro-grid .grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.intro-grid .grid-item {
    width: 50%;
    padding: .35rem;
    background-color: #000;
}

.intro-grid .grid-item:last-of-type {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.intro-text {
    padding: 0 2.5rem;
}

.intro-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.intro-text h1 {
    font-size: 34px;
    margin-bottom: 1.25rem;
}


.home-projects .project-item {
    padding: 1rem;
    overflow: hidden;
}

.home-projects .project-cover {
    overflow: hidden;
}

.home-projects .project-item .curtain {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: .8s ease-in-out;
    z-index: 2;
}

.home-projects .curtain.curtain-top {
    top: 0;
}

.home-projects .curtain.curtain-bottom {
    bottom: 0;
}


.home-projects .project-item:hover span.curtain {
    height: 20%;
}

.home-projects .project-meta {
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    flex-direction: column;
    opacity: 0;
    transition: .6s ease-in-out;
}

.home-projects .project-item:hover .project-meta {
    opacity: .8;
}

.home-projects .project-meta h2 {
    font-size: 28px;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.home-projects .project-meta h4 {
    font-size: 16px;
    font-family: var(--font-primary), sans-serif;
    letter-spacing: 1px;
}

/*PROJECT LIST*/
.project-carousel-section {
    padding: 6rem 0;
    overflow: hidden;
}

.project-swiper {
    width: 100%;
    /*padding-left: 5vw;*/
}

/* SLIDE */
.project-slide {
    width: 420px; /* IMPORTANT */
}

.project-slide-inner {
    position: relative;
    display: block;
    height: 520px;
    overflow: hidden;
    background: #000;
}

.project-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-slide-inner:hover .project-slide-image {
    transform: scale(1.05);
}

/* OVERLAY */
.project-slide-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0)
    );

    color: #fff;
}

.project-slide-category {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.project-slide-title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
}

/* NAVIGATION */
.project-carousel-section {
    position: relative;
    padding-bottom: 5rem; /* space for nav */
}

.project-swiper-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    align-items: center;
    z-index: 10;
    background-color: #000;
    padding: 1.5rem 2rem;
}

.project-nav-btn {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;

    color: rgba(255, 255, 255, 0.75);
    font-size: 1.4rem;

    cursor: pointer;

    transition: color 0.25s ease,
    transform 0.25s ease;
}

.project-swiper-nav .divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #404040;
}


.project-nav-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.project-nav-btn:active {
    transform: translateY(0);
}

.project-swiper .swiper-button-prev,
.project-swiper .swiper-button-next {
    display: none;
}

.swiper-slide {
    filter: grayscale(40%);
    transition: filter 0.4s ease;
}

.swiper-slide-active {
    filter: grayscale(0%);
}

.swiper-slide {
    filter: grayscale(40%);
    transition: filter 0.4s ease;
}

.swiper-slide-active {
    filter: grayscale(0%);
}

.project-slide-category {
    writing-mode: vertical-rl;
    position: absolute;
    left: 1rem;
    top: 12rem;
}


/*PROJECT DETAIL*/
.page-banner {
    height: 100vh;
}

.project-body ul, .project-body p {
    margin-bottom: 1rem;
}

.project-body ul {
    padding-left: 2.25rem;
}

.project-body ul li {
    list-style: disc;
}

.project-info-bar {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.project-info-item {
    position: relative;
    padding: 16px 28px;
    text-align: center;
    color: #fff;
    font-family: inherit;
}

/* Brackets */
.project-info-item::before,
.project-info-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
}

.project-info-item::before {
    left: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.project-info-item::after {
    right: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.project-info-item .label {
    display: block;
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}

.project-info-item .value {
    font-size: 22px;
    font-weight: 500;
}

.filter-btn {
    appearance: none;
    background: transparent;
    color: #b2b2b2;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}


.filter-btn:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.4);
}


.filter-btn.active {
    background: #2e2e2e;
    color: #ffffff;
    border-color: #0f172a;
}

.filter-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.25);
}


.gallery .gallery-item {
    overflow: hidden;
    /*padding: .65rem;*/
    margin-bottom: 10px;
}

.gallery .gallery-item img {
    border-radius: .75rem;
    transition: .5s ease-in-out;
}

.gallery-item:hover img {
    filter: brightness(.7);
}


.filter-button-group {
    display: flex;
    gap: .75rem;
    margin-bottom: 30px;
    margin-top: 10px;
    justify-content: center;
}

.araz-title {
    margin: 30px 0;
    font-size: 28px;
    text-align: center;
}

.project-body {
    margin-bottom: 50px;
}

.project-listview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 70px;
    position: relative;
}

.project-listview:last-of-type::before {
    display: none;
}

.project-listview::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    width: 70%;
    background-color: #2d2d2d;
}

.project-listview .project-cover {
    width: 25%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.project-listview .project-name {
    font-size: 22px;
    font-weight: 600;
    width: 15%;
}

.project-listview p {
    width: 30%;
}

.project-listview a.detail-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #6c6c6c;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: .5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.project-listview a.detail-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    transition: .6s ease-in-out;
}

.project-listview a.detail-btn:hover::before {
    left: 0;
}

.project-listview a.detail-btn span {
    position: relative;
    z-index: 2;
    transition: .4s ease-in-out;
}

.project-listview a.detail-btn:hover span {
    color: #000;
}

.project-listview .project-cover img {
    transition: .4s ease-in-out;
}

.project-listview .project-cover:hover img {
    filter: brightness(.67);
}

.videos iframe {
    margin-bottom: 30px;
    width: 70%;
    height: 550px;
}

.videos iframe:last-of-type {
    margin-bottom: 0;
}

.videos {
    padding: 2.5rem 0;
}

.gallery .gallery-item {
    width: 24%;
}

/*CONTACT*/
.contact-page-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

#contact-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-page-banner-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
}

.contact-page-banner-overlay h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
}

/* CONTACT INFO */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    display: block;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #fff;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-card a:hover {
    opacity: 0.7;
}

/* MAP BUTTONS */

.map-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.map-btn {
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-btn:hover {
    background: #fff;
    color: #000;
}

.google-btn {
}

.yandex-btn {
}


/* FORM */

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px;
    border-radius: 24px;
}

.contact-form .form-row {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
}

.contact-btn {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    background: #fff;
    color: #000;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}


/*ABOUT US*/
.about-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.about-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-overlay h1 {
    font-size: clamp(40px, 10vw, 120px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 10px;

    color: transparent;
    -webkit-text-stroke: 1px #bdbdbd;
    font-family: var(--font-primary), sans-serif;
    text-align: center;
}


.hero-subtitle {
    margin-top: 25px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.about-manifesto {
    padding: 140px 0;
    background: #000;
}

.about-manifesto p {
    font-size: clamp(28px, 3vw, 32px);
    line-height: 1.3;
    color: #fff;
}

.about-stats {
    padding: 160px 0;
    background: #111;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat h2 {
    font-size: clamp(40px, 4vw, 80px);
    color: #fff;
    margin-bottom: 10px;
}

.stat span {
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.about-split {
    padding: 140px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.split-image {
    position: relative;
    height: 600px;
    background: url('/static/img/about.jpg') center/cover no-repeat;
    overflow: hidden;
}

.image-mask {
    position: absolute;
    inset: 0;
    background: #000;
}

.split-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
}

.split-text p {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.about-split p {
    margin-bottom: .75rem;
    font-size: 15px;
    text-align: justify;
}

.reveal-wrapper {
    overflow: hidden;
}

.reveal-text {
    transform: translateY(100%);
}


/*LEGAL*/

.kvkk {
    padding: 200px 0 100px;
}

.kvkk p, .kvkk ul, .kvkk ol {
    margin-bottom: .75rem;
}

.kvkk h1,
.kvkk h2,
.kvkk h3,
.kvkk h4,
.kvkk h5,
.kvkk h6 {
    margin-bottom: 1rem;
}

.kvkk ul, .kvkk ol {
    padding-left: 2.25rem;
}

.kvkk ul li {
    list-style: disc;
}

.kvkk ol {
    list-style: decimal;
}

.kvkk h1 {
    font-size: 38px;
}

.kvkk h2 {
    font-size: 30px;
}

/*COOKIE*/
.cookie-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    z-index: 9999;

    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    border-radius: 18px;
    padding: 22px 30px;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;

    transform: translate(-50%, 30px);
}

.cookie-notice.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.cookie-inner p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-inner a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: 0.3s ease;
}

.cookie-inner a:hover {
    border-color: #fff;
}

.cookie-accept {
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.cookie-accept:hover {
    background: #fff;
    color: #000;
}