/* Custom Styles for Yük Borsası */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Hero section background overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%);
}

/* Card hover effects */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Mobile menu toggle (for future use) */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

/* Registration form tab buttons */
.tab-button {
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #3b82f6;
    color: white;
}

.tab-button:not(.active) {
    background-color: white;
    color: #4b5563;
}

.tab-button:not(.active):hover {
    background-color: #f3f4f6;
}

/* Registration form styling */
#register-form input[type="text"],
#register-form input[type="email"],
#register-form input[type="tel"],
#register-form input[type="password"],
#register-form input[type="date"] {
    transition: all 0.2s ease;
}

#register-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

