*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f5f5f5;
color:#333;
}

/* container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* header */

header{
background:white;
padding:15px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:22px;
font-weight:bold;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
}

.btn{
padding:10px 20px;
border-radius:30px;
border:1px solid #333;
background:white;
cursor:pointer;
}



.scroll-header{
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}


.fade-up{
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}


/* hero */

.hero{
height:600px;
background:url("https://images.unsplash.com/photo-1501785888041-af3ef285b470") center/cover;
display:flex;
align-items:center;
}

.hero-text{
margin-left:10%;
}

.hero h1{
font-size:60px;
color:black;
font-weight:900;
}




/* HERO SLIDER */

.hero{
position:relative;
height:600px;
overflow:hidden;
display:flex;
align-items:center;
}

.hero-slider{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1.5s ease;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide.active{
opacity:1;
}

.hero-text{
position:relative;
z-index:2;
margin-left:10%;
}

.hero-text h1{
font-size:70px;
color:white;
font-weight:bold;
text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* destinations */

.destinations{
display:flex;
gap:30px;
margin-top:60px;
}

.card{
text-align:center;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
}


/* bali */

.bali{
display:flex;
gap:50px;
margin-top:80px;
align-items:center;
}

.bali img{
width:100%;
border-radius:10px;
}

.bali-text h2{
font-size:40px;
margin-bottom:20px;
}


/* video */

.video-section{
margin-top:80px;
}

.video-section img{
width:100%;
border-radius:10px;
}


/* places */

.places{
text-align:center;
margin-top:80px;
}

.countries{
display:flex;
justify-content:center;
gap:50px;
margin-top:40px;
}

.country{
background:white;
padding:20px 40px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* feature */

.feature{
display:flex;
gap:50px;
margin-top:80px;
align-items:center;
}

.feature img{
width:100%;
border-radius:10px;
}


/* blog */

.blog{
margin-top:80px;
text-align:center;
}

.blog-grid{
display:flex;
gap:40px;
margin-top:40px;
}

.blog-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}


/* newsletter */

.newsletter{
margin-top:80px;
background:#eee;
padding:60px;
text-align:center;
}

.newsletter input{
padding:12px;
width:250px;
margin-top:20px;
border-radius:20px;
border:1px solid #ccc;
}


/* footer */

footer{
margin-top:40px;
background:white;
padding:30px;
}

.footer{
display:flex;
justify-content:space-between;
align-items:center;
}