/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* BODY */
body{
    background:#f6f6f6;
    color:#111;
}

/* HEADER */
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-family: "Georgia", serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1f1f1f;
    cursor: pointer;
    user-select: none;
}

.logo .diamond{
    color: #C8A04D;
    font-size: 18px;
    vertical-align: 10px;
    margin: 0 1px;
}

.logo .mobilya{
    display:block;
    font-family:'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 14px;
    font-weight: 600;
    color: #3a3a3a; /* daha güçlü koyuluk */
    margin-top: 2px;

    /* premium his */
    text-transform: uppercase;
}
.logo .mobilya::before{
    content:"";
    display:block;
    width:60px;
    height:1px;
    background:#C8A04D;
    margin:6px auto;
    opacity:0.7;
}

.nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
    font-size:14px;
}

.nav a:hover{
    color:#000;
}

/* HERO */
html{
    scroll-behavior:smooth;
}
.categories{
    scroll-margin-top:80px;
}
.hero{
    height:90vh;
    display:flex;
    gap:40px;
    align-items:center;
    padding:0 8%;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

/* SOL TARAF */
.hero-left{
    flex:1;
    max-width:500px;
}

.mini-title{
    font-size:13px;
    letter-spacing:4px;
    color:#C8A04D;
    font-weight:600;
}

.hero-left h1{
    font-size:52px;
    margin-top:15px;
    line-height:1.1;
}

.hero-left p{
    margin-top:15px;
    opacity:.85;
    line-height:1.6;
}

.hero-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 25px;
    background:#C8A04D;
    color:#111;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
}

/* SAĞ TARAF */
.hero-right{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* KARTLAR */
.hero-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    height:160px;
    text-decoration:none;
    display:block;
}

.hero-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.hero-card span{
    position:absolute;
    bottom:10px;
    left:10px;
    color:#fff;
    font-size:14px;
    font-weight:500;
    z-index:2;
}

/* hover zoom */
.hero-card:hover img{
    transform:scale(1.1);
}

/* karartma */
.hero-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
}
@media(max-width:900px){

.hero{
    flex-direction:column;
    height:auto;
    padding:60px 5%;
}

.hero-left{
    text-align:center;
}

.hero-left h1{
    font-size:34px;
}

.hero-right{
    grid-template-columns:repeat(2,1fr);
    margin-top:30px;
}

}

@media(max-width:500px){

.hero-right{
    grid-template-columns:1fr;
}

}
/* KATEGORİLER */
.categories{
    display:flex;
    flex-direction:column;
}

/* FULL WIDTH CARD */
.category-card{
    position:relative;
    width:100%;
    height:80vh; /* FULL EKRANA YAKIN */
    overflow:hidden;
    display:block;
    text-decoration:none;
}

/* GÖRSEL */
.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

/* HOVER ZOOM */
.category-card:hover img{
    transform:scale(1.08);
}

/* KARARTMA */
.category-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* YAZI ALANI */
.overlay{
    position:absolute;
    bottom:60px;
    left:60px;
    z-index:2;
    color:#fff;
}

/* BAŞLIK */
.overlay h2{
    font-size:42px;
    font-weight:700;
    letter-spacing:1px;
}

/* HOVER ALT ÇİZGİ */
.overlay h2::after{
    content:"";
    display:block;
    width:120px;
    height:2px;
    background:#C8A04D;
    margin-top:10px;
    transition:.4s;
}

.category-card:hover .overlay h2::after{
    width:180px;
}

/* PAGE TITLE */
.page-title{
    padding:40px 8%;
}

.page-title h1{
    font-size:32px;
}

/* PRODUCT GRID */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:0 8% 60px;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.product-card h3{
    padding:12px;
    font-size:16px;
}

/* MODAL */
.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
    flex-direction:column;
    z-index:9999;
}

.modal img{
    width:500px;
    max-width:90%;
    border-radius:10px;
}

/* THUMBS */
.thumbs{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.thumbs img{
    width:60px;
    height:60px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid transparent;
}

.thumbs img.active{
    border:2px solid #C8A04D;
}

/* CLOSE */
.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

.info-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:10px;
    padding:10px;
    text-align:center;
    background:#25D366;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.info-btn:hover{
    background:#1ebe5d;
}

