/* assets/css/style.css */
:root {
    --mis-blue: #0d6efd;
    --mis-red: #dc3545;
}

body { font-family: 'Roboto', sans-serif; background-color: #f8f9fa; }
h1, h2, h3, h4, h5, .navbar-brand { font-family: 'Montserrat', sans-serif; }

/* Kart Efektleri */
.hover-shadow { transition: transform 0.3s, box-shadow 0.3s; }
.hover-shadow:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; }

/* Galeri */
.gallery-item { cursor: pointer; overflow: hidden; border-radius: 10px; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* Sayfa Başlıkları */
.page-header {
    /* Resim yoksa düz renk göster */
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(33, 37, 41, 0.8));
    padding: 80px 0;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50%;
    text-align: center; font-size: 30px; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2); transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; background-color: #1ebc57; }