    /* ==========================================
    GENEL
    ========================================== */

    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    html{
        scroll-behavior:smooth;
    }

    body{
        font-family:Arial, Helvetica, sans-serif;
        background: rgba(0,0,0,.75);
        color:#fff;
        overflow-x:hidden;
    }

    img{
        max-width:100%;
        display:block;
    }

    a{
        text-decoration:none;
    }

    /* ==========================================
    NAVBAR
    ========================================== */

    .navbar{

        position:fixed;
        top:0;
        left:0;
        width:100%;

        display:flex;
        justify-content:space-between;
        align-items:center;

        padding:18px 8%;

        background:rgba(0,0,0,.75);
        backdrop-filter:blur(10px);
     border-bottom: 1px solid rgba(255,255,255,.08);

     transition: all .3s ease;

        z-index:1000;

    }

.navbar.scrolled{
    padding:5px 8%;
}

.navbar.scrolled .logo img{
    width:150px;
}

    .logo img{

        width:220px;
        height:auto;

    }

    nav{

        display:flex;
        gap:35px;

    }

    nav a{

        color:#fff;
        font-size:17px;
        font-weight:bold;
        transition:.3s;

    }

    nav a:hover{

        color:#d4af37;

    }

    /* ==========================================
    HERO
    ========================================== */

    .hero{

        position:relative;

        width:100%;
        height:100vh;

        background:url("../images/hero.jpg")
    center center/cover no-repeat;
 
        display:flex;
        justify-content:center;
        align-items:center;
        text-align:center;

    }

    .overlay{

        position:absolute;
        inset:0;
        background:rgba(0,0,0,.55);

    }

    .hero-content{

        position:relative;
        z-index:2;

        width:90%;
        max-width:900px;

    }

    .hero h1{

        font-size:60px;
        margin-bottom:25px;

    }

    .hero p{

        font-size:22px;
        color:#eee;
        line-height:1.8;
        margin-bottom:35px;

    }

    /* ==========================================
    BUTONLAR
    ========================================== */

    .buttons{

        display:flex;
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;

    }

    .btn,
    .btn2{

        padding:16px 34px;
        border-radius:8px;
        font-weight:bold;
        transition:.3s;

    }

    .btn{

        background:#25D366;
        color:#fff;

    }

    .btn2{

        background:#d4af37;
        color:#111;

    }

    .btn:hover,
    .btn2:hover{

        transform:translateY(-5px);

    }/* ==========================================
    ÜRÜNLER
    ========================================== */

    .categories{

        background:#f5f5f5;
        color:#222;
        padding:90px 8%;

    }

    .categories h2{

        text-align:center;
        font-size:42px;
        margin-bottom:50px;

    }

    .cards{

        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
        gap:30px;

    }

    .card:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}


   .card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.35s;

    color:#222;

    display:flex;
    flex-direction:column;

}
.card img{

    width:100%;
    height:240px;
    object-fit:cover;
    display:block;

}

    .card h3{

    text-align:center;
    padding:20px;
    font-size:24px;
    min-height:80px;

}

    /* ==========================================
    HAKKIMIZDA
    ========================================== */

    .about{

        background:#111;
        color:#fff;

        padding:100px 8%;

        display:grid;
        grid-template-columns:1fr 1fr;
        gap:60px;

        align-items:center;

    }

    .about-text h2{

        font-size:42px;
        color:#d4af37;
        margin-bottom:25px;

    }

    .about-text p{

        font-size:18px;
        line-height:1.9;
        color:#ddd;
        margin-bottom:20px;

    }

    .about-image img{

        width:100%;
        border-radius:20px;

        box-shadow:0 15px 40px rgba(0,0,0,.35);

    }/* ==========================================
    NEDEN BİZ
    ========================================== */

    .features{

        background:#f8f8f8;
        color:#222;

        padding:100px 8%;

    }

    .features h2{

        text-align:center;
        font-size:42px;
        margin-bottom:60px;

    }

    .feature-grid{

        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
        gap:30px;

    }

    .feature{

        background:#fff;
        padding:35px;
        border-radius:18px;

        text-align:center;

        box-shadow:0 10px 25px rgba(0,0,0,.10);

        transition:.35s;

    }

    .feature:hover{

        transform:translateY(-10px);
        box-shadow:0 18px 35px rgba(0,0,0,.18);

    }

    .icon{

        font-size:45px;
        margin-bottom:20px;

    }

    .feature h3{

        color:#d4af37;
        font-size:24px;
        margin-bottom:15px;

    }

    .feature p{

        color:#666;
        line-height:1.7;

    }

    /* ==========================================
    İLETİŞİM
    ========================================== */

    .contact{

        background:#111;
        color:#fff;

        padding:100px 8%;

        text-align:center;

    }

    .contact h2{

        font-size:42px;
        color:#d4af37;
        margin-bottom:20px;

    }

    .contact-text{

        max-width:700px;
        margin:0 auto 40px;

        color:#ddd;
        font-size:18px;
        line-height:1.8;

    }

    .contact-buttons{

        display:flex;
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;

    }/* ==========================================
    FOOTER
    ========================================== */

