﻿/* Temel HTML ve body ayarları */
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding-top: 50px; /* Menü yüksekliğine göre */
    background: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Linkler */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

    a:hover {
        color: #007bff;
    }

/* Genel container */
.container {
    
   
    
}

/* Logo */
.logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Footer */
footer.footer {
    padding: 20px 0;
    background: #fff;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}
