/* Genel Stiller */
body {
    padding-top: 56px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 500px;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 0;
}

/* Carousel Kontrolleri */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-indicators {
    z-index: 15;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-section .btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Kartlar */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* İletişim Formu */
.form-control {
    padding: 0.8rem;
    border-radius: 0.5rem;
}

.contact-info {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.contact-info i {
    color: var(--bs-primary);
    margin-right: 10px;
}

/* Sayfa Başlığı */
.page-header {
    margin-top: 56px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: white;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Hizmetler Sayfası */
.services-detail img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Hakkımızda Sayfası */
.about-content img {
    max-height: 500px;
    object-fit: cover;
}

/* İletişim Sayfası */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-info i {
    color: var(--bs-primary);
    width: 25px;
}

/* Footer Linkleri */
footer a {
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

/* Hızlı İletişim Bölümü */
.contact-image {
    max-height: 400px;
    object-fit: cover;
}

/* Neden Biz İkonları */
.text-center i {
    transition: transform 0.3s;
}

.text-center:hover i {
    transform: scale(1.1);
} 