:root {
    --siyah-primary: #28282B;
    --siyah-dark: #000; /* 1a1a1a */
    --gold-color: #D4AF37;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navigasyon */
.brand-text {
    color: #FFF;
    letter-spacing: 1px;
}

.bg-header {
	background-color: var(--siyah-primary);
}

.nav-link {
    color: #fff !important;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-color) !important;
}

.btn-gold {
	background-color: var(--gold-color);
	color: var(--siyah-dark);
}

.btn-gold:hover {
	background-color: #ffcc00;
	color: var(--siyah-dark);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(39, 39, 39, 0.7), rgba(0, 0, 0, 0.8)), 
                url('../img/cover.jpg') center/cover no-repeat;
    padding-top: 100px;
}

.text-gold {
    color: var(--gold-color);
}

/* Başlık Çizgisi */
.section-title {
    color: var(--siyah-primary);
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gold-color);
    margin: 10px auto;
}

/* Kart Tasarımı */
.machine-card {
    transition: 0.4s;
    border-bottom: 4px solid transparent !important;
}

.machine-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--siyah-primary) !important;
}

.machine-card::before {
    content: "";
    display: block;
    /* height: 200px; */
    background: #eee; /* Buraya makinelerin resimleri gelecek */
}

.machine-img {
    height: 220px; /* Tüm resimlerin boyunu eşitler */
    object-fit: cover; /* Resmin en-boy oranını bozmadan alanı doldurur */
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
}

.machine-card {
    overflow: hidden; /* Resim taşmalarını engeller */
    transition: transform 0.3s ease;
}


/* Footer Tasarımı */
.footer {
    background-color: #1a1a1a;
    border-top: 5px solid var(--siyah-primary);
}

.footer h4, .footer h5 {
    color: var(--gold-color);
}

.footer a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--siyah-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--gold-color);
    color: black;
    padding-left: 0;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}



/* Hizmetler sayfası için */

/* Sayfa Başlığı Arka Planı */
.page-header {
    height: 350px;
    background: linear-gradient(rgba(39, 39, 39, 0.7), rgba(0, 0, 0, 0.8)), 
                url('../img/cover.jpg') center/cover;
    margin-top: 80px; /* Header yüksekliği kadar boşluk */
}

/* Arka Plan Renk Sınıfı */
.bg-mor {
    background-color: var(--siyah-primary) !important;
}

/* Liste İkon Renkleri */
.text-accent {
    color: var(--gold-color) !important;
}

/* Resim gölgeleri ve yumuşatma */
.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Sayfa geçişlerinde aktif linkin altını çizmek için opsiyonel */
.nav-link.active {
    border-bottom: 2px solid var(--gold-color);
}

/* Mobil uyum iyileştirmesi */
@media (max-width: 991.98px) {
    .page-header {
        height: 250px;
    }
}



/* Hakkımızda Sayfası Özel Stilleri */

.border-mor {
    border-color: var(--siyah-primary) !important;
}

/* Deneyim Rozeti (Resmin üzerindeki sarı kutu) */
.experience-badge {
    bottom: -20px;
    right: -20px;
    min-width: 140px;
    text-align: center;
    z-index: 2;
}

.about-img-stack {
    padding: 20px;
}

/* İkonların Hover Etkisi */
.bg-white.rounded.shadow-sm:hover i {
    transform: scale(1.1) rotate(5deg);
    transition: 0.3s;
}

/* Sayfa geçiş animasyonu (Opsiyonel) */
body {
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 991px) {
    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        display: inline-block;
    }
}




/* Proje Kartı Stilleri */
.project-card {
    height: 350px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(39, 39, 39, 0.95)); /* Logodaki mor geçiş */
    opacity: 0.9;
    transition: 0.4s ease;
}
/*linear-gradient(rgba(39, 39, 39, 0.7), rgba(0, 0, 0, 0.8))*/
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    background: linear-gradient(transparent, rgba(200, 200, 200, 1)); /* Daha koyu mor */
}

/* Badge (Etiket) Renkleri */
.bg-accent {
    background-color: var(--gold-color) !important;
}

/* Sayfa başlığı için otoyol görseli filtresi */
.page-header {
    background-attachment: fixed; /* Parallax efekti */
}



/* İletişim Sayfası İkon Kutusu */
.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--siyah-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control:focus, .form-select:focus {
    border-color: var(--siyah-primary);
    box-shadow: 0 0 0 0.25rem rgba(82, 0, 130, 0.25);
}

.map-section {
    line-height: 0;
    filter: grayscale(0.5); /* Kurumsal hava için hafif gri tonlu harita */
}

.map-section:hover {
    filter: grayscale(0);
    transition: 0.5s;
}

/* Footer Zenginleştirme (Daha estetik görünüm için ek) */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}