/* Genel Stil */
body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    background-color: #0f172a;
}

/* Tipografi & Logo */
.logo-text {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    letter-spacing: 0.025em;
}

/* Navigasyon Linkleri */
.nav-link {
    color: rgb(226, 232, 240);
    font-weight: 800;
    font-style: normal;
    font-size: 16px;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #3b82f6;
}

/* Scroll / KaydÄ±rma AnimasyonlarÄ± */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Kart Efektleri */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Cam (Blur) Efekti */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Hero Bölümü Stilleri */
.hero-section {
    min-height: calc(100 * min(var(--vh, 1vh), 1vh));
    margin-top: -120px;
}

.hero-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px; /* Mobilde daha uyumlu başlık boyutu */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px; /* Masaüstü ekranlar için */
    }
}

.hero-description {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
}

.hero-btn {
    background-color: #3b82f6;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 0.875rem 2rem; /* 14px - 32px padding */
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    background-color: #2563eb;
}
/* Projeler Bölümü Stilleri */
.projects-eyebrow {
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
}

.section-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 24px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

.section-description {
    color: #64748b;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

/* Kart Stilleri */
.project-card {
    background-color: #0f172a;
}

.project-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.project-card-desc {
    color: #dbeafe;
    font-weight: 400;
    font-size: 14px;
}

/* Animasyon Gecikmeleri (Transition Delays) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Global Reach & Buton Stilleri */
.primary-btn {
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 0.75rem 1.75rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
    background-color: #1d4ed8;
}

.map-panel {
    background-color: #f8fafc;
}
/* Hakkımızda Bölümü Stilleri */
.about-eyebrow {
    color: #3b82f6;
    font-weight: 700;
    font-size: 16px;
}

.about-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
}

@media (min-width: 768px) {
    .about-heading {
        font-size: 42px;
    }
}

.about-intro {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 17px;
}

/* Neden Biz? Bölümü Stilleri */
.whyus-eyebrow {
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
}

.whyus-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 24px;
}

@media (min-width: 768px) {
    .whyus-title {
        font-size: 32px;
    }
}

.whyus-desc {
    color: #64748b;
    font-weight: 400;
    font-size: 16px;
}

/* Kartlar ve İkonlar */
.feature-card {
    background-color: #ffffff;
}

.feature-card-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
}

.feature-card-desc {
    color: #64748b;
    font-weight: 400;
    font-size: 16px;
}

.icon-white {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

/* Animasyon Gecikmeleri (Transition Delays) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }