﻿/* Genel Stil Ayarları */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Görsel için stil */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* Başlık Stili */
h1 {
    font-size: 1.75rem;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

/* Paragraf Stili */
p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Galeri kısmı */
.gallery {
    position: relative;
    margin-top: 40px;
    overflow: hidden; /* Taşmayı engellemek için ekledik */
}

    .gallery .images {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .gallery img {
        width: 300px;
        height: 200px;
        margin-right: 20px;
        object-fit: cover;
    }

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Video Galerisi */
.video-gallery {
    margin-top: 40px;
}

    .video-gallery .videos {
        display: flex;
        gap: 20px;
        overflow-x: auto;
    }

    .video-gallery video {
        width: 300px;
        height: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
/* Video büyüme ve animasyonları için CSS */
.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .video-container video {
        width: 100%;
        transition: transform 0.3s ease;
    }

    .video-container.expanded video {
        transform: scale(1.5); /* Video'yu büyütme */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.5);
        z-index: 10;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
}

    .close-btn:hover {
        background: rgba(0, 0, 0, 0.8);
    }
.contact-section {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid #ddd;
}

    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-section ul {
        list-style: none;
        padding: 0;
        font-size: 16px;
    }

    .contact-section li {
        margin: 10px 0;
    }

    .contact-section a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        .contact-section a:hover {
            color: #007bff;
        }

    .contact-section img {
        width: 20px;
        vertical-align: middle;
        margin-right: 5px;
    }
.kynwhatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px; /* Buton boyutu */
    height: 60px;
    border-radius: 50%; /* İkon yuvarlak kalsın */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); /* Tüm taraflarda eşit gölge */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none; /* Arka planı tamamen kaldır */
    border: none; /* Çerçeve varsa kaldır */
	    box-shadow: none; /* Gölgeyi tamamen kaldırdık */

}

.kynwhatsapp-button img {
    width: 40px; /* İkon boyutu */
    height: 40px;
    object-fit: cover; /* Görüntü boyutlandırma */
}
/* Mobil uyumluluk */
@media (max-width: 768px) {
    .gallery img {
        width: 100%;
        height: auto;
        margin-right: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 0.5rem;
    }
}
.kynwhatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px; /* Buton boyutu */
    height: 60px;
    border-radius: 50%; /* İkon yuvarlak kalsın */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none; /* Arka planı tamamen kaldır */
    border: none; /* Çerçeve varsa kaldır */
	    box-shadow: none; /* Gölgeyi tamamen kaldırdık */

}

.kynwhatsapp-button img {
    width: 40px; /* İkon boyutu */
    height: 40px;
    object-fit: cover; /* Görüntü boyutlandırma */
}
