/* Özvatan Belediyesi - Genel Stil Dosyası */

/* Genel Ayarlar */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    font-size: 16px;
}

/* Ana Wrapper */
.main-wrapper,
.content-wrapper {
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    max-width: 1280px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1280px;
}

/* Başlıklar */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* İçerik Alanı */
.content,
.page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

/* İçerik İçindeki Resimler */
.content img,
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1em 0;
}

/* İçerik İçindeki Tablolar */
.content table,
.page-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

.content table,
.content th,
.content td,
.page-content table,
.page-content th,
.page-content td {
    border: 1px solid #dee2e6;
}

.content th,
.content td,
.page-content th,
.page-content td {
    padding: 8px;
    text-align: left;
}

.content th,
.page-content th {
    background: #f8f9fa;
    font-weight: 600;
}

/* İçerik İçindeki Blockquote */
.content blockquote,
.page-content blockquote {
    border-left: 4px solid #dee2e6;
    margin: 1em 0;
    padding-left: 16px;
    color: #6c757d;
    font-style: italic;
    background: #f9fafb;
    padding: 10px 16px;
    border-radius: 0 4px 4px 0;
}

/* İçerik İçindeki Iframe (YouTube vb.) */
.content iframe,
.page-content iframe {
    max-width: 100%;
    border-radius: 8px;
}

/* Kartlar */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card-title {
    font-weight: 600;
    color: #1a1a1a;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* Liste Öğeleri */
.list-group-item {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.list-group-item:hover {
    background: #f8f9fa;
    border-color: #004a99;
    transform: translateX(5px);
}

/* Sosyal Medya Linkleri */
.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #004a99;
    color: white;
    margin: 0 5px;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #003d7a;
    transform: translateY(-3px);
}

/* Kategori Badge */
.category-badge {
    background: #004a99;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

/* Kategori Badge */
.category-badge {
    background: #004a99;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

/* Form Stilleri */
.form-control {
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: #004a99;
    box-shadow: 0 0 0 0.2rem rgba(0,74,153,0.25);
}

.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: #004a99;
    border: none;
}

.btn-primary:hover {
    background: #003d7a;
}

/* Telefon Rehberi */
.phone-group {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.phone-group h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #004a99;
    margin-bottom: 15px;
}

.phone-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.phone-item:last-child {
    border-bottom: none;
}

.phone-item strong {
    color: #1a1a1a;
}

/* Sayfa Kartları */
.page-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.page-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.page-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.page-card a {
    text-decoration: none;
    color: #1a1a1a;
}

.page-card a:hover {
    color: #004a99;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    body {
        background: white;
    }
    
    .main-wrapper,
    .content-wrapper {
        box-shadow: none;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .content,
    .page-content {
        font-size: 1rem;
    }
}
