/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 1s ease forwards;
}

/* HERO */

.hero{
    min-height:calc(100vh - 120px);
}

.navbar {
    position: sticky;  /* ← BURAYA DEĞİŞTİR (fixed'den) */
    top: 20px;
    left: auto;
    transform: none;
    width: 100%;
    padding: 18px 35px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    
    z-index: 999;
    margin: 0 auto;
    max-width: 1600px;
}





.logo{

    font-size:26px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    cursor:pointer;

}

.menu{
    display:flex;
    gap:35px;
    list-style:none;
}

.menu a{

    color:white;

    text-decoration:none;

    font-size:15px;

    padding:10px 18px;

    border-radius:12px;

    transition:.35s;

}

.menu a:hover{

    background:white;

    color:black;

}

.menu a.active{

    background:white;

    color:black;

}

.hero-content{

    width:90%;

    max-width:1500px;

    height:82vh;

    margin:0 auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.hero-content h1{

    font-size:78px;

    font-weight:800;

    line-height:85px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.left{

    width:48%;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.right{

    width:40%;

    display:flex;
    justify-content:center;

}

.right img{

    width:100%;
    max-width:470px;

    border-radius:25px;

    border:2px solid rgba(255,255,255,.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,.60);

    transition:.4s;

}
.right img:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 80px rgba(255,255,255,.10);

}
.hero-content p{

    font-size:20px;

    color:#9c9c9c;

    line-height:38px;

    margin-bottom:45px;

    max-width:600px;

}

.buttons{

    display:flex;

    gap:20px;

}

.btn{

    padding:18px 45px;

    border:1px solid white;

    color:white;

    text-decoration:none;

    transition:.4s;

}

.btn:hover{

    background:white;

    color:black;

}

.btn2{

    background:white;

    color:black;

}

.btn2:hover{

    background:transparent;

    color:white;

}
/* ========================= */
/* SOCIAL ICONS */
/* ========================= */

.social-icons{

    display:flex;

    gap:18px;

    margin-top:45px;

}

.social-icons a{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid rgba(255,255,255,.15);

    border-radius:16px;

    color:white;

    text-decoration:none;

    font-size:22px;

    transition:.35s;

}

.social-icons a:hover{

    background:white;

    color:black;

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(255,255,255,.15);

}
/* ========================= */
/* BOOKING BADGE */
/* ========================= */

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:50px;

    color:#d9d9d9;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:18px;

    background:rgba(255,255,255,.04);

}
/* ========================= */
.image-card{

    position:relative;

    display:inline-block;

}
/* ========================= */
/* ABOUT */
/* ========================= */

.about{

    width:100%;

    padding:200px 0;

    background:#050505;

}

.about-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:140px;

}

.about-image{

    width:34%;

}

.about-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:28px;

    transition:.4s;

    box-shadow:0 20px 60px rgba(0,0,0,.5);

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-text{

    width:50%;

}

.section-title{

    color:#9c9c9c;

    font-size:14px;

    letter-spacing:8px;

    margin-bottom:20px;

    display:block;

}

.about-text h2{

    font-size:52px;

    line-height:64px;

    margin-bottom:45px;

}

.about-text p{

    color:#b5b5b5;

    font-size:19px;

    line-height:36px;

    margin-bottom:25px;

}
/* ========================= */
/* PORTFOLIO */
/* ========================= */

.portfolio{

    width:100%;

    padding:170px 0;

    background:#000;

}

.portfolio-title{

    width:90%;

    max-width:1400px;

    margin:auto;

    margin-bottom:70px;

}

.portfolio-title span{

    color:#888;

    letter-spacing:7px;

    font-size:14px;

}

.portfolio-title h2{

    margin-top:15px;

    font-size:52px;

    font-weight:700;

}

.category-grid{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.category-card{

    position:relative;

    height:240px;

    overflow:hidden;

    border-radius:28px;

    border:1px solid rgba(255,255,255,.08);

    cursor:pointer;

    transition:.4s;

}

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;
}

.category-card:hover img{

    transform:scale(1.08);

}

.category-name{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;

    font-size:34px;
    font-weight:700;
    color:#fff;

    text-shadow:
        0 2px 12px rgba(0,0,0,.6);

    transition:.35s;
}

.category-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);

}
.category-card:hover .category-name{
    transform:translateY(-8px);
    letter-spacing:1px;
}

.category-card:hover::after{
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,0) 75%
    );
}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card:hover{

    transform:translateY(-10px) scale(1.03);

    box-shadow:0 30px 60px rgba(255,255,255,.10);

}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact{

    width:100%;

    padding:170px 0 120px;

    background:#000;

}

.contact-box{

    width:90%;

    max-width:900px;

    margin:auto;

    padding:70px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    border-radius:35px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(18px);

}

.contact-box span{

    color:#8a8a8a;

    letter-spacing:6px;

    font-size:14px;

}

.contact-box h2{

    font-size:60px;

    margin:20px 0;

    font-weight:700;

}

.contact-box p{

    color:#b5b5b5;

    font-size:20px;

    line-height:36px;

    max-width:650px;

    margin:0 auto 50px;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.contact-buttons a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 35px;

    color:white;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.12);

    border-radius:16px;

    transition:.35s;

    font-size:18px;

}

.contact-buttons a:hover{

    background:white;

    color:black;

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(255,255,255,.15);

}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{

    padding:35px 0 60px;

    text-align:center;

    color:#777;

    font-size:15px;

    border-top:1px solid rgba(255,255,255,.06);

}
@keyframes pageLoad{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ========================= */
/* POPUP GALLERY */
/* ========================= */

.popup{
    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.93);

    z-index:99999;

    overflow:hidden;

    padding:40px;
}

.popup.active{
    display:flex;
}

.popup img{

    display:block;

    max-width:70vw;
    max-height:80vh;

    width:auto;
    height:auto;

    object-fit:contain;

    border-radius:18px;

    box-shadow:0 25px 80px rgba(0,0,0,.6);

    animation:popupImage .35s ease;
}

@keyframes popupImage{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

.popup-close{

    position:absolute;

    top:25px;
    right:25px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:28px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    backdrop-filter:blur(8px);

    transition:.3s;

    z-index:100001;
}

.popup-close:hover{

    background:#fff;
    color:#000;

}

.popup-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:32px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    backdrop-filter:blur(8px);

    transition:.3s;

    z-index:100001;
}

.popup-arrow:hover{

    background:#fff;
    color:#000;

}

.popup-arrow.left{

    left:40px;

}

.popup-arrow.right{

    right:40px;

}

@media(max-width:768px){

    .popup{

        padding:20px;

    }

    .popup img{

        max-width:90vw;
        max-height:75vh;

    }

    .popup-arrow{

        width:48px;
        height:48px;

        font-size:24px;

    }

    .popup-arrow.left{

        left:15px;

    }

    .popup-arrow.right{

        right:15px;

    }

    .popup-close{

        width:48px;
        height:48px;

        top:15px;
        right:15px;

        font-size:24px;

    }

}