/* Ana Stiller */
body {
    font-family: 'Inter', sans-serif;
}

/* Navigasyon Linkleri */
.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Görsel Stilleri */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hizmet Görsel Stilleri */
.service-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    object-position: center center;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .service-image {
        height: 10rem;
    }
}

/* Animasyonlar */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Özel Renkler */
.text-primary {
    color: #2563eb;
}

.bg-primary {
    background-color: #2563eb;
}

/* Özel Gölgeler */
.shadow-custom {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Özel Kenar Yuvarlaklıkları */
.rounded-custom {
    border-radius: 0.5rem;
} 