/* Ana Site Stil Dosyası */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Stilleri */
header {
    background: #333;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
    border-radius: 4px;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.main-content {
    padding: 1rem 0;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Form Stilleri */
form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 5px rgba(51,51,51,0.2);
}

button,
.btn {
    background: #333;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover,
.btn:hover {
    background: #555;
}

/* Mesaj Stilleri */
.message {
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* İletişim Sayfası */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-form h2,
.contact-map h2 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.map-links {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.map-links p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.map-links a {
    color: #007bff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s;
}

.map-links a:hover {
    background: #e9ecef;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.2rem !important;
        overflow-x: visible !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-width: auto !important;
        padding: 0 0.5rem !important;
    }
    
    nav ul li {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    nav {
        overflow-x: visible !important;
        padding: 0 0.5rem !important;
    }
    
    nav a {
        font-size: 0.6rem !important;
        padding: 0.3rem 0.1rem !important;
        text-align: center;
        letter-spacing: 0.05px !important;
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .container {
        padding: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}

