/* ===============================
   GLOBAL RESET
   =============================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Segoe UI", Arial, sans-serif;
}

body{
background:#ffffff;
color:#222;
line-height:1.6;
overflow-x:hidden;
}



/* ===============================
   SCROLL PROGRESS
   =============================== */

#scrollProgress{
position:fixed;
top:0;
left:0;
height:3px;
width:0%;
background:#c9a36a;
z-index:9999;
}



/* ===============================
   LOADER
   =============================== */

#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:white;
display:flex;
align-items:center;
justify-content:center;
z-index:99999;
transition:opacity 0.8s ease;
}

.loader-inner{
text-align:center;
}

.loader-inner h1{
font-size:40px;
letter-spacing:3px;
margin-bottom:10px;
}

.loader-inner p{
opacity:0.6;
}



/* ===============================
   HEADER
   =============================== */

.header{
width:100%;
background:white;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:22px;
font-weight:bold;
letter-spacing:1px;
}

.menu a{
margin:0 15px;
text-decoration:none;
color:#333;
font-weight:500;
}

.btn-book{
background:#c9a36a;
color:white;
padding:10px 18px;
border-radius:25px;
text-decoration:none;
}



/* ===============================
   HERO
   =============================== */

.hero{
height:80vh;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(120deg,#f9f7f3,#ffffff);
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
max-width:600px;
margin:auto;
margin-bottom:25px;
}

.btn-main{
background:#c9a36a;
color:white;
padding:12px 25px;
border-radius:25px;
text-decoration:none;
display:inline-block;
}



/* ===============================
   SERVICES
   =============================== */

.services{
padding:80px 20px;
text-align:center;
}

.services h2{
font-size:36px;
margin-bottom:40px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.service-card h3{
margin-bottom:10px;
}



/* ===============================
   GALLERY
   =============================== */

.gallery{
padding:80px 20px;
background:#fafafa;
text-align:center;
}

.gallery h2{
font-size:36px;
margin-bottom:40px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}

.gallery-item{
height:220px;
background:#e5e5e5;
border-radius:10px;
}



/* ===============================
   ABOUT
   =============================== */

.about{
padding:80px 20px;
text-align:center;
max-width:800px;
margin:auto;
}

.about h2{
font-size:36px;
margin-bottom:20px;
}



/* ===============================
   CONTACT
   =============================== */

.contact{
padding:80px 20px;
background:#fafafa;
text-align:center;
}

.contact h2{
font-size:36px;
margin-bottom:20px;
}



/* ===============================
   SOCIAL BAR
   =============================== */

.social-bar{
position:fixed;
right:20px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:10px;
z-index:1000;
}

.social-toggle{
background:black;
color:white;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
cursor:pointer;
font-size:20px;
}

.social-icon{
display:none;
background:white;
padding:8px 12px;
border-radius:20px;
text-decoration:none;
color:black;
font-size:14px;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}



/* ===============================
   WHATSAPP BUTTON
   =============================== */

.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
width:55px;
height:55px;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:25px;
color:white;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}



/* ===============================
   MOBILE
   =============================== */

@media(max-width:768px){

.hero h1{
font-size:32px;
}

.menu{
display:none;
}

.services-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

}