@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{ margin: 0;
    padding: 0;
    box-sizing: border-box;
    }body{ font-family: 'Poppins', sans-serif;}

body{
   
 
    background-color: black; /* Arka plan siyah */
    
    margin: 0;
    padding: 0;
}

  /*------------------- NAVBAR -------------------- */

  .collapse ul li a{
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
}
.container-fluid{
    background-color: #ffffff;
}
.collapse ul li{
    margin: 0 20px;
    position: relative;
    display: inline-block;
    list-style: none;
}

.collapse ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: #000000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.collapse ul li:hover::after{
    width: 100%;
}
.navbar{
    width: 100%;
    display: none;
    background-color: #ffffff;
    border-bottom: rgb(185, 185, 185) 1px solid;
}
.navbar ul{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: flex-end;
}
@media (max-width: 1000px){
    .navbar {
        /* Mobilde navigasyonu gizle veya basitleştir mobil optimazasyon*/
       opacity: 1;
       background-color: #fff;
     }
     .navbar ul {
         background-color: rgb(255, 255, 255);
         opacity: 1;
       }
       .navbar ul a {
         color: #000000;
       }
       .container-fluid{
         opacity: 1;

       }


}




/*------------------- NAVBAR SON ---------------- */

/*

/*------------------- GALLERY ---------------- */
header{
    width: 100%;
    padding: 20px 0;
    background-color: black;
    box-shadow: 0 4px 15px rgb(255, 215, 250,0.3);
    display: flex;
    justify-content: center;
    z-index: 10;
    top: 0;
}
.gallery {
    width: 100%;
    height: 2950px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    justify-content: center;
}

.gallery img {
    width: 350px;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 3px;

}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgb(124, 124, 124);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.close, .prev, .next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
}

.close {
    top: 10px;
    right: 25px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}