footer{

    background:#0b0b0b;
    color:#ddd;

    padding:60px 8% 25px;

}

.footer-container{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

.footer-box h3{

    color:#d4af37;

    margin-bottom:20px;

    font-size:22px;

}

.footer-box p{

    line-height:1.8;
    color:#bbb;

    margin-bottom:12px;

}

.footer-box a{

    display:block;

    color:#bbb;

    margin-bottom:12px;

    transition:.3s;

}

.footer-box a:hover{

    color:#d4af37;

}

.footer-bottom{

    margin-top:45px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#888;

    font-size:15px;

}

    /* ==========================================
    MOBİL UYUMLULUK
    ========================================== */

    @media (max-width:768px){

        .navbar{

            flex-direction:column;
            gap:15px;

            padding:15px;

        }

        .logo img{

            width:180px;

        }

        nav{

            gap:18px;
            flex-wrap:wrap;
            justify-content:center;

        }

        .hero{

            height:90vh;

        }

        .hero h1{

            font-size:38px;

        }

        .hero p{

            font-size:18px;

        }

        .buttons{

            flex-direction:column;
            align-items:center;

        }

        .btn,
        .btn2{

            width:260px;
            text-align:center;

        }

        .categories{

            padding:70px 20px;

        }

        .categories h2{

            font-size:34px;

        }

        .cards{

            grid-template-columns:1fr;

        }

        .about{

            grid-template-columns:1fr;
            text-align:center;

        }

        .about h2{

            font-size:34px;

        }

        .features{

            padding:70px 20px;

        }

        .features h2{

            font-size:34px;

        }

        .contact{

            padding:70px 20px;

        }

        .contact h2{

            font-size:34px;

        }

        .contact-buttons{

            flex-direction:column;
            align-items:center;

        }.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    margin:0 auto 20px;

}

    }/* ==========================================
    ORTAK SAYFA BAŞLIKLARI
    ========================================== */

    .page-title{

        padding-top:140px;
        padding-bottom:40px;

        text-align:center;

        background:#f5f5f5;
        color:#222;

    }

    .page-title h1{

        font-size:42px;
        margin-bottom:15px;

    }

    .page-title p{

        color:#666;
        font-size:18px;

    }

    /* ==========================================
    GALERİ SAYFALARI
    ========================================== */

    .gallery{

        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
        gap:30px;

    }

    .gallery .card{

        cursor:pointer;

    }

    .gallery .card img{

        width:100%;
        height:260px;
        object-fit:cover;

    }

    /* ==========================================
    KÜÇÜK GEÇİŞLER
    ========================================== */

    .card img,
    .about-image img,
    .logo img{

        transition:.35s;

    }

    .card:hover img{

        transform:scale(1.05);

    }

    .about-image img:hover{

        transform:scale(1.02);

    }

    /* ==========================================
    SCROLLBAR
    ========================================== */

    ::-webkit-scrollbar{

        width:10px;

    }

    ::-webkit-scrollbar-track{

        background:#111;

    }

    ::-webkit-scrollbar-thumb{

        background:#d4af37;
        border-radius:20px;

    }

    ::-webkit-scrollbar-thumb:hover{

        background:#b8952f;

    }/* ==========================
   LIGHTBOX
========================== */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    cursor:pointer;
    padding:30px;
}

.lightbox img{
    max-width:95%;
    max-height:95%;
    border-radius:12px;
    box-shadow:0 0 35px rgba(0,0,0,.6);
}/* ==========================
   WHATSAPP BUTONU
========================== */

.whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    z-index:9999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.12);

}.contact iframe{
    display: block;
    width: 100%;
    margin-top: 40px;
}/* ==========================================
   AKTİF MENÜ
========================================== */

nav a.active{

    color:#d4af37;

}/* ==========================
   LIGHTBOX OKLARI
========================== */

.lightbox-arrow{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:60px;
    height:60px;

    border-radius:50%;
    border:none;

    background:rgba(255,255,255,.15);
    color:#fff;

    font-size:36px;
    cursor:pointer;

    transition:.3s;

    display:flex;
    justify-content:center;
    align-items:center;

    user-select:none;

}

.lightbox-arrow:hover{

    background:rgba(212,175,55,.9);
    color:#111;

}

.lightbox-prev{

    left:30px;

}

.lightbox-next{
    right:30px;
}

