* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif !important;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}



.header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75px;
    background-color: #2b0653;
}

.navBarIcon {
    position: absolute;
    left: 75px;
    height: 100%;
    display: flex;
    align-items: center;
}

    .navBarIcon img {
        height: 40px;
        width: auto;
    }

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 15vw;
    height: 100vh;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
}

    .menu.open {
        transform: translateX(0);
    }

    .menu.open {
        left: 0;
    }

    .menu a {
        display: block;
        margin: 20px 0;
        padding-top: 20px;
        text-decoration: none;
        color: #000;
        font-size: 18px;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .menu a:hover {
            color: #d32f2f;
        }

.navBarIcon img {
    cursor: pointer;
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

    .navBarIcon img:hover {
        transform: scale(1.1);
    }

.menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.containerMenu {
    margin-top: 75px;
}

.menu .close-btn:hover {
    color: #d32f2f;
}

.kayraOcalImg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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



.containerBanner {
    width: 100%;
    position: relative;
}

.bannerImg {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}

    .bannerImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: opacity 0.5s ease-in-out;
    }

/* Yön Butonları */
.navBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
    transition: background 0.3s;
}

    .navBtn:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .navBtn.left {
        left: 20px;
    }

    .navBtn.right {
        right: 20px;
    }



.gallery {
    max-width: 1720px;
    padding: 60px 40px;
    margin: 0 auto;
}

    .gallery h1 {
        text-align: center;
        font-size: 2.5rem;
        color: #2b0653;
        margin-bottom: 40px;
        font-weight: bold;
        text-transform: uppercase;
    }

.masonry {
    column-count: 3;
    column-gap: 20px;
}

    .masonry img {
        width: 100%;
        margin-bottom: 20px;
        border-radius: 10px;
        transition: transform 0.4s ease;
        display: block;
        break-inside: avoid;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

/* Tablet boyutlarına göre */
@media (max-width: 768px) {
    .gallery {
        padding: 40px 20px;
    }

        .gallery h1 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

    .masonry {
        column-count: 2;
        column-gap: 16px;
    }
}

/* Mobil boyutları */
@media (max-width: 480px) {
    .gallery {
        padding: 30px 16px;
    }

        .gallery h1 {
            font-size: 1.7rem;
        }

    .masonry {
        column-count: 1;
        column-gap: 0;
    }
}












.footer {
    background-color: #2b0653;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 287px;
}

.footerContent {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footerLogo img {
    height: 50px;
}

.footerLinks ul {
    list-style: none;
    padding: 0;
}

    .footerLinks ul li {
        margin: 10px 0;
    }

        .footerLinks ul li a {
            color: white;
            text-decoration: none;
        }

            .footerLinks ul li a:hover {
                text-decoration: underline;
            }

.footerSocial a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

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



@media (min-width: 769px) {
    .navBarIcon {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .navBarIcon {
        left: 20px;
    }

        .navBarIcon img {
            width: 32px;
        }

    .kayraOcalImg img {
        height: 60px;
    }

    .menu {
        width: 100%;
    }

        .menu a {
            font-size: 16px;
        }

    .containerMenu {
        text-align: center;
    }
}