* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body {
background: #0f0f0f;
color: #fff;
padding-bottom: 70px;
scrollbar-width: none;
-ms-overflow-style: none;
overflow-y: scroll;
}

body::-webkit-scrollbar {
display: none;
}

.navbar{
background:#000;
padding:15px 20px;
display:flex;
justify-content:space-between;
align-items:center;
position:fixed;
width:100%;
box-sizing:border-box;
top:0;
left:0;
z-index:1000;
}

.logo{
     font-weight:600;
     color: white;
     text-decoration:none;
     cursor:pointer;
}
.menu{
display:flex;
gap:20px;
}

.menu a{
color:white;
text-decoration:none;
font-size:14px;
}

.hamburger{
display:none;
font-size:22px;
cursor:pointer;
}

.mobile-top-ticker{
display:none;
}

.mobile-top-ticker-track{
display:inline-block;
white-space:nowrap;
padding-left:100%;
animation:mobileTickerFlow 22s linear infinite;
}

@keyframes mobileTickerFlow{
0%{transform:translateX(0)}
100%{transform:translateX(-100%)}
}

.hero{
height:90vh;
position:relative;
overflow:hidden;
margin-top:60px;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
opacity:0;
}

.slide.active{
opacity:1;
}

.section{
padding:60px 20px;
width:100%;
box-sizing:border-box;
max-width:1100px;
margin:auto;
margin-top:60px;
}

.video-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:20px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
}

.aciklama{
margin-top:20px;
text-align:center;
}

/* MOBILE BAR */
.mobile-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
justify-content:space-around;
align-items:center;
z-index:1500;
background: #bbb;;
padding:10px 10px;
}

.mobile-bar a{
flex:0 1 auto;
padding:8px 16px;
text-align:center;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
width:48px;
height:28px;
transition:transform 0.2s;
}

.mobile-bar a svg{
width:20px;
height:20px;
}

.mobile-bar a:hover{
transform:scale(1.1);
}

.online-reservation-btn{
position:fixed;
right:20px;
top:82px;
bottom:auto;
display:inline-flex;
align-items:center;
justify-content:center;
padding:11px 14px;
border:none;
border-radius:10px;
background:#f9aa00;
color:#000;
font-size:13px;
font-weight:600;
box-shadow:0 5px 14px rgba(0,0,0,.34);
z-index:980;
cursor:pointer;
}

.reservation-overlay{
position:fixed;
inset:0;
display:none;
align-items:center;
justify-content:center;
padding:18px;
background:rgba(0,0,0,.72);
z-index:2600;
}

.reservation-overlay.show{
display:flex;
}

.reservation-modal{
width:min(420px,100%);
background:#111;
border:1px solid #2a2a2a;
border-radius:14px;
padding:16px;
}

.reservation-title{
font-size:20px;
font-weight:600;
margin-bottom:12px;
text-align:center;
}

.reservation-label{
display:block;
font-size:13px;
margin-bottom:6px;
color:#e8e8e8;
}

.reservation-input{
width:100%;
padding:11px 12px;
border:1px solid #222;
border-radius:10px;
background:#161616;
color:#fff;
font-size:14px;
margin-bottom:10px;
}

.reservation-input:focus{
outline:none;
border-color:#ff6b00;
}

.reservation-submit{
width:100%;
padding:12px;
border:none;
border-radius:10px;
background:#ff6b00;
color:#fff;
font-size:15px;
font-weight:600;
cursor:pointer;
margin-top:4px;
}

.reservation-note{
margin-top:10px;
font-size:12px;
color:#d7d7d7;
text-align:center;
}

.reservation-close{
width:100%;
padding:10px;
border:none;
border-radius:10px;
background:#000;
color:#fff;
font-size:14px;
cursor:pointer;
margin-top:10px;
}



/* RESPONSIVE */
@media(max-width:1024px){
.gallery-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.section{
padding:40px 15px;
}
}

@media(max-width:700px){
body{
padding-bottom:80px;
}

.mobile-top-ticker{
position:fixed;
top:0;
left:0;
width:100%;
height:32px;
display:flex;
align-items:center;
overflow:hidden;
background:#151515;
color:#ffffffdb;
border-bottom:1px solid rgba(255,255,255,.18);
z-index:1200;
}

.mobile-top-ticker-track{
font-size:12px;
font-weight:400;
letter-spacing:.2px;
animation-duration:18s;
}

.navbar{
top:32px;
}

.menu{
position:absolute;
top:60px;
left:0;
right:0;
background:#000;
flex-direction:column;
width:100%;
display:none;
padding:15px 20px;
border:1px solid #333;
box-sizing:border-box;
}

.menu.show{
display:flex;
}

.hamburger{
display:block;
}

.gallery-grid{
grid-template-columns:1fr;
}

.section{
padding:30px 15px;
margin-top:102px;
}

.mobile-bar a{
padding:12px 8px;
font-size:11px;
}

.online-reservation-btn{
right:14px;
top:102px;
padding:10px 12px;
font-size:12px;
}
}

footer{
background:#000;
padding:40px 20px;
text-align:center;
}

.whatsapp{
     color:black;
}

.social-links{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
}

.social-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
border-radius:50%;
background:#333;
transition:all 0.3s ease;
}

.social-icon:hover{
background:#D4AF37;
transform:scale(1.1);
}
