﻿
body {
    font-family: 'Inter',sans-serif;
    background: #0b0b0b;
    color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat',sans-serif;
}

.section-padding {
    padding: 120px 0
}

.text-red {
    color: #c1121f
}

.btn-red {
    background: #c1121f;
    color: #fff;
    padding: 14px 40px;
    border-radius: 0;
    letter-spacing: 1px;
}

    .btn-red:hover {
        background: #9b111e;
        color: #fff
    }

/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
    padding: 25px 0;
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: 2px
}

.nav-link {
    color: #fff !important;
    margin-left: 25px;
}

    .nav-link:hover {
        color: #c1121f !important
    }

/* ---------- HERO ---------- */
.hero {
    height: 40vh;
    background: url('https://placehold.co/1200x500/fff/c1121f?text=Hakkımızda+Hero') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
    }

    .hero h1 {
        position: relative;
        z-index: 2;
        font-size: 3rem;
    }

    .hero span.text-red {
        color: #c1121f;
    }

/* ---------- ABOUT SECTION ---------- */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('https://placehold.co/600x400/fff/000000?text=Hakkımızda+Görsel') center/cover no-repeat;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

    .about-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    }

.about-text {
    flex: 1;
    min-width: 300px;
}

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .about-text p {
        opacity: 0.9;
        line-height: 1.7;
        margin-bottom: 20px;
    }

/* ---------- MISSION & VISION ---------- */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.mv-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(145deg, #111, #0b0b0b);
    padding: 40px;
    border-bottom: 5px solid #c1121f;
    transition: all 0.3s;
    border-radius: 8px;
}

    .mv-card:hover {
        transform: translateY(-10px);
        border-left-color: #9b111e;
    }

    .mv-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .mv-card p {
        opacity: 0.8;
    }

/* ---------- TEAM ---------- */
.why-us-section h2 {
    font-size: 2.5rem;
}

.why-card {
    background: linear-gradient(145deg, #111, #0b0b0b);
    padding: 30px;
    border-left: 5px solid #c1121f;
    border-radius: 8px;
    transition: all 0.3s;
    height: 100%;
}

    .why-card span {
        font-size: 3rem;
        font-weight: 900;
        color: rgba(193,18,31,0.2);
    }

    .why-card h5 {
        font-weight: 700;
        margin: 15px 0 10px;
    }

    .why-card p {
        opacity: 0.85;
    }

    .why-card:hover {
        transform: translateY(-10px);
        border-left-color: #9b111e;
    }

/* ---------- FOOTER ---------- */
footer {
    background: #000;
    padding: 50px 0;
    opacity: .8;
}

@media(max-width:768px) {
    .about-section, .mission-vision {
        flex-direction: column;
    }
}

.section-divider {
    height: 2px;
    width: 80px;
    background: #c1121f; /* kırmızı */
    margin: 10px auto 60px auto;
    border-radius: 1px;
}


