/* Genel ayarlar */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #111111;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    font-size: 0.9rem;
    background-color: #ffffff;
    color: #111111;
}

header i {
    margin-right: 5px;
    color: #c40000;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #111111;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c40000;
}

.about-section {
    padding: 3rem 1rem;
    max-width: 960px;
    margin: auto;
}

.about-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: black;
}

.about-highlight {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-box {
    flex: 1 1 250px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.highlight-box i {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    font-size: 0.95rem;
    background-color: #9a0f0f;
    color: #f2f2f2;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Düzenlemeler */
@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    header .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .navbar-brand img {
        height: 40px;
    }

    .features .col-md-4 {
        margin-bottom: 2rem;
    }

    footer .text-md-right {
        text-align: center !important;
        margin-top: 1rem;
    }

    .about-section h1 {
        font-size: 2rem;
    }
}

.page-header {
  background: url('../img/bg.png') center center / cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header .overlay {
  background: rgba(0, 0, 0, 0.5); /* karartma efekti */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1rem;
  margin: 0;
}
