body {
    background-image: url('blackwp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;

    overflow-x:hidden ;
}

body {
    font-family: 'Montserrat', sans-serif; 
    color: #fff;
}


h1, h2, h3 {
    font-family: 'Quantico', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 2px;
}


.sidebar-text {
    font-family: 'Share Tech', sans-serif; 
}


.sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    
    left: 20px; 
    
    height: auto; 
    padding: 20px 0; 
    
    width: 70px; 
    
    
    border-radius: 20px; 
    
    background: rgba(15, 15, 15, 0.6); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
    
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    
    display: flex;
    flex-direction: column;
}


.sidebar:hover {
    width: 250px; 
    background: rgba(10, 10, 10, 0.9); 
    border-color: rgba(0, 255, 255, 1); 
    box-shadow: 0 0 25px rgba(185, 28, 28, 0.2); 
}

.logo-box {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative; 
}


.logo-code{
    font-family: 'Quantico', sans-serif;
    font-weight: 700;
    font-size: 1.5rem; 
    color: #ffd700; 
    text-shadow: 0 0 10px rgb(223, 239, 8); 
    
    position: absolute; 
    transition: all 0.4s ease; 
}


.logo-text {
    font-family: 'Quantico', sans-serif;
    font-weight: 700;
    font-size: 1.5rem; 
    color: cyan; 
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6); 
    
    position: absolute; 
    transition: all 0.4s ease; 
}


.logo-code {
    opacity: 1; 
    transform: scale(1);
    letter-spacing: 2px;
}


.logo-text {
    opacity: 0; 
    transform: scale(0.5); 
    letter-spacing: 5px; 
    filter: blur(5px); 
}




.sidebar:hover .logo-code {
    opacity: 0;
    transform: scale(2); 
    filter: blur(5px);
}


.sidebar:hover .logo-text {
    opacity: 1;
    transform: scale(1); 
    filter: blur(0); 
    letter-spacing: 2px; 
}


.nav-links {
    width: 100%;
    margin-top: 0; 
}

.nav-item {
    display: flex;
    align-items: center;
    height: 55px; 
    cursor: pointer;
    color: #f5f5f5;
    transition: 0.3s;
    position: relative;
}


.nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}


.nav-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: #ede905;
    box-shadow: 0 0 8px #ede905;
    border-radius: 0 4px 4px 0;
}


.nav-code {
    min-width: 70px; 
    text-align: center;
    font-family: 'Share Tech', sans-serif;
    font-size: 1rem;
    font-weight: bold;
}

.nav-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sidebar:hover .nav-text {
    opacity: 1;
    transform: translateX(0);
}

.hero-section {
    height: 100vh; 
    display: flex; 
    align-items: flex-end;
    justify-content: flex-start; 
    padding-left: 150px;
    padding-bottom: 100px; 
    position: relative;
}


.hero-content {
    max-width: 800px; 
    z-index: 10; 
}


.hero-subtitle {
    font-family: 'Share Tech', sans-serif; 
    font-size: 1.5rem;
    color: #a0a0a0; 
    margin-bottom: 10px;
    letter-spacing: 2px;
}


.hero-title {
    font-family: 'Quantico', sans-serif; 
    font-size: 5rem; 
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}


.highlight {
    color: cyan; 
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}


.hero-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffd700; 
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}


.cursor {
    animation: blink 1s infinite;
    color: #fff;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 0px;
    max-width: 500px;
}


.text-cyan {
    color: cyan; 
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4); 
}

/* --- YENİ ABOUT DÜZENİ --- */
.about-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 70px;
}

.about-container {
    display: flex;
    width: 85%;
    max-width: 1200px;
    background: rgba(15, 15, 15, 0.8); /* Daha koyu zemin */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.6);
}

/* Sol Taraf (Resim) */
.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2); /* Noir havası */
}

/* Sağ Taraf (İçerik) */
.about-content {
    flex: 2;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Kimlik ve Vizyon arası boşluk */
}

