/* GENERAL */

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f4f4f4;
color:#333;
scroll-behavior:smooth;
}

/* HEADER */

header{
background:black;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.3);
}

/* LOGO */

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:50px;
width:auto;
}

.logo-text{
font-size:22px;
font-weight:bold;
color:white;
}

/* NAVIGATION */

nav{
display:flex;
}

nav a{
color:white;
margin:0 10px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

nav a:hover{
color:#ddd;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

/* HERO SECTION */

.hero{
height:90vh;

background:
linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
url("images/hero3.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}



.hero h1{
font-size:42px;
margin-bottom:10px;
}

.book-btn{
background:white;
padding:12px 20px;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:4px;
}

/* SECTIONS */

.section{
padding:60px 20px;
max-width:1200px;
margin:auto;
}

.section h2{
text-align:center;
margin-bottom:40px;
}

/* PORTFOLIO GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
border-radius:6px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* PACKAGES */

.packages{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.popular{
border:3px solid gold;
}

.price{
font-size:28px;
font-weight:bold;
margin:10px 0;
}

/* ABOUT */

.about{
text-align:center;
font-size:18px;
line-height:1.6;
}

/* REVIEWS */

.review-box{
background:white;
padding:20px;
margin:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/* BOOKING FORM */

form{
max-width:600px;
margin:auto;
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

input,textarea{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ccc;
border-radius:4px;
font-size:14px;
}

button{
background:black;
color:white;
padding:12px;
border:none;
cursor:pointer;
font-size:16px;
border-radius:4px;
}

button:hover{
background:#333;
}

/* FOOTER */

footer{
background:black;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

/* REVIEW SLIDER */

.review-slider{
position:relative;
max-width:700px;
margin:auto;
text-align:center;
}

.review{
display:none;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.review.active{
display:block;
}

/* ARROWS */

.review-slider .prev,
.review-slider .next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:black;
color:white;
border:none;
font-size:20px;
padding:10px;
cursor:pointer;
}

.review-slider .prev{ left:-50px; }
.review-slider .next{ right:-50px; }

/* DOTS */

.dots{
margin-top:15px;
}

.dots span{
height:10px;
width:10px;
background:#ccc;
display:inline-block;
margin:5px;
border-radius:50%;
cursor:pointer;
}

.dots span.active{
background:black;
}

/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.menu-toggle{
display:block;
}

nav{
display:none;
flex-direction:column;
width:100%;
background:black;
text-align:center;
}

nav a{
padding:12px;
border-top:1px solid #333;
margin:0;
}

nav.active{
display:flex;
}

header{
flex-wrap:wrap;
}

.hero h1{
font-size:30px;
}

.logo{
height:40px;
}

}