/*=============================
 ANKARA MİDYE
 Premium Style
=============================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#0f0f0f;
color:#fff;
line-height:1.7;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(0,0,0,.92);
backdrop-filter:blur(8px);
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.4);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
color:#fff;
text-decoration:none;
font-size:17px;
font-weight:500;
transition:.3s;
position:relative;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#d4af37;
transition:.4s;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
color:#d4af37;
}

/* HERO */

.hero{
position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:5;
max-width:800px;
padding:20px;
}

.hero h1{
font-size:64px;
margin-bottom:20px;
font-weight:700;
}

.hero p{
font-size:22px;
margin-bottom:35px;
color:#eee;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:16px 34px;
border-radius:50px;
background:#fff;
color:#000;
text-decoration:none;
font-weight:600;
transition:.35s;
}

.btn:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.gold{
background:#d4af37;
color:#fff;
}
/*==========================
ÜRÜNLER
==========================*/

section{
padding:100px 0;
}

section h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#d4af37;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.product-card{
background:#1a1a1a;
border-radius:18px;
overflow:hidden;
transition:.4s;
box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.product-card:hover{
transform:translateY(-10px);
}

.product-card img{
width:100%;
height:260px;
object-fit:cover;
}

.product-card h3{
padding:20px 20px 10px;
font-size:24px;
color:#d4af37;
}

.product-card p{
padding:0 20px 25px;
color:#ddd;
}

/*==========================
GALERİ
==========================*/

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery img{
width:100%;
height:280px;
object-fit:cover;
border-radius:15px;
transition:.4s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.05);
box-shadow:0 15px 35px rgba(212,175,55,.4);
}

/*==========================
İLETİŞİM
==========================*/

.contact{
background:#161616;
text-align:center;
}

.contact p{
font-size:18px;
margin:12px 0;
}

.contact iframe{
width:100%;
height:400px;
margin-top:35px;
border:0;
border-radius:18px;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
flex-wrap:wrap;
}

/*==========================
FOOTER
==========================*/

footer{
background:#000;
padding:30px;
text-align:center;
border-top:2px solid #d4af37;
}

footer p{
color:#ccc;
}

/*==========================
WHATSAPP
==========================*/

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:70px;
height:70px;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 30px rgba(0,0,0,.4);
transition:.3s;
z-index:999;
}

.whatsapp:hover{
transform:scale(1.12);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:768px){

header .container{
flex-direction:column;
}

nav ul{
flex-direction:column;
gap:15px;
margin-top:15px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

.gallery{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr;
}

.hero-buttons,
.contact-buttons{
flex-direction:column;
}

.btn{
width:100%;
text-align:center;
}

.logo img{
height:55px;
}

}