h1 {
    font-family: 'Coda', sans-serif !important;
}
h2 {
    font-family: 'Montserrat', sans-serif !important;
   
}
.egitim-baslik {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.egitim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto; /* ORTALAR */
    padding: 0 40px; /* sağ-sol boşluk */
}

.egitim-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.egitim-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.egitim-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.egitim-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
}
               .belge-baslik {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

/* Grid */
.belge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Kart Tasarımı */
.belge-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.belge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

/* Resimler */
.belge-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    border-radius: 6px;
}

/* Alt Yazı */
.belge-card p {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}
.ongorusme-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.form-baslik {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #222;
    text-align: center;
}

/* Form kutusu */
.imar-form {
    background: #ffffff;
    padding: 40px 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.09);
}

/* Ara başlık */
.imar-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.form-aciklama {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* Label */
.imar-form label {
    display: block;
    margin: 12px 0 5px;
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

/* Input & Select */
.imar-form input,
.imar-form select,
.imar-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
    font-size: 15px;
    background: #fafafa;
    transition: 0.2s ease-in-out;
}

.imar-form input:focus,
.imar-form select:focus,
.imar-form textarea:focus {
    border-color: #222;
    background: #fff;
}

/* KVKK checkbox */
.kvkk {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    margin-top: 15px;
    color: #333;
}

.kvkk input {
    margin-right: 8px;
    margin-top: 2px;
}

/* Buton */
.imar-form button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: #222;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.imar-form button:hover {
    background: #000;
    transform: translateY(-2px);
}
.footer_copy {
    background-color: #000;
}
.imar-form input[type="checkbox"] {
    accent-color: orange; /* turuncu tik rengi */
}
.yazi-bolumu {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

.yazi-bolumu h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.yazi-bolumu p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}
.galeri-alani {
    display: flex;
    gap: 30px;
}

.galeri-resim {
    width: 100%;
    max-width: 350px;
    cursor: pointer;
    text-align: center;
}

.galeri-resim img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s ease;
}

.galeri-resim img:hover {
    transform: scale(1.02);
}

.resim-isim {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Modal alan */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background-color: white;
    text-align: center;
    padding-top: 40px;
}

.modal-icerik {
    max-width: 70%;
    max-height: 500px;
    border-radius: 16px;
}

/* Alt küçük resimler */
.alt-resimler {
    margin-top: 30px;
}

.alt-resimler img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    margin: 0 10px;
    border: 3px solid #d8b04d;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.alt-resimler img:hover {
    transform: scale(1.05);
}

/* Kapat tuşu */
.kapat {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    cursor: pointer;
    color: black;
}
.galeri-alani {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.galeri-resim {
    width: 320px;
    text-align: center;
    cursor: pointer;
}

.galeri-resim img {
    width: 100%;
    border-radius: 10px;
}

.resim-isim {
    margin-top: 10px;
    font-weight: bold;
}

/* Popup arka plan */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Popup kutu */
.modal-kutu {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

/* Büyük resim */
#buyukResim {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

/* Kapatma tuşu */
.kapat {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Alt küçük resimler */
.alt-resimler {
    margin-top: 15px;
}

.alt-resimler img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    margin: 0 5px;
    border: 4px solid #d8b04d;
    border-radius: 6px;
    cursor: pointer;
}
/* Slider ana alan */
.slider-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto;
    overflow: hidden;
    position: relative;
}

/* Kaydırılacak alan */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
}

/* Her bir slide */
.slide-item {
    flex: 0 0 calc(33.333% - 13.33px); /* 3 slide görünür */
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* Resimler */
.slide-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Başlık */
.slide-item h4 {
    margin: 10px 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* Hover efektleri */
.slide-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.slide-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

/* Hover ışık efekti */
.slide-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide-item:hover::before {
    opacity: 1;
}

/* Mobil uyum */
/* Mobil uyum: 1 slide gözüksün */
@media (max-width: 768px) {
    .slide-item {
        flex: 0 0 100%; /* Sadece 1 slide görünür */
    }
    .slide-item img {
        height: 180px; /* Mobil resim boyutu */
    }
}
