/* Common Styles - Shared across all project pages */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'n27-regular', sans-serif;
    background-color: #fff;
    color: #fff;
    overflow-x: hidden;
}

/* Base Page Layout */
.page {
    min-height: 100vh;
    background-color: #000;
    padding-top: 120px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*  #region Utilities */
.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.logo-development-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.img-standard {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.img-cover {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

/* #endregion */

/* #region Hero Image Section - Common Structure */

.hero-section {
    width: 100%;
    height: 460px;
    min-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 40px 20px;
}

.hero-container {
    width: 760px;
    height: 410px;
    max-width: unset;
    position: relative;
    display: block;
    overflow: hidden;
}

.hero-image {
    width: 760px;
    height: 410px;
    object-fit: cover;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 900px) {
    .hero-section {
        height: 480px;
        /* 400px + 80px padding */
        padding: 40px 20px;
    }

    .hero-container {
        width: 90vw;
        height: 400px;
    }

    .hero-image {
        width: 90vw;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        /* 320px + 80px padding */
        padding: 40px 16px;
    }

    .hero-container {
        width: 85vw;
        height: 320px;
    }

    .hero-image {
        width: 85vw;
        height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 330px;
        /* 250px + 80px padding */
        padding: 40px 12px;
    }

    .hero-container {
        width: 90vw;
        height: 250px;
    }

    .hero-image {
        width: 90vw;
        height: 250px;
    }
}

/* #endregion */


/* #region Content Section - Common Structure */
.content-section {
    padding: 0 20px 80px;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.main-description {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.highlight-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.highlight-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.final-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.campaign-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 16px;
    }

    .main-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .highlight-description, .highlight-text {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .final-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .content-section {
        padding: 30px 12px;
    }

    .main-description {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .highlight-description, .highlight-text {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .final-description {
        font-size: 12px;
    }
}

/* #endregion */


.flex-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* #region Standardized Section Padding System */
.section-padding-xl {
    padding: 80px 20px;
}

.section-padding-lg {
    padding: 60px 20px;
}

.section-padding-md {
    padding: 40px 20px;
}

.section-padding-sm {
    padding: 20px 20px;
}

.section-padding-xs {
    padding: 10px 20px;
}

/* Responsive Padding */
@media (max-width: 768px) {
    .section-padding-xl {
        padding: 40px 16px;
    }

    .section-padding-lg {
        padding: 30px 16px;
    }

    .section-padding-md {
        padding: 20px 16px;
    }

    .section-padding-sm {
        padding: 15px 16px;
    }

    .section-padding-xs {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .section-padding-xl {
        padding: 30px 12px;
    }

    .section-padding-lg {
        padding: 25px 12px;
    }

    .section-padding-md {
        padding: 20px 12px;
    }

    .section-padding-sm {
        padding: 12px 12px;
    }

    .section-padding-xs {
        padding: 8px 12px;
    }
}

/* #endregion */

/* #region two-image-centered- */
.two-image-centered-section {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.two-image-centered-container {
    max-width: 800px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.two-image-centered-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .two-image-centered-section {
        padding: 30px 16px;
    }

    .two-image-centered-container {
        grid-template-columns: 1fr 1fr;
        column-gap: 4px;
    }
}

@media (max-width: 480px) {
    .two-image-centered-section {
        padding: 20px 12px;
    }

    .two-image-centered-container {
        max-width: 300px;
        gap: 15px;
    }
}

/* #endregion */

/* #region Grid System */
/* 2 Column Grids */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Gap Variations */
.gap-xs {
    gap: 4px;
}

.gap-sm {
    gap: 10px;
}

.gap-md {
    gap: 20px;
}

.gap-lg {
    gap: 40px;
}

.gap-xl {
    gap: 60px;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .grid-2col-responsive {
        grid-template-columns: 1fr;
    }
}

/* Combined Classes */
.grid-2col-gap-xs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.grid-2col-gap-lg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* #endregion */
/* #region Animation Classes - Genel Animasyonlar */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    -webkit-transform: translateY(50px);
    -webkit-transition: all 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    -webkit-transform: translateX(-50px);
    -webkit-transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    -webkit-transform: translateX(50px);
    -webkit-transition: all 0.8s ease;
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
    -webkit-transform: scale(0.9);
    -webkit-transition: all 0.8s ease;
}

.fade-in-up.animate,
.fade-in-left.animate,
.fade-in-right.animate,
.fade-in-scale.animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    -webkit-transform: translateY(0) translateX(0) scale(1);
}

/* GPU acceleration for animations */
.fade-in-up, .fade-in-left, .fade-in-right, .fade-in-scale {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Remove will-change after animation completes */
.fade-in-up.animate,
.fade-in-left.animate,
.fade-in-right.animate,
.fade-in-scale.animate {
    will-change: auto;
}

/* #endregion */


/* Background System */
.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #fff;
}

/* Global Container System */
.container-600 {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.container-800 {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.container-1000 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.container-1200 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Padding Variations */
.container-padded {
    padding: 0 40px;
}

.container-padded-md {
    padding: 0 20px;
}

.container-padded-sm {
    padding: 0 16px;
}

.p-relative {
    position: relative;
}

/* Image System */
.img-full-height {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image lazy loading optimization */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}



.plybtn {
    position: relative;
}

/* Play Button - Common Video Controls */
.play-button {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px !important;
    height: 60px !important;
    max-width: 60px;
    max-height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
    box-sizing: border-box;
}

.play-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image-container:hover .play-button,
.video-item:hover .play-button {
    transform: translate(-50%, -50%);
}

.video-item.playing .play-button {
    opacity: 0;
}

.video-item.playing:hover .play-button {
    opacity: 1;
}

.video-item .play-button {
    transition: background 0.3s ease, opacity 0.2s ease;
}

.video-item .play-button.playing::after {
    content: '❚❚';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
}

.video-item .play-button.playing img,
.video-item .play-button.playing svg {
    opacity: 0;
}

/* Video Components */
.video-item {
    position: relative;
    cursor: default;
    overflow: hidden;
    border-radius: 0 !important;
    width: 100%;
    height: auto;
}

.video-item img.img-cover,
.video-item video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.video-item video {
    display: none;
}

.video-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Logo Development Section - Common White Background */
.logo-development-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.logo-phases {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.phase-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* Common Grid Layouts */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .page {
        padding-top: 100px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        max-width: 50px;
        max-height: 50px;
    }

    .logo-development-section {
        padding: 60px 16px;
    }

    .logo-phases {
        flex-direction: column;
        gap: 20px;
    }

    .phase-item img {
        width: 70%;
    }

    .grid-2x2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .page {
        padding-top: 80px;
    }




    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .logo-development-section {
        padding: 40px 12px;
    }

    .logo-phases {
        gap: 16px;
    }

    .phase-item img {
        width: 80%;
    }

    .grid-2x2 {
        gap: 12px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #fff;
}

/* Common Transitions */
.transition-default {
    transition: all 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}