﻿/* Genel ayarlar */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .navbar .container {
        max-width: 1200px;
        margin: auto;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 26px;
        font-weight: bold;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: 1px;
    }

        .navbar .logo img {
            width: 70px;
            height: auto;
            object-fit: contain;
        }

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

    .nav-links li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #00adb5;
            transition: 0.3s;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .nav-links li a:hover {
            color: #00adb5;
        }

/* Marka logoları */
.brand-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 10px;
}

.brand-item {
    width: calc(100% / 5 - 20px);
    background: white;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    text-align: center;
    height: 140px;
}

    .brand-item:nth-child(n+13) {
        width: calc(100% / 3 - 20px);
    }

    .brand-item img {
        max-width: 100%;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
        display:block;
    }

.brand-name {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #1a1a2e;
}

/* Tanıtım yazısı */
.content {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    font-size: 18px;
    padding: 0 20px;
}

/* Galeri */
.gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
}

    .gallery img {
        width: 300px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

/* WhatsApp ve Facebook butonları */
.whatsapp-full-button {
    width: fit-content;
    margin: 20px auto;
    text-align: center;
}

    .whatsapp-full-button a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #3f5f66;
        color: white;
        padding: 12px 20px;
        border-radius: 6px;
        font-weight: bold;
        font-size: 16px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

        .whatsapp-full-button a:hover {
            background-color: #2e4b52;
        }

    .whatsapp-full-button img {
        width: 24px;
        height: 24px;
    }

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

    .footer a {
        color: #00adb5;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .brand-container {
        gap: 15px;
    }

    .brand-item {
        width: calc(50% - 15px);
        height: auto;
    }

        .brand-item:nth-child(n+13) {
            width: calc(50% - 15px);
        }

        .brand-item img {
            height: 60px;
        }

    .brand-name {
        font-size: 11px;
    }

    .gallery img {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .brand-item {
        width: 100%;
    }

        .brand-item img {
            height: 50px;
        }

    .brand-name {
        font-size: 10px;
    }

   

}
.about-section {
    width: 90%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-box {
    width: 45%;
    padding: 20px;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .about-box h3 {
        margin-top: 0;
        font-size: 20px;
        color: #1a1a2e;
    }

    .about-box p {
        font-size: 16px;
        color: #333;
        line-height: 1.5;
    }

    .about-box.left {
        align-self: flex-start;
    }

    .about-box.right {
        align-self: flex-end;
    }

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.blink-effect {
    animation: blink 0.5s ease-in-out 4; /* 4 kez yanıp söner */
}












.screen-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 9999;
    overflow: hidden;
}

/* Üst ve alt kapaklar */
.split {
    position: absolute;
    width: 100%;
    height: 50vh;
    background-color: black;
    transition: transform 1.5s ease-in-out;
    z-index: 1;
}

.top-split {
    top: 0;
}

.bottom-split {
    top: 50vh;
}

/* Logoyu ortada göster */
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: opacity 1s ease-in-out;
}

    .logo-container img {
        width: 500px;
        max-width: 100vw;
    }

/* Açılma animasyonu */
.screen-cover.hide .top-split {
    transform: translateY(-100%);
}

.screen-cover.hide .bottom-split {
    transform: translateY(100%);
}

.screen-cover.hide .logo-container {
    opacity: 0;
}