/* --- Home Page Specific Styles --- */

/* Intro Section - Navbar ile aradaki boşluk burada düzenlendi */
.intro-section { 
    padding: 120px 0 80px; /* Üst boşluk 120px olarak ayarlandı */
    text-align: center; 
    max-width: 900px; 
    margin: auto; 
}

.intro-section h1 { 
    font-size: 48px; 
    margin-bottom: 25px; 
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1px;
}

.intro-section p { 
    font-size: 20px; 
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Divider Line (Optional) */
.intro-section::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 40px auto 0;
    border-radius: 2px;
}

/* Content Groups (News, Updates, etc.) */
.content-group { 
    padding: 60px 0; 
}

.group-header { 
    border-bottom: 2px solid var(--primary-color); 
    margin-bottom: 40px; 
    display: inline-block; 
}

.group-header h2 { 
    font-size: 26px; 
    padding-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* 3-Column Grid Layout */
.grid-layout { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-bottom: 40px; 
}

/* Card Design */
.card { 
    background: #fff;
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: var(--transition); 
}

.card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}

.card-img { 
    height: 220px; 
    background-size: cover; 
    background-position: center;
    background-color: #f4f4f4; /* Görsel yüklenmezse gri alan */
}

.card-body { 
    padding: 25px; 
}

.card-body h3 { 
    font-size: 19px; 
    margin-bottom: 12px; 
    color: var(--text-dark);
    font-weight: 700;
}

.card-body p { 
    font-size: 15px; 
    color: var(--text-muted); 
    line-height: 1.6; 
}

/* "View All" Button Style */
.view-all-wrapper { 
    text-align: center; 
    margin-top: 20px;
}

.btn-view-all { 
    display: inline-block;
    padding: 12px 35px; 
    color: var(--primary-color); 
    text-decoration: none; 
    border: 2px solid var(--primary-color); 
    border-radius: 6px; 
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-view-all:hover { 
    background: var(--primary-color); 
    color: #fff; 
}

/* Responsive Fixes */
@media (max-width: 992px) { 
    .grid-layout { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .intro-section {
        padding-top: 100px;
    }
    .intro-section h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) { 
    .grid-layout { 
        grid-template-columns: 1fr; 
    }
}

/* Content Layout */
.overview-simple-content {
    max-width: 1000px;
    margin: 0 auto 100px;
}

.info-row {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    flex: 0 0 250px; /* Soldaki başlık genişliği */
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.info-value, .summary-text {
    flex: 1;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.info-value p {
    margin-bottom: 8px;
}

.summary-text p {
    margin-bottom: 25px;
}

.summary-text p:last-child {
    margin-bottom: 0;
}

.info-row strong {
    color: #000;
    font-weight: 700;
}

/* Responsive Fixes */
@media (max-width: 1100px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 15px;
        padding: 30px 0;
    }
    
    .info-label {
        flex: none;
    }

    .page-header h1 {
        font-size: 26px;
    }
}