<!-- DOSYA: style.css -->
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&display=swap'); /* Arapça için font */

/* General Body and Font Styles */
body {
    background-color: #FDFDFD;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.font-serif { font-family: 'EB Garamond', serif; }
.font-sans { font-family: 'Inter', sans-serif; }

/* Main Container */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}
.logo:hover { color: #000; }

nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}
nav a:hover { color: #111827; }
nav a.active {
    color: #111827;
    font-weight: 600;
}

.desktop-nav {
    display: none;
}
.desktop-nav a {
    margin-left: 2rem;
}

.mobile-nav {
    display: flex;
    gap: 1rem;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}
.main-home, .main-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Page Specific Styles */
.felsefe-text {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1.875rem;
    line-height: 1.6;
    max-width: 672px;
    margin: 0;
}
.felsefe-author {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: #4b5563;
    letter-spacing: 0.1em;
}

.page-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

.bio-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.bio-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 2px;
}
.bio-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
}
.bio-text p { margin: 0 0 1.5rem 0; }
.bio-text p:last-child { margin-bottom: 0; }
.font-semibold { font-weight: 600; color: #1f2937; }

.principles-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.principle-item {
    border-left: 2px solid #e5e7eb;
    padding-left: 2rem;
}
.principle-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
}
.principle-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin: 0 0 1rem 0;
}
.principle-item p:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 1.125rem;
    color: #4b5563;
}
.contact-email {
    margin-top: 0.5rem;
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-email:hover { color: #000; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 2.5rem;
}
.social-item svg {
    width: 26px;
    height: 26px;
    fill: #888888;
    transition: fill 0.3s ease, transform 0.3s ease;
}
.social-item:hover svg {
    fill: #1f2937;
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 1.5rem 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
footer .copyright {
    font-size: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.1em;
    margin: 0;
}
.lang-selector {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
}
.lang-selector a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0 0.25rem;
}
.lang-selector a:hover {
    color: #374151;
}
.lang-selector span {
    color: #1f2937;
    font-weight: 700;
    padding: 0 0.25rem;
}

/* Animations */
.fade-in {
    animation: fade-in 0.8s ease-out forwards;
}
@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design (Tablet and Desktop) */
@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .mobile-nav { display: none; }
    .felsefe-text { font-size: 2.25rem; }
    .contact-email { font-size: 1.875rem; }
    .bio-container { flex-direction: row; }
    .bio-image { flex-basis: 33.33%; flex-shrink: 0; }
    .bio-text { flex-basis: 66.66%; }
    .page-title { font-size: 2.5rem; }
    .principle-item h3 { font-size: 2rem; }
}

/* --- RTL (Right-to-Left) Styles for Arabic --- */
html[lang="ar"] body {
    text-align: right;
    font-family: 'Cairo', sans-serif;
}
html[lang="ar"] .logo,
html[lang="ar"] .felsefe-text,
html[lang="ar"] .page-title,
html[lang="ar"] .principle-item h3 {
    font-family: 'EB Garamond', serif;
}
html[lang="ar"] header {
    flex-direction: row-reverse;
}
html[lang="ar"] .desktop-nav a {
    margin-left: 0;
    margin-right: 2rem;
}
html[lang="ar"] .mobile-nav {
    gap: 1.5rem;
}
html[lang="ar"] .principle-item {
    border-left: none;
    border-right: 2px solid #e5e7eb;
    padding-left: 0;
    padding-right: 2rem;
}
html[lang="ar"] .bio-container {
    flex-direction: column;
}
@media (min-width: 768px) {
    html[lang="ar"] .bio-container {
        flex-direction: row-reverse;
    }
}