@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
}
/* Navbar Styles */
.navbar {
    background-color: #2c3e50;
    height: 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-item i {
    color: #ffffff;
}

.nav-item a {
    color: white;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #3498db;
}

/* Button Styles */
.btn-all {
    background-color: #2c3e50;
    color: white;
    transition: all 0.3s ease;
}

.btn-all:hover {
    background-color: #34495e;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Diğer stil tanımlamaları index.blade.php'den buraya taşınabilir */