﻿/* journey.css - FULL PAKET (Hero + Galeri + Süreç) */

/* FONTLAR */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --green: #2E7D32;
    --red: #D32F2F;
    --gray: #f4f4f4;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.nav-journey {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brand-combo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-big {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #000;
}

.brand-small {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: #555;
    font-style: italic;
}
.btn-apply {
    /* Başlangıç rengini doğrudan kırmızı yapıyoruz */
    background: red !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-apply:hover {
        /* Hover durumunda da kırmızıyı koruyoruz */
        background: #D32F2F !important;
        /* Sadece büyüme efekti kalsın istiyorsan bu dursun, istemiyorsan bunu da silebilirsin */
        transform: scale(1.15);
        color: white !important;
    }

/* --- HERO BÖLÜMÜ (DÜZELTİLDİ) --- */
.hero-journey {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Video üstüne hafif siyah perde (Yazı okunsun diye) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: -1;
}

/* Videonun altına beyaz degrade (fade) */
.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--bg) 10%, transparent 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 50px;
}

.hero-tag {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #fff;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-title-big {
    font-size: 7rem; /* KOCAMAN */
    font-weight: 900; /* ÇOK KALIN */
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 40px;
    color: #ffffff; /* BEMBEYAZ */
    text-shadow: 0 10px 40px rgba(0,0,0,0.9); /* ARKASI SİYAH GÖLGELİ (Okunması için) */
}

/* MOBİL AYARLARI */
@media (max-width: 768px) {
    .hero-title-big {
        font-size: 3.5rem;
    }
    /* Mobilde küçült */
    .hero-plane-img {
        width: 100px;
    }

    @keyframes planeLandLeft {
        0% {
            transform: translate(calc(-50% - 200px), calc(-50% - 200px)) scale(0.3) rotate(-15deg);
            opacity: 0;
        }

        100% {
            transform: translate(-50%, calc(-50% - 110px)) scale(1) rotate(0deg);
            opacity: 1;
        }
    }
}



/* --- GALERİ: MOSAIC GRID --- */
.gallery-section {
    padding: 50px 5% 100px 5%;
    background: var(--bg);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.sec-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.sec-sub {
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.mosaic-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .mosaic-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.7s;
    }

    .mosaic-item:hover img {
        transform: scale(1.1);
    }

.span-2 {
    grid-column: span 2;
}

.span-row-2 {
    grid-row: span 2;
}

/* --- YOL HARİTASI (TIMELINE) --- */
.roadmap-section {
    padding: 100px 0;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #ddd;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 2px;
    }

.container-t {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.content-t {
    padding: 40px;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 5px solid transparent;
    transition: 0.3s;
}

    .content-t:hover {
        transform: translateY(-10px);
    }

.left {
    left: 0;
}

.right {
    left: 50%;
}

.container-t::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: white;
    border: 6px solid var(--text);
    top: calc(50% - 12px);
    border-radius: 50%;
    z-index: 1;
    transition: 0.3s;
}

.right::after {
    left: -12px;
}

.step-num {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    right: 20px;
    opacity: 0.1;
    color: black;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.step-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.dev-logo {
    height: 80px !important;
    width: auto !important;
    margin-top: -30px !important;
    margin-bottom: -40px !important;
    position: relative !important;
    z-index: 1050 !important;
    object-fit: contain;
}

/* --- MOBİL AYARLARI --- */
@media (max-width: 768px) {
    .hero-title-flow {
        font-size: 3.5rem;
    }

    .btn-apply {
        padding: 12px 25px !important;
        font-size: 13px !important;
    }

    /* Logo boyutları */
    .brand-big {
        font-size: 16px !important;
    }

    .brand-small {
        font-size: 12px !important;
    }

    /* İŞTE SİTEYİ KURTARAN KOD: Senin o devasa yazının sınıfı neyse (ben h1 diyeyim, sende farklıysa onu yaz)
       Bunu yaz ki mobilde o yazı küçülüp satır atlasın, ekranı yırtmasın! */
    .hero-journey h1,
    h1 {
        font-size: 2.2rem !important;
        white-space: normal !important; /* Alt satıra inmesine izin veriyoruz */
        word-wrap: break-word; /* Gerekirse kelimeyi böl, ama ekranı taşırma */
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .span-2, .span-row-2 {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .timeline::after {
        left: 31px;
    }

    .container-t {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .right {
        left: 0%;
    }

    .container-t::after {
        left: 19px;
    }

    .dev-logo {
        max-height: 60px;
        width: auto;
        object-fit: contain;
    }
}