/* Sayfa Düzeni - Tüm Sayfalar İçin Standart Tasarım */

/* Hero Section - Tüm sayfalar için standart */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 15px 0 15px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
    overflow: hidden;
}


.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.page-hero .lead {
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 0.25rem;
}

.page-hero i.hero-icon {
    font-size: 2.5rem;
    opacity: 0.3;
    margin-bottom: 0.25rem;
}

/* Content Section - Standart beyaz arka plan */
.page-content {
    background-color: #ffffff;
    padding: 50px 0;
}

.page-content-alt {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Card Stilleri */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.content-card h2, .content-card h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
}

/* Section Başlıkları */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

/* Butonlar */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Blog & Liste Kartları */
.blog-card, .list-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover, .list-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body,
.list-card .card-body {
    padding: 1.5rem;
}

/* İkon Kutuları */
.icon-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.icon-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.icon-box i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.icon-box h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.icon-box p {
    color: #718096;
    margin-bottom: 0;
}

/* Accordion (SSS için) */
.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #2d3748;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #667eea;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
}

/* Form Stilleri */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.cta-section h3,
.cta-section p,
.cta-section .lead {
    color: white !important;
}

.cta-section .btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Spacer */
.spacer {
    height: 60px;
}

.spacer-sm {
    height: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-content, .page-content-alt {
        padding: 40px 0;
    }
}

