body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#0d0d0d;
    color:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.navbar{
    border-bottom:1px solid #222;
    background:#101010;
}

.nav-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}

.logo,
.logo:visited,
.logo:hover,
.logo:active{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Pacifico', cursive;
    font-size:28px;
    font-weight:400;
    line-height:1;
    white-space:nowrap;
    color:#fff;
    text-decoration:none;
}

.logo img{
    height:50px;
    width:auto;
    display:block;
    flex-shrink:0;
}

.menu{
    display:flex;
    gap:20px;
    align-items:center;
}

.menu a,
.menu a:visited,
.menu a:hover,
.menu a:active{
    color:#ddd;
    text-decoration:none;
    font-size:16px;
    font-family:Arial, sans-serif;
    font-weight:400;
    line-height:1;
    white-space:nowrap;
}

.banner-area{
    text-align:center;
    margin:20px 0;
}

.banner-area img{
    max-width:100%;
    height:auto;
    display:inline-block;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.card{
    background:#171717;
    border-radius:16px;
    overflow:hidden;
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}
.gallery-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.gallery-image{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.gallery-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

.gallery-prev,
.gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:white;
    cursor:pointer;
    padding:10px;
}

.gallery-prev{ left:40px; }
.gallery-next{ right:40px; }
.gallery-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.gallery-dots{
    margin-top:15px;
    display:flex;
    gap:8px;
}

.gallery-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#666;
    cursor:pointer;
}

.gallery-dot.active{
    background:#fff;
}

/* HEADER MOBİL DÜZENİ */
@media (max-width: 768px){

    .nav-inner{
        flex-direction:column;
        align-items:center;
        gap:12px;
        padding:14px;
    }

    .logo{
        font-size:22px;
        justify-content:center;
        text-align:center;
    }

    .logo img{
        height:40px;
    }

    .menu{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:14px;
    }

    .menu a{
        font-size:15px;
    }

}
