body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    display: block;
}

.text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 2em;
    font-weight: bold;
    animation: fadeIn 2s;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #e64a19;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Masaüstü görünümde mobil slider gizli */
.mobile-slider {
    display: none;
}

/* Mobil görünümde masaüstü slider gizli */
@media only screen and (max-width: 768px) {
    .desktop-slider {
        display: none;
    }
    .mobile-slider {
        display: block;
    }

    .text-content {
        font-size: 1.5em;
    }

    .contact-button {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}
