/* ===========================
   MIDYE KOLIK PREMIUM THEME
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#090909;
color:#fff;
overflow-x:hidden;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:#d4af37;
margin-bottom:15px;
}

.section-title p{
color:#c9c9c9;
font-size:17px;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
background:rgba(0,0,0,.85);
backdrop-filter:blur(12px);
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
border-bottom:1px solid rgba(212,175,55,.2);
}

.logo{
font-size:28px;
font-weight:800;
color:#fff;
}

.logo span{
color:#d4af37;
}

nav{
display:flex;
gap:30px;
}

nav a{
transition:.3s;
font-weight:500;
}

nav a:hover{
color:#d4af37;
}

.siparis-btn{
background:#d4af37;
color:#000;
padding:12px 22px;
border-radius:40px;
font-weight:700;
transition:.3s;
}

.siparis-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 25px rgba(212,175,55,.5);
}

.hero{
min-height:100vh;
display:flex;
justify-content:space-between;
align-items:center;
padding:140px 8% 80px;
gap:60px;
}

.hero-content{
flex:1;
}

.hero-content h4{
color:#d4af37;
font-size:22px;
margin-bottom:15px;
}

.hero-content h1{
font-size:72px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.hero-content h1 span{
color:#d4af37;
}

.hero-content p{
font-size:18px;
color:#ddd;
max-width:550px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.gold-btn,
.dark-btn{
padding:15px 28px;
border-radius:40px;
font-weight:700;
transition:.3s;
}

.gold-btn{
background:#d4af37;
color:#000;
}

.dark-btn{
border:2px solid #d4af37;
color:#d4af37;
}

.gold-btn:hover,
.dark-btn:hover{
transform:translateY(-5px);
box-shadow:0 0 30px rgba(212,175,55,.5);
}

.hero-image{
flex:1;
display:flex;
justify-content:center;
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

}
/* ===========================
   HAKKIMIZDA
=========================== */

.about-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.about-card{
background:#111;
padding:35px;
border:1px solid rgba(212,175,55,.15);
border-radius:20px;
text-align:center;
transition:.35s;
}

.about-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
box-shadow:0 15px 40px rgba(212,175,55,.15);
}

.about-card i{
font-size:42px;
color:#d4af37;
margin-bottom:20px;
}

.about-card h3{
margin-bottom:12px;
font-size:24px;
}

.about-card p{
color:#bbb;
}

/* ===========================
   MENÜ
=========================== */

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.menu-card{
background:#101010;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(212,175,55,.15);
transition:.35s;
}

.menu-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 45px rgba(212,175,55,.18);
border-color:#d4af37;
}

.menu-card img{
width:100%;
height:250px;
object-fit:cover;
transition:.5s;
}

.menu-card:hover img{
transform:scale(1.08);
}

.menu-card h3{
font-size:30px;
padding:20px 20px 10px;
}

.menu-card p{
padding:0 20px;
color:#bdbdbd;
}

.menu-card span{
display:block;
padding:18px 20px;
font-size:28px;
font-weight:700;
color:#d4af37;
}

.menu-card a{
display:block;
margin:0 20px 25px;
text-align:center;
padding:15px;
background:#d4af37;
color:#000;
font-weight:700;
border-radius:50px;
transition:.3s;
}

.menu-card a:hover{
transform:scale(1.05);
}

/* ===========================
   GALERİ
=========================== */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
cursor:pointer;
transition:.4s;
border:2px solid transparent;
}

.gallery-grid img:hover{
transform:scale(1.05);
border-color:#d4af37;
box-shadow:0 15px 35px rgba(212,175,55,.25);
}

#lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.95);
justify-content:center;
align-items:center;
z-index:9999;
}

#lightbox img{
max-width:90%;
max-height:85%;
border-radius:20px;
}

#close-lightbox{
position:absolute;
top:25px;
right:35px;
font-size:50px;
cursor:pointer;
color:#fff;
}
/* ===========================
   YORUMLAR
=========================== */

.reviews-slider{
display:flex;
gap:25px;
overflow-x:auto;
scrollbar-width:none;
padding-bottom:10px;
}

.reviews-slider::-webkit-scrollbar{
display:none;
}

.review-card{
min-width:320px;
background:#111;
border:1px solid rgba(212,175,55,.2);
border-radius:20px;
padding:30px;
transition:.35s;
}

.review-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
box-shadow:0 15px 40px rgba(212,175,55,.18);
}

.review-card p{
margin:18px 0;
color:#d6d6d6;
}

.review-card h4{
color:#d4af37;
}

/* ===========================
   İLETİŞİM
=========================== */

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-bottom:50px;
}

.contact-card{
background:#101010;
padding:35px;
border-radius:20px;
text-align:center;
border:1px solid rgba(212,175,55,.15);
transition:.35s;
}

.contact-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.contact-card h3{
margin-bottom:15px;
font-size:26px;
color:#d4af37;
}

.contact-card p{
margin-bottom:20px;
color:#ddd;
font-size:18px;
}

.contact-card a{
display:inline-block;
padding:14px 28px;
background:#d4af37;
color:#000;
font-weight:700;
border-radius:40px;
}

.map iframe{
border-radius:22px;
}

/* ===========================
   FOOTER
=========================== */

footer{
background:#050505;
padding:60px 0 35px;
text-align:center;
border-top:1px solid rgba(212,175,55,.15);
}

