/* Ortak CSS - Tüm sayfalar için temel stiller */

/* CSS Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
    overflow-x: hidden;
}

/* Navigasyon Stilleri */
.navigasyon {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.navigasyon-icerik {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
/* --- Fixed WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}
/* Logo Alanı */
.logo-alani {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-ikon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.ana-baslik {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    background: rgb(0, 0, 0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #000;
}

.alt-baslik {
    font-size: 2rem;
    color: #6b7280;
    font-weight: 500;
}

/* Desktop Menü */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link:not(.aktif) {
    color: #374151;
}

.menu-link:not(.aktif):hover {
    background-color: rgba(16, 185, 129, 0.05);
    color: #059669;
    transform: translateY(-2px);
}

.menu-link.aktif {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
}

/* Mobil Menü Butonu */
.mobil-menu-buton {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobil-menu-buton:hover {
    background-color: rgba(16, 185, 129, 0.05);
}

.mobil-menu-buton span {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, #059669, #0d9488);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobil Menü */
.mobil-menu {
    display: none;
    padding: 1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.mobil-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.mobil-menu-link:hover {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: white;
    transform: translateX(8px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobil-menu-buton {
        display: flex;
    }
    
    .mobil-menu.aktif {
        display: block;
    }
    
    .navigasyon-icerik {
        padding: 0 1rem;
    }
    
    .ana-baslik {
        font-size: 0.5rem;
    }
    
    .alt-baslik {
        font-size: 0.75rem;
    }
}

/* Genel Yardımcı Sınıflar */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Scroll Bar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #059669, #0d9488);
}

/* Focus Stilleri - Erişilebilirlik */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Print Stilleri */
@media print {
    .navigasyon,
    .mobil-menu-buton,
    .mobil-menu {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
/* --- Basit Footer Bölümü --- */
.site-footer-mini {
    background: linear-gradient(135deg, #A8DDC6, #C7E8D7); /* Pastel yeşil gradient */
    color: #34495E; /* Koyu gri metin rengi */
    padding: 1.5rem 0; /* Dikey boşluk daha da azaltıldı */
    font-size: 0.85rem; /* Font boyutu biraz büyütüldü, okunabilirlik için */
    text-align: center; /* İçerik ortalandı */
}

.footer-icerik-mini {
    max-width: 1000px; /* Maksimum genişlik biraz daha daraltıldı */
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column; /* İçerik dikey sıralansın */
    align-items: center; /* Dikeyde ortala */
    gap: 0.75rem; /* Elemanlar arası boşluk */
}

.footer-icerik-mini p {
    margin: 0; /* Varsayılan marginleri sıfırla */
    line-height: 1.4;
}

.footer-linkler-mini {
    display: flex;
    gap: 1.25rem; /* Linkler arası boşluk */
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçsin */
    justify-content: center; /* Ortala */
}

.footer-linkler-mini a {
    color: #34495E; /* Link rengi koyu gri */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-linkler-mini a:hover {
    color: #79C2A8; /* Hover'da daha koyu pastel yeşil */
}

/* --- Responsive Ayarlamalar (Basit Footer için) --- */
@media (max-width: 768px) {
    .site-footer-mini {
        padding: 1rem 0; /* Mobilde dikey boşluk daha da azaltıldı */
        font-size: 0.8rem; /* Mobilde font boyutu biraz küçültüldü */
    }

    .footer-icerik-mini {
        gap: 0.5rem; /* Mobilde boşluklar daha az */
    }

    .footer-linkler-mini {
        gap: 0.75rem; /* Mobilde link boşlukları azaltıldı */
    }
}