/* Ana CSS Dosyası */

/* Header, Footer ve İkonlar CSS Dosyalarını Import Et */
@import url('header.css');
@import url('footer.css');
@import url('icons.css');

/* Genel Stil Tanımlamaları */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ana İçerik */
.main-content {
    flex: 1;
    padding: 60px 0;
}

/* Sayfa Başlıkları */
.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #1B3540;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #1B3540;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: none;
}

.btn-primary {
    background-color: #1B3540;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0A1F28;
}

.btn-secondary {
    background-color: #D0DEE3;
    color: #1B3540;
}

.btn-secondary:hover {
    background-color: #B8CCD4;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #1B3540;
    color: #1B3540;
}

.btn-outline:hover {
    background-color: #1B3540;
    color: #fff;
}

/* Ana Sayfa Hero Bölümü */
.hero-section {
    text-align: center;
    padding: 80px 0;
    background-color: #f0f5f7;
    border-radius: 10px;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 48px;
    color: #1B3540;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

/* Hizmetler Önizleme */
.services-preview {
    margin-bottom: 60px;
}

.services-preview h2 {
    font-size: 32px;
    color: #1B3540;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #f0f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 30px;
    color: #1B3540;
}

.service-card h3 {
    font-size: 20px;
    color: #1B3540;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.services-more {
    text-align: center;
    margin-top: 40px;
}

/* Hakkımızda Önizleme */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h2 {
    font-size: 32px;
    color: #1B3540;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
    color: #555;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* İletişim Önizleme */
.contact-preview {
    margin-bottom: 60px;
}

.contact-preview h2 {
    font-size: 32px;
    color: #1B3540;
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #f0f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 24px;
    color: #1B3540;
}

.contact-info-card h3 {
    font-size: 18px;
    color: #1B3540;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #1B3540;
}

.contact-more {
    text-align: center;
    margin-top: 40px;
}

/* Hakkımızda Sayfası */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 28px;
    color: #1B3540;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mission, .vision {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission h2, .vision h2 {
    font-size: 24px;
    color: #1B3540;
    margin-bottom: 15px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .about-preview,
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .page-title {
        font-size: 30px;
    }
}
