/* Genel Stiller */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}



/* Hero Bölümü */
.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
}

/* Hakkımızda İçerik Bölümü */
.about-content {
    padding: 50px 20px;
    text-align: center;
}

.about-content .container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 28px;
    color: #2563eb;
    /* Royal Blue */
}

.about-content h3 {
    font-size: 22px;
    margin-top: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .about-content .container {
        padding: 20px;
    }

    .about-content .container {
        padding: 20px;
    }
}

/* ========================
   DARK MODE OVERRIDES
======================== */
body.dark-mode {
    background-color: #0f172a;
    color: #f1f5f9;
}

body.dark-mode .about-content .container {
    background-color: #1e293b;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    color: #f1f5f9;
}

body.dark-mode .about-content h2 {
    color: #60a5fa;
    /* Lighter Blue */
}

body.dark-mode .about-content h3 {
    color: #e2e8f0;
}

body.dark-mode .about-content p {
    color: #cbd5e1;
}