*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f8fc;
    color:#333;
}

/* ================= HEADER ================= */

header{

    position:fixed;
    width:100%;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);
    z-index:999;

}

.logo{

display:flex;
align-items:center;

}

.logo img{

width:70px;
margin-right:15px;

}

.logo h2{

color:white;

}

.logo p{

color:#8fd8ff;
font-size:14px;

}

nav ul{

display:flex;
list-style:none;

}

nav ul li{

margin-left:25px;

}

nav ul li a{

text-decoration:none;
color:white;
transition:.3s;

}

nav ul li a:hover{

color:#59d8ff;

}

.booking{

background:#00b8ff;
padding:10px 22px;
border-radius:30px;

}

/* ================= HERO ================= */

.hero{

height:100vh;

background-image:
linear-gradient(rgba(0,45,80,.55),rgba(0,45,80,.55)),
url("image/wakatobi 1.png");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

color:white;

}

.hero-content{

max-width:700px;

padding:20px;

}

.hero h3{

font-size:25px;

letter-spacing:3px;

margin-bottom:15px;

}

.hero h1{

font-size:65px;

margin-bottom:20px;

}

.hero p{

font-size:22px;

margin-bottom:35px;

}

.btn{

background:#00b8ff;

padding:15px 40px;

color:white;

text-decoration:none;

border-radius:40px;

font-weight:bold;

}

.btn:hover{

background:#008bc2;

}

/* ================= ABOUT ================= */

.about{

padding:80px 10%;

text-align:center;

}

.about h2{

font-size:35px;

margin-bottom:20px;

color:#004c80;

}

.about p{

max-width:900px;

margin:auto;

line-height:1.8;

}

/* ================= CARD ================= */

.highlight{

padding:80px 10%;

background:white;

}

.highlight h2{

text-align:center;

margin-bottom:40px;

color:#004c80;

}

.cards{

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.card{

width:320px;

background:white;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.15);

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.card img{

width:100%;

height:220px;

object-fit:cover;

}

.card h3{

padding:20px;

color:#004c80;

}

.card p{

padding:0 20px 25px;

}

/* ================= CTA ================= */

.cta{

background:#00b8ff;

padding:70px;

text-align:center;

color:white;

}

.cta h2{

margin-bottom:20px;

font-size:35px;

}

.cta p{

margin-bottom:30px;

}

.cta a{

background:white;

padding:15px 40px;

text-decoration:none;

color:#004c80;

border-radius:30px;

font-weight:bold;

}

/* ================= FOOTER ================= */

footer{
    background:#003b64;
    color:white;
    padding:30px 8%;
}

.footer{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

footer h3{
    margin-bottom:10px;
}

footer p{
    line-height:1.8;
}

.copy{
    text-align:center;
    margin-top:20px;
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

header{

flex-direction:column;

}

nav ul{

margin-top:15px;

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

}