:root{
--gold:#c9a14a;
--dark:#0b0b0b;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Montserrat',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:#fff;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(0,0,0,.55);
backdrop-filter:blur(10px);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:60px;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:25px;
font-size:14px;
transition:.3s;
}

nav a:hover{
color:var(--gold);
}

/* HERO */

.hero{
height:100vh;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url('../images/anasayfa.jpeg');

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-content{
max-width:900px;
padding:20px;
}

.hero h1{
font-size:90px;
letter-spacing:4px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:var(--gold);
color:#000;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

/* ABOUT */

.about{
padding:120px 0;
background:#111;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
height:600px;
object-fit:cover;
border-radius:20px;
}

.section-tag{
display:block;
color:var(--gold);
letter-spacing:2px;
margin-bottom:15px;
}

.about-content h2{
font-size:48px;
margin-bottom:25px;
}

.about-content p{
line-height:1.9;
color:#ddd;
margin-bottom:20px;
}

@media(max-width:992px){

.about-grid{
grid-template-columns:1fr;
}

.about-image img{
height:400px;
}

.hero h1{
font-size:50px;
}

}
/* ROOMS */

.rooms{
padding:120px 0;
background:#0b0b0b;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:48px;
margin-top:10px;
}

.rooms-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:40px;
}

.rooms-content h3{
font-size:36px;
margin-bottom:20px;
color:var(--gold);
}

.rooms-content p{
line-height:1.9;
color:#ddd;
margin-bottom:20px;
}

.rooms-content ul{
list-style:none;
}

.rooms-content li{
margin-bottom:12px;
color:#ddd;
}

.rooms-main-image img{
width:100%;
height:420px;
object-fit:cover;
border-radius:20px;
}

.room-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.room-gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
transition:.4s;
cursor:pointer;
}

.room-gallery img:hover{
transform:scale(1.03);
}

@media(max-width:992px){

.rooms-grid{
grid-template-columns:1fr;
}

.room-gallery{
grid-template-columns:1fr;
}

}
/* RESTAURANT */

.restaurant{
padding:120px 0;
background:#111;
}

.restaurant-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:40px;
}

.restaurant-content h3{
font-size:36px;
margin-bottom:20px;
color:var(--gold);
}

.restaurant-content p{
line-height:1.9;
color:#ddd;
margin-bottom:20px;
}

.restaurant-main-image img{
width:100%;
height:420px;
object-fit:cover;
border-radius:20px;
}

.restaurant-gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.restaurant-gallery img{
width:100%;
height:180px;
object-fit:cover;
border-radius:15px;
cursor:pointer;
transition:.4s;
}

.restaurant-gallery img:hover{
transform:scale(1.03);
}

@media(max-width:992px){

.restaurant-grid{
grid-template-columns:1fr;
}

.restaurant-gallery{
grid-template-columns:repeat(2,1fr);
}

}
/* POOL */

.pool{
padding:120px 0;
background:#0b0b0b;
}

.pool-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:40px;
}

.pool-content h3{
font-size:36px;
color:var(--gold);
margin-bottom:20px;
}

.pool-content p{
line-height:1.9;
color:#ddd;
margin-bottom:20px;
}

.pool-main-image img{
width:100%;
height:420px;
object-fit:cover;
border-radius:20px;
}

.pool-gallery{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:15px;
}

.pool-gallery img{
width:100%;
height:180px;
object-fit:cover;
border-radius:15px;
cursor:pointer;
transition:.4s;
}

.pool-gallery img:hover{
transform:scale(1.05);
}

@media(max-width:992px){

.pool-grid{
grid-template-columns:1fr;
}

.pool-gallery{
grid-template-columns:repeat(2,1fr);
}

}
/* INFO */

.info-section{
padding:120px 0;
background:#111;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.info-card{
background:#161616;
border:1px solid rgba(201,161,74,.15);
border-radius:20px;
padding:40px;
text-align:center;
transition:.4s;
}

.info-card:hover{
transform:translateY(-5px);
border-color:#c9a14a;
}

.info-card h3{
font-size:42px;
color:#c9a14a;
margin-bottom:10px;
}

.info-card p{
color:#ddd;
}

@media(max-width:992px){

.info-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.info-grid{
grid-template-columns:1fr;
}

}
/* CONTACT */

.contact-section{
padding:120px 0;
background:#0b0b0b;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.contact-card{
background:#161616;
padding:35px;
border-radius:20px;
text-align:center;
border:1px solid rgba(201,161,74,.15);
}

.contact-card h3{
color:#c9a14a;
margin-bottom:15px;
}

.contact-card p{
color:#ddd;
line-height:1.8;
}

/* FOOTER */

footer{
background:#080808;
padding-top:80px;
}

.footer-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
padding-bottom:40px;
}

.footer-logo img{
height:70px;
margin-bottom:15px;
}

.footer-logo p{
color:#ccc;
}

.footer-social{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.footer-social a{
text-decoration:none;
color:white;
padding:12px 20px;
border:1px solid rgba(201,161,74,.2);
border-radius:30px;
transition:.3s;
}

.footer-social a:hover{
background:#c9a14a;
color:#000;
}

.copyright{
text-align:center;
padding:20px;
border-top:1px solid rgba(255,255,255,.08);
color:#999;
}

/* FLOATING WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;

background:#25D366;
color:white;

padding:15px 20px;

border-radius:50px;

text-decoration:none;

font-weight:600;

z-index:999;
}

@media(max-width:992px){

.contact-grid{
grid-template-columns:1fr 1fr;
}

.footer-content{
flex-direction:column;
text-align:center;
}

}

@media(max-width:600px){

.contact-grid{
grid-template-columns:1fr;
}

}