footer h2{
font-size:42px;
margin-bottom:15px;
}

footer span{
color:#d4af37;
}

footer p{
color:#bbb;
}

.social{
display:flex;
justify-content:center;
gap:18px;
margin:30px 0;
}

.social a{
width:55px;
height:55px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:#111;
font-size:22px;
transition:.3s;
}

.social a:hover{
background:#d4af37;
color:#000;
transform:translateY(-5px);
}

.copy{
margin-top:20px;
font-size:15px;
color:#777;
}

/* ===========================
   BACK TO TOP
=========================== */

#backToTop{
position:fixed;
right:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#d4af37;
color:#000;
font-size:22px;
cursor:pointer;
display:none;
z-index:999;
box-shadow:0 10px 30px rgba(212,175,55,.35);
transition:.3s;
}

#backToTop:hover{
transform:translateY(-5px) scale(1.08);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

header{
padding:15px 5%;
}

nav{
display:none;
}

.hero{
flex-direction:column;
text-align:center;
padding-top:140px;
}

.hero-content h1{
font-size:52px;
}

.hero-buttons{
justify-content:center;
}

.section-title h2{
font-size:34px;
}

.menu-card img{
height:220px;
}

}

@media(max-width:600px){

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:16px;
}

.section-title h2{
font-size:28px;
}

.logo{
font-size:22px;
}

.siparis-btn{
padding:10px 18px;
font-size:14px;
}

.review-card{
min-width:280px;
}

}
/*=============================
 PREMIUM EFEKTLER
==============================*/

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:
radial-gradient(circle at 20% 20%,rgba(212,175,55,.08),transparent 35%),
radial-gradient(circle at 80% 60%,rgba(212,175,55,.05),transparent 40%),
radial-gradient(circle at 50% 100%,rgba(255,255,255,.03),transparent 30%);
pointer-events:none;
z-index:-2;
}

body::after{
content:"";
position:fixed;
inset:0;
background:url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
opacity:.08;
pointer-events:none;
z-index:-1;
}

html{
scroll-padding-top:90px;
}

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#0b0b0b;
}

::-webkit-scrollbar-thumb{
background:#d4af37;
border-radius:50px;
}

::selection{
background:#d4af37;
color:#000;
}

.hero h1{
background:linear-gradient(90deg,#fff,#d4af37,#fff);
background-size:300%;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
animation:goldText 8s linear infinite;
}

@keyframes goldText{

0%{
background-position:0%;
}

100%{
background-position:300%;
}

}

.menu-card,
.about-card,
.review-card,
.contact-card{

backdrop-filter:blur(8px);

}

.menu-card::before{

content:"";

position:absolute;

top:-100%;

left:-100%;

width:220%;

height:220%;

background:linear-gradient(45deg,
transparent,
rgba(255,255,255,.12),
transparent);

transform:rotate(25deg);

transition:1s;

}

.menu-card{

position:relative;

overflow:hidden;

}

.menu-card:hover::before{

left:100%;

top:100%;

}

.gallery img{

transition:.5s;

}

.gallery img:hover{

filter:brightness(1.1);

}

footer{

background:linear-gradient(to top,#050505,#111);

}

footer h2{

letter-spacing:2px;

}

.social a{

border:1px solid rgba(212,175,55,.25);

}

.social a:hover{

box-shadow:0 0 30px rgba(212,175,55,.5);

}

.gold-btn,
.siparis-btn{

position:relative;

overflow:hidden;

}

.gold-btn::before,
.siparis-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:100%;

height:100%;

background:linear-gradient(90deg,
transparent,
rgba(255,255,255,.5),
transparent);

transition:.8s;

}

.gold-btn:hover::before,
.siparis-btn:hover::before{

left:130%;

}

.hero-image img{

filter:drop-shadow(0 0 45px rgba(212,175,55,.35));

}

.gallery img,
.menu-card img{

user-select:none;

-webkit-user-drag:none;

}

section{

position:relative;

}

section::after{

content:"";

position:absolute;

bottom:0;

left:50%;

transform:translateX(-50%);

width:120px;

height:2px;

background:#d4af37;

opacity:.25;

}
/*==============================
 PREMIUM LOADER
==============================*/

#loader{
position:fixed;
inset:0;
background:#050505;
display:flex;
justify-content:center;
align-items:center;
z-index:999999;
transition:.8s;
}

.loader-logo{
font-size:42px;
font-weight:800;
letter-spacing:4px;
color:#d4af37;
animation:pulse 1.5s infinite;
text-shadow:0 0 20px rgba(212,175,55,.5);
}

@keyframes pulse{

0%,100%{
transform:scale(1);
opacity:1;
}

50%{
transform:scale(1.08);
opacity:.6;
}

}

/*==============================
 FLOATING WHATSAPP
==============================*/

.whatsapp-fixed{
position:fixed;
right:20px;
bottom:95px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
box-shadow:0 10px 35px rgba(37,211,102,.45);
z-index:999;
animation:whatsPulse 2s infinite;
}

@keyframes whatsPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}

/*==============================
 ALTIN ÇİZGİ
==============================*/

.section-title::after{

content:"";

display:block;

width:90px;

height:4px;

background:#d4af37;

margin:18px auto 0;

border-radius:50px;

}