body {
    padding-top: 76px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-item img {
    height: 600px;
    object-fit: cover;
}

.card img {
    height: 200px;
    object-fit: cover;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.contact-info {
    padding: 20px;
}

.contact-info i {
    margin-right: 10px;
    color: #0d6efd;
}

.map-container {
    padding: 20px;
}

footer a:hover {
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 400px;
    }
}

/* Hakkımızda resmi için stil ekleme */
#about img {
    transition: transform 0.3s ease;
}

#about img:hover {
    transform: scale(1.02);
} 