/* 
 * Senga Denetim - Ana CSS Dosyası
 * Sürüm: 1.0
 * Tarih: 2025
 */

/* ===== Genel Stil ===== */
:root {
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --black-color: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

/* ===== Navbar ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* ===== Hero/Slider ===== */
#heroCarousel .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#heroCarousel .carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
}

#heroCarousel .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#heroCarousel .carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

/* ===== Page Header ===== */
.page-header {
    padding: 120px 0 80px;
    margin-bottom: 0;
    background-color: var(--primary-color);
    position: relative;
    margin-top: -2rem;
}

.page-header h1 {
    font-weight: 700;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
}

.service-card {
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* ===== Why Us Section ===== */
.why-us-card {
    padding: 25px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--white-color);
}

.contact-info .icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 50%;
}

.contact-form {
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* ===== About Page ===== */
.vision-mission .card {
    transition: all 0.3s ease;
}

.vision-mission .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: #e9ecef;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

/* ===== Team Page ===== */
.team-card {
    transition: all 0.3s ease;
    border-radius: 5px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img img {
    height: 300px;
    object-fit: cover;
}

.team-info {
    background-color: var(--white-color);
}

.social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

/* ===== Contact Page ===== */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 450px;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-color);
}

.footer h5 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    /* Hero Section */
    #heroCarousel .carousel-item {
        height: 500px;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 2.5rem;
    }

    /* Timeline */
    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 60px;
    }
}

@media (max-width: 767px) {

    /* Hero Section */
    #heroCarousel .carousel-item {
        height: 400px;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 2rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {

    /* Hero Section */
    #heroCarousel .carousel-item {
        height: 350px;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 1.75rem;
    }
}