
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #222;
    overflow-x: hidden;
}

/* HEADER */
header {
    padding: 25px 20px;
    text-align: center;
    background: white;
}

/* LOGO */
.logo {
    height: 160px;
    margin-bottom: 15px;
}

/* NAV */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    position: relative;
}

/* aktif link */
nav a.active {
    color: black;
    font-weight: 500;
}

/* alt çizgi */
nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: black;
}

/* BAŞLIK */
.section-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 32px;
    font-weight: 500;
}

/* ORTAK İÇERİK BLOĞU */
.about {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

/* 🔥 TÜM METİNLER (ANASAYFA + HAKKIMDA AYNI) */
.about p {
    font-size: 22px;
    line-height: 1.7;
    color: #444;
}

/* ANASAYFA SOL HİZALI */
body.home .about {
    text-align: left;
}

/* SERVICES */
.about ul {
    padding-left: 20px;
    text-align: left;
}

.about li {
    font-size: 22px;
    margin-bottom: 10px;
}

/* PROJECT GRID */
.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* PROJECT TEXT */
.project-item {
    text-align: center;
    margin-top: 12px;
    font-size: 18px;
    color: #444;
}

/* IMAGE */
.image-box {
    width: 100%;
    aspect-ratio: 3 / 1.8;
    overflow: hidden;
    border-radius: 15px;
    background: #eee;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.3s;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* HAKKIMDA GÖRSEL */
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* METİN ALTI GÖRSEL */
.content-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
}

/* MOBİL NAV */
@media (max-width: 600px) {
    nav a {
        font-size: 13px;
        margin: 0 6px;
    }
}

/* İLETİŞİM SAYFASI */

.contact {
    max-width: 600px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.contact p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

/* başlık varsa */
.contact h2 {
    font-size: 26px;
    margin-bottom: 25px;
}
/* MOBİLDE FONT SABİTLEME */
html {
    -webkit-text-size-adjust: 100%;
}

/* TÜM SAYFALAR İÇİN AYNI BOYUT */
.about p,
.about li {
    font-size: 22px;
}

/* MOBİL DENGELEME */
@media (max-width: 600px) {

    .about p,
    .about li {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
    }
}

footer p {
    text-align: center;
}
