/* ======================================
   MAIN CSS - GENEL TASARIM (GLOBAL)
   Her sayfada kullanılacak temel stiller
   ====================================== */

/* Genel Renk Değişkenleri */
:root {
    --primary-color: #e60023;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-grey: #f4f4f4;
    --dark-grey: #34495e;
}

/* Genel Stil Ayarları */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: #fcfcfc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-grey);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Genel Container Ayarları */
.container {
    max-width: 1400px;
}

/* Genel Section Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #e60023, #c00020);
    border-radius: 2px;
}

/* ======================================
   RESPONSIVE - GENEL
   ====================================== */

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}