/* KISIM 1: WHO AM I */
.section-title {
    font-family: 'Quantico', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.bio-text {
    font-family: 'Montserrat', sans-serif;
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
    border-left: 3px solid cyan; /* Soluna çizgi çektik */
    padding-left: 15px;
}

/* KISIM 2: VISION (ROADMAP) */
.vision-title {
    font-family: 'Share Tech', sans-serif;
    color: #ffd700; /* Sarı başlık */
    font-size: 1.5rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 10px;
    display: inline-block;
}

/* --- ROADMAP DÜZELTMELERİ --- */

.roadmap {
    position: relative;
    padding-left: 20px;
    margin-top: 5px;
}

/* DİKEY ÇİZGİ (RENKLER GÜNCELLENDİ) */
/* Artık 4 renk var: Cyan -> Yeşil -> Sarı -> Kırmızı */
.roadmap::before {
    content: '';
    position: absolute;
    left: 10px; 
    top: 13px; /* Biraz aşağıdan başlasın */
    height: 90%;
    bottom: 60px; /* Sondaki kırmızı noktada bitsin */
    width: 2px;
    background: linear-gradient(to bottom, 
        cyan 0%, 
        #39ff14 33%, /* Neon Yeşil */
        #ffd700 66%, 
        #b91c1c 100%
    ); 
    z-index: 0;
}

.roadmap-item {
    position: relative;
    margin-bottom: 40px; /* Maddeler arası boşluğu açtık, sıkışmasın */
    padding-left: 35px;
    z-index: 1;
}

/* NOKTALAR (Hizalama Ayarı) */
.roadmap-dot {
    position: absolute;
    left: 0;
    top: 22px; /* DİKKAT: Yazıların tam ortasına gelmesi için bunu ayarladık */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    border: 2px solid cyan;
    box-shadow: 0 0 10px cyan;
    transition: 0.3s;
    z-index: 2;
}

/* YENİ RENK: YEŞİL (Phase 1) */
.roadmap-dot.preparing {
    border-color: #39ff14;
    box-shadow: 0 0 10px #39ff14;
}

/* SARI (Phase 2) */
.roadmap-dot.warning {
    border-color: #ffd700;
    box-shadow: 0 0 10px #ffd700;
}

/* KIRMIZI (Goal) */
.roadmap-dot.danger {
    border-color: #b91c1c;
    box-shadow: 0 0 15px #b91c1c;
}

/* YAZI HİZALAMALARI */
.roadmap-info h4 {
    font-family: 'Quantico', sans-serif;
    color: #fff;
    margin: 5px 0; /* Başlığın altını üstünü açtık */
    font-size: 1.2rem;
}

.roadmap-info .date {
    font-family: 'Share Tech', sans-serif;
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hover Efekti: Üstüne gelince nokta parlasın */
.roadmap-item:hover .roadmap-dot {
    transform: scale(1.3);
    background: #fff; /* İçi dolsun */
}

/* --- TECH STACK BÖLÜMÜ --- */
.skills-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 70px; /* Sidebar payı */
    padding-bottom: 50px;
}

/* ÇERÇEVE (GLASS BOX) */
.tech-card-container {
    width: 85%;
    max-width: 900px;
    background: rgba(15, 15, 15, 0.8); /* Daha koyu zemin */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px); /* Arkayı bulanıklaştır */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0,0,0,0.6);
    
}

.skill-category {
    font-family: 'Share Tech', sans-serif;
    color: #666;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* GRID */
.skill-grid {
    display: grid;
    /* Kartlar sığdıkça yan yana, sığmazsa alta */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 20px;
}

/* KART TASARIMI (APP ICON GİBİ) */
.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanma efekti */
    position: relative;
    cursor: default;
}

/* Hover Efekti */
.skill-card:hover {
    transform: translateY(-10px); /* Yukarı zıpla */
    background: rgba(255, 255, 255, 0.08);
}

