/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f8f9fb;
color:#333;
line-height:1.7;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
background:#06152a;
padding:10px 0;
font-size:14px;
color:#fff;
}

.top-bar .container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.top-right{
display:flex;
gap:20px;
}

.top-right a{
color:#fff;
}

/* =========================
   HEADER
========================= */

.main-header{
background:#0A2240;
position:sticky;
top:0;
z-index:9999;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo a{
display:flex;
align-items:center;
gap:15px;
}

.logo-icon{
font-size:45px;
}

.logo-text h2{
font-family:'Cinzel',serif;
color:#C9A227;
font-size:30px;
}

.logo-text span{
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
color:#fff;
}

/* =========================
   MENU
========================= */

.navbar ul{
display:flex;
align-items:center;
gap:22px;
}

.navbar ul li a{
color:#fff;
font-weight:500;
transition:.3s;
}

.navbar ul li a:hover{
color:#C9A227;
}

.book-btn{
background:#C9A227;
padding:12px 24px;
border-radius:5px;
color:#fff !important;
font-weight:600;
}

.book-btn:hover{
background:#fff;
color:#0A2240 !important;
}

.mobile-toggle{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
}

/* =========================
   HERO
========================= */

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=2000') center center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
top:0;
left:0;
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:50px;
}

.hero h1{
font-size:70px;
color:#fff;
font-family:'Cinzel',serif;
margin-bottom:20px;
}

.hero p{
font-size:22px;
color:#fff;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
background:#C9A227;
padding:15px 35px;
color:#fff;
border-radius:5px;
font-weight:600;
}

.hero-btn:hover{
background:#fff;
color:#0A2240;
}

/* =========================
   SECTIONS
========================= */

.section{
padding:90px 0;
}

.section-title{
font-size:45px;
font-family:'Cinzel',serif;
text-align:center;
color:#0A2240;
margin-bottom:50px;
}

.section-title::after{
content:'';
width:80px;
height:3px;
background:#C9A227;
display:block;
margin:15px auto;
}

/* =========================
   CARDS
========================= */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
height:250px;
width:100%;
object-fit:cover;
}

.card-content{
padding:25px;
}

.card-content h3{
color:#0A2240;
margin-bottom:10px;
}

.card-content p{
color:#666;
}

/* =========================
   REVIEWS
========================= */

.review-slider{
display:flex;
gap:20px;
overflow-x:auto;
padding-bottom:10px;
}

.review-card{
min-width:320px;
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* =========================
   FORMS
========================= */

input,
textarea,
select{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:5px;
margin-bottom:15px;
}

button{
background:#C9A227;
color:#fff;
border:none;
padding:15px 25px;
cursor:pointer;
font-weight:600;
border-radius:5px;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter{
background:#C9A227;
padding:70px 0;
text-align:center;
}

.newsletter h2{
font-size:42px;
color:#fff;
margin-bottom:15px;
}

.newsletter p{
color:#fff;
max-width:700px;
margin:auto;
margin-bottom:25px;
}

.newsletter form{
display:flex;
max-width:700px;
margin:auto;
gap:10px;
}

.newsletter input{
flex:1;
margin:0;
}

.newsletter button{
background:#0A2240;
}

/* =========================
   CTA
========================= */

.cta{
background:#0A2240;
color:#fff;
text-align:center;
padding:100px 0;
}

.cta h2{
font-size:50px;
margin-bottom:20px;
}

.cta p{
font-size:20px;
max-width:800px;
margin:auto;
margin-bottom:30px;
}

/* =========================
   FOOTER
========================= */

.footer{
background:#06152a;
color:#fff;
padding:80px 0 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-col h3{
color:#C9A227;
margin-bottom:20px;
}

.footer-col p,
.footer-col a{
color:#ddd;
line-height:1.8;
}

.footer-col a:hover{
color:#C9A227;
}

.footer-book-btn{
display:inline-block;
padding:12px 25px;
background:#C9A227;
color:#fff;
border-radius:5px;
font-weight:600;
}

.footer-map{
margin-top:50px;
}

.footer-bottom{
background:#04101f;
padding:20px;
text-align:center;
margin-top:30px;
}

.footer-bottom a{
color:#C9A227;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-btn{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:28px;
z-index:99999;
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

.mobile-toggle{
display:block;
}

.navbar{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:#0A2240;
}

.navbar.show{
display:block;
}

.navbar ul{
flex-direction:column;
padding:20px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.section-title{
font-size:32px;
}

}

@media(max-width:768px){

.top-bar{
display:none;
}

.newsletter form{
flex-direction:column;
}

.hero{
height:80vh;
}

.hero h1{
font-size:34px;
}

.hero-content{
padding:25px;
}

.footer{
text-align:center;
}

}