/* icon */
.wa-icon{
    width:18px;
    height:18px;
    fill:#fff;
}

.footer{
    background:#111;
    color:#fff;
    padding:40px 8%;
    margin-top:50px;
}

.footer-content{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.footer h3{
    font-size:22px;
    margin-bottom:10px;
}

.footer p{
    font-size:14px;
    opacity:.8;
    margin-bottom:20px;
}

/* linkler */
.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.footer-links a{
    padding:10px 15px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

/* whatsapp */
.wa-link{
    background:#25D366;
    color:#fff;
}

.wa-link:hover{
    background:#1ebe5d;
}

/* instagram */
.ig-link{
    background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
    color:#fff;
}

.ig-link:hover{
    opacity:.85;
}

.copy{
    font-size:12px;
    opacity:.6;
}

/* TABLET + MOBİL GENEL */
@media (max-width: 1024px){

.hero{
    padding:0 5%;
    flex-direction:column;
    height:auto;
}

.hero-left{
    text-align:center;
    max-width:100%;
}

.hero-left h1{
    font-size:38px;
}

.hero-right{
    grid-template-columns:repeat(2,1fr);
    width:100%;
    margin-top:30px;
}

}

@media (max-width: 768px){

/* HEADER */
.header{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.nav{
    flex-direction:column;
    gap:8px;
}

/* HERO */
.hero-left h1{
    font-size:28px;
}

.hero-left p{
    font-size:14px;
}

/* KARTLAR */
.hero-right{
    grid-template-columns:1fr;
}

/* ÜRÜN GRID */
.product-grid{
    grid-template-columns:1fr;
    padding:20px 5%;
}

/* ÜRÜN BAŞLIK */
.page-title h1{
    font-size:24px;
    text-align:center;
}

/* BUTONLAR */
.info-btn{
    font-size:14px;
}

/* FOOTER */
.footer-links{
    flex-direction:column;
    gap:10px;
}

}

@media (max-width: 480px){

.hero-left h1{
    font-size:24px;
}

.hero-btn{
    padding:10px 18px;
    font-size:13px;
}

.nav a{
    font-size:13px;
}

}
/* hamburger icon */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* desktop nav */
.nav{
    display:flex;
    gap:15px;
}

/* MOBILE */
@media(max-width:768px){

.menu-toggle{
    display:block;
}

.nav{
    display:none;
    flex-direction:column;
    background:#fff;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    padding:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.nav.active{
    display:flex;
}

}

.contact-container{
    padding:60px 8%;
    display:flex;
    justify-content:center;
}

.contact-card{

    width:100%;
    max-width:800px;

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-card h2{
    margin-bottom:15px;
    font-size:30px;
}

.contact-card>p{
    color:#666;
    line-height:1.7;
    margin-bottom:35px;
}

.contact-item{

    display:flex;
    gap:20px;

    margin-bottom:30px;

    align-items:flex-start;

}

.contact-item span{

    font-size:30px;

    width:40px;

}

.contact-item h3{

    margin-bottom:5px;

}

.contact-item a{

    color:#111;

    text-decoration:none;

    font-weight:600;

}

.contact-item a:hover{

    color:#C8A04D;

}

.map-btn{

    display:inline-block;

    margin-top:20px;

    background:#111;

    color:#fff;

    text-decoration:none;

    padding:14px 25px;

    border-radius:8px;

    transition:.3s;

}

.map-btn:hover{

    background:#C8A04D;

    color:#111;

}

@media(max-width:768px){

.contact-card{

    padding:25px;

}

.contact-item{

    gap:15px;

}

.contact-item span{

    font-size:24px;

}

}

.page-title{

    padding:90px 20px 60px;

    text-align:center;

    background:#f8f8f8;

}

.page-subtitle{

    display:inline-block;

    color:#C8A04D;

    font-size:14px;

    letter-spacing:3px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:15px;

}

.page-title h1{

    font-size:48px;

    font-weight:700;

    color:#111;

    margin-bottom:20px;

}

.page-title p{

    max-width:650px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

@media(max-width:768px){

.page-title{

    padding:70px 20px 40px;

}

.page-title h1{

    font-size:34px;

}

.page-title p{

    font-size:15px;

}

}