.skill-icon {
    font-size: 3rem;
    transition: 0.3s;
}

.skill-name {
    font-family: 'Quantico', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    color: #ccc;
}

/* --- 1. BASE STATES (NORMAL HALLERİ - HEP RENKLİ) --- */

/* Genel Geçiş Ayarı */
.skill-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* HTML5 (Turuncu) */
.skill-card.html .skill-icon { color: #e34f26; }
.skill-card.html:hover { border-color: #e34f26; box-shadow: 0 0 20px rgba(227, 79, 38, 0.4); }
.skill-card.html:hover .skill-icon { transform: scale(1.2); }

/* CSS3 (Mavi) */
.skill-card.css .skill-icon { color: #264de4; }
.skill-card.css:hover { border-color: #264de4; box-shadow: 0 0 20px rgba(38, 77, 228, 0.4); }
.skill-card.css:hover .skill-icon { transform: rotate(15deg) scale(1.1); }

/* JAVASCRIPT (Sarı) */
.skill-card.js .skill-icon { color: #f0db4f; }
.skill-card.js { background: rgba(48, 105, 152, 0.1); border-color: #f0db4f; }
.skill-card.js:hover { border-color: #f0db4f; box-shadow: 0 0 20px rgba(240, 219, 79, 0.4); }
.skill-card.js:hover .skill-icon { transform: translateY(-10px) scale(1.1); }

/* PYTHON (Mavi - Focus) */
.skill-card.python .skill-icon { color: #306998; }
.skill-card.python:hover { box-shadow: 0 0 25px rgba(48, 105, 152, 0.6); }
.skill-card.python:hover .skill-icon { animation: snakeWiggle 0.5s ease-in-out infinite alternate; }

/* VS CODE (Açık Mavi) */
.skill-card.vscode .skill-icon { color: #0078d7; }
.skill-card.vscode:hover { border-color: #0078d7; box-shadow: 0 0 20px rgba(0, 120, 215, 0.4); }
.skill-card.vscode:hover .skill-icon { transform: scale(1.15); }

/* GITHUB (Beyaz) */
.skill-card.github .skill-icon { color: #fff; }
.skill-card.github:hover { border-color: #fff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
.skill-card.github:hover .skill-icon { transform: rotate(360deg); transition: transform 0.6s ease-in-out; }

/* OBSIDIAN (Mor) */
.skill-card.obsidian .skill-icon { color: #a259ff; }
.skill-card.obsidian:hover { border-color: #a259ff; box-shadow: 0 0 25px rgba(162, 89, 255, 0.5); }
.skill-card.obsidian:hover .skill-icon { animation: crystalPulse 1s infinite; }

/* FIGMA (Turuncu -> Yeşil) */
.skill-card.figma .skill-icon { color: #F24E1E; } /* Normalde Turuncu */
.skill-card.figma:hover { border-color: #F24E1E; box-shadow: 0 0 20px rgba(242, 78, 30, 0.4); }
.skill-card.figma:hover .skill-icon { 
    color: #0ACF83; /* Hoverda Yeşil */
    transform: rotate(-15deg) scale(1.15); 
}

/* GEMINI (Gradient) */
.skill-card.gemini .skill-icon {
    background: linear-gradient(45deg, #4285F4, #9B72CB, #D96570);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.skill-card.gemini:hover { 
    border-image: linear-gradient(45deg, #4285F4, #9B72CB, #D96570) 1;
    box-shadow: 0 0 20px rgba(155, 114, 203, 0.3);
    transform: translateY(-5px);
}

/* --- KEYFRAMES (ANİMASYON TANIMLARI) --- */
@keyframes snakeWiggle {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

@keyframes crystalPulse {
    0% { transform: scale(1); text-shadow: 0 0 10px #a259ff; }
    50% { transform: scale(1.15); text-shadow: 0 0 25px #a259ff; }
    100% { transform: scale(1); text-shadow: 0 0 10px #a259ff; }
}


/* --- FOCUS ROZETİ (YENİ EKSTRA) --- */
.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #39ff14; /* Neon Yeşil */
    color: #000;
    font-family: 'Share Tech', sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px #39ff14;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
    70% { box-shadow: 0 0 0 5px rgba(57, 255, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

/* --- PROJECTS VİTRİNİ (YENİ) --- */
#projects {
    padding: 60px 0;
    text-align: center;
}

.project-showcase {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    max-width: 900px; /* Genişliği sınırladık, çok yayılmasın */
    margin: 0 auto;   /* Ortala */
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.showcase-header {
    text-align: center;
    margin-bottom: 20px;
}

.showcase-header h3 {
    color: cyan;
    margin-bottom: 5px;
}

.showcase-header p {
    color: #888;
    font-size: 0.9rem;
}

/* --- CANLI PENCERE (IFRAME) --- */
.app-window {
    width: 100%;
    height: 600px; /* Uygulamanın sığacağı yükseklik */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    background-color: #000; /* İçi yüklenirken siyah kalsın */
}

.live-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- ETİKETLER --- */
.tech-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-tags span {
    background: #111;
    border: 1px solid #333;
    color: #ccc;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .app-window {
        height: 500px; /* Telefonda biraz daha kısa olabilir */
    }
}

/* --- EXPERIENCE (FİNAL DÜZELTME) --- */
#experience {
    /* O lacivert bloğu kaldırdık, şeffaf yaptık */
    background: transparent; 
    padding: 80px 0;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px; /* Genişliği ideal ayarda tuttuk */
    margin: 0 auto;
    padding: 20px;
}

/* Sol Çizgi (SADECE CYAN - Renkli değil) */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 27px;
    width: 2px;
    height: 70%;
    background: rgba(255, 255, 255, 0.2); /* Çok hafif, zarif mavi */
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

/* Noktalar */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 25px;
    width: 16px;
    height: 16px;
    background: #000;
    border: 2px solid rgb(236, 232, 4);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(236, 232, 4, 0.3);
    z-index: 1;
}

/* --- KART TASARIMI (Buzlu Cam & Kaliteli Kenar) --- */
.timeline-content {
    /* Arka planı About kalitesinde ama sade */
    background: rgba(255, 255, 255, 0.03); 
    
    /* Bulanıklık efekti (Arkası hafif flulaşır) */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    
    /* İnce, zarif kenarlık */
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 15px; /* Köşeler yumuşak */
    
    padding: 25px;
    transition: all 0.3s ease;
}

/* Hover Efekti (Sadece hafif parlama) */
.timeline-item:hover .timeline-content {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

/* Yazı Fontları ve Renkler */
.timeline-date {
    display: inline-block;
    color: cyan;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.4rem;
}

.timeline-content h4 {
    margin: 0 0 15px 0;
    color: #888;
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* --- CONTACT SECTION (SADE) --- */
#contact {
    padding: 100px 0;
    text-align: center; /* Her şeyi ortala */
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px; /* Kartlar arası boşluk */
    flex-wrap: wrap; /* Mobilde alt alta geçsin */
    margin-top: 40px;
}

/* --- KART TASARIMI --- */
.contact-card {
    background: rgba(255, 255, 255, 0.03); /* Şeffaf Zemin */
    border: 1px solid rgba(255, 255, 255, 0.1); /* İnce Çizgi */
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 250px;
    text-decoration: none; /* Link çizgisini kaldır */
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- İKON KUTUSU --- */
.icon-box {
    font-size: 2rem;
    color: #ccc;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* --- YAZILAR --- */
.contact-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 5px 0;
    font-family: 'Quantico', sans-serif;
}

.contact-card p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* --- HOVER (ÜZERİNE GELİNCE) --- */
.contact-card:hover {
    transform: translateY(-10px); /* Yukarı zıplasın */
    border-color: cyan; /* Kenarlık mavi olsun */
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.contact-card:hover .icon-box {
    color: cyan; /* İkon parlasın */
    transform: scale(1.1);
}

.contact-card:hover p {
    color: #ccc;
}

/* --- ALTTAKİ KONUM BİLGİSİ --- */
.location-info {
    margin-top: 50px;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.location-info i {
    color: cyan;
    margin-right: 8px;

}

/* --- MOBİL ACİL DURUM PAKETİ (SON VE KESİN ÇÖZÜM) --- */
@media screen and (max-width: 768px) {
    
    /* 1. SAĞA KAYMAYI ENGELLE (Scroll Kilidi) */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. BÜTÜN KUTULARI EKRANA SIĞDIR */
    /* Sayfadaki tüm ana taşıyıcıları yakala */
    section, header, footer, .container, .wrapper, .main, .about-section, .about-container {
        width: 100% !important;
        max-width: 100vw !important; /* Ekranı asla geçme */
        min-width: 0 !important; /* Sabit genişlikleri iptal et */
        margin-left: 0 !important; /* Sağa kaymayı sıfırla */
        margin-right: 0 !important;
        padding-left: 10px !important; /* Kenarlardan hafif boşluk bırak */
        padding-right: 10px !important;
        
        display: flex !important;
        flex-direction: column !important; /* Her şeyi alt alta diz */
        align-items: center !important; /* Her şeyi ortala */
    }

    /* 3. ABOUT ME KISMINI ÖZEL OLARAK DÜZELT */
    .about-image {
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }
    .about-image img {
        width: 200px !important;
        height: auto !important;
    }
    .about-content, .identity-box, .vision-box {
        width: 100% !important;
        text-align: center !important;
    }

    /* 4. RESİMLERİ ZAPT ET */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* --- FİNAL CİLA (PP ve BAŞLIK DÜZELTME) --- */
@media screen and (max-width: 768px) {

    /* 1. EN ÜSTTEKİ KESİLEN YAZIYI KURTAR */
    /* Header, h1 veya en üstteki metin kutusu */
    header, .hero, .main-title, h1 {
        width: 100% !important;
        max-width: 100vw !important; /* Ekranın tamamını asla geçme */
        overflow-wrap: break-word !important; /* Kelime sığmazsa aşağı at, kesme! */
        word-break: break-word !important;
        white-space: normal !important; /* Tek satıra zorlama */
        padding-left: 15px !important; /* Kenardan pay bırak */
        padding-right: 15px !important;
        box-sizing: border-box !important; /* Padding ekleyince şişmeyi önle */
        text-align: center !important; /* Ortala */
    }

    /* 2. ABOUT PP (RESİM) AYARI */
    .about-image {
        display: flex !important;
        justify-content: center !important; /* Kutunun içinde ortala */
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto 20px auto !important; /* Üstten alttan boşluk ver */
    }

    .about-image img {
        width: 180px !important; /* Mobilde ideal boyut (ne çok dev ne çok küçük) */
        height: auto !important; /* Orantıyı bozma */
        max-width: 80% !important;
        display: block !important;
        margin: 0 auto !important; /* Resmi zorla ortala */
    }
}

/* --- İSİM DÜZELTME (LAQRO YAMASI) --- */
@media screen and (max-width: 768px) {
    
    /* İsmim yazan başlıkları hedef al */
    h1, .hero-title, .logo-text, .brand {
        /* 1. Yazıyı Küçült (Ekrana sığması için şart) */
        font-size: 2.2rem !important; /* Eskiden muhtemelen 3-4 rem'di, küçülttük */
        
        /* 2. Kelimeyi Bölmeyi Yasakla */
        word-break: keep-all !important; /* Kelime bitmeden alt satıra geçme */
        overflow-wrap: normal !important; 
        
        /* 3. Satır Aralığını Daralt */
        line-height: 1.2 !important;
        
        /* 4. Kenarlardan boşluk ver ki yapışmasın */
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}






