/* style.css */

/* --- Temel Ayarlar ve Font --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --primary-color: #A0806E;
    --secondary-color: #6a4f41;
    --background-color: #f8f5f2;
    --card-bg: #ffffff;
    --text-color: #333;
    --light-text-color: #555;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    padding: 20px;
}

/* --- Dil Değiştirici --- */
.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.lang-btn {
    font-size: 24px;
    padding: 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.lang-btn.active, .lang-btn:hover {
    opacity: 1;
}

/* --- Logo --- */
.logo-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.logo {
    max-width: 250px;
    height: auto;
}

/* --- Link Kartları --- */
.link-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    flex-grow: 1;
}

.link-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.card-content {
    flex-grow: 1;
}

.card-label {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.card-desc {
    font-size: 0.9em;
    color: var(--light-text-color);
}

/* --- Footer --- */
footer {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.footer-section {
    flex-basis: 50%;
}

.footer-heading {
    font-size: 1em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.footer-section p {
    font-size: 0.9em;
    color: var(--light-text-color);
}

.legal-links {
    margin-top: 15px;
    font-size: 0.85em;
}

.legal-links a {
    color: var(--light-text-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}


/* --- Medya Sorguları (Responsive Tasarım) --- */
@media (max-width: 768px) {
    .language-switcher {
        top: 5px;
        right: 5px;
    }

    .lang-btn {
        font-size: 20px;
    }

    .logo-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .logo {
        max-width: 200px;
    }
    
    body {
        padding: 10px;
    }

    .link-card {
        padding: 15px;
    }

    .card-icon {
        font-size: 24px;
        width: 35px;
    }

    .card-label {
        font-size: 1.1em;
    }

    .card-desc {
        font-size: 0.8em;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}