*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}


html, body{
overflow-x:hidden;
width:100%;
}


body{
background:#f8f7f2;
color:#333;
}


/* NAVBAR */

header{

position:fixed;
top:0;
left:0;
width:100%;

display:flex;
align-items:center;
justify-content:space-between;

padding:20px 8%;

background:rgba(20,50,20,0.65);
backdrop-filter:blur(12px);

z-index:1060;

}


.logo{

font-size:25px;
font-weight:700;
color:white;

}


.logo i{

color:#d4af37;
margin-right:8px;

}



nav a{

color:white;
text-decoration:none;

margin:0 15px;

font-weight:500;

transition:.3s;

}



nav a:hover{

color:#d4af37;

}



.book-btn{

background:#d4af37;
color:white;

padding:12px 25px;

border-radius:30px;

text-decoration:none;

font-weight:600;

}



.book-btn:hover{

background:#b89020;

}


.menu-toggle{

display:none;

background:none;
border:none;
color:white;
font-size:26px;
cursor:pointer;
z-index:1100;

}


/* HERO */


.hero{

height:100vh;

background:

linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),

url("images/okavango delta.jpeg");


background-size:cover;
background-position:center;


display:flex;
align-items:center;
justify-content:center;


text-align:center;

color:white;

}



.hero-content{

max-width:900px;

padding:20px;

}



.hero h1{

font-size:60px;

line-height:1.2;

margin-bottom:25px;

}



.hero p{

font-size:20px;

margin-bottom:35px;

}



.btn{

display:inline-block;

background:#d4af37;

padding:15px 35px;

border-radius:40px;

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;

}



.btn:hover{

background:#1b5e20;

}




/* GENERAL SECTION */


section{

padding:90px 10%;

}



.section-title{

text-align:center;

font-size:40px;

color:#1b5e20;

margin-bottom:20px;

}



.subtitle{

text-align:center;

margin-bottom:50px;

color:#666;

}




/* SERVICES */


.cards{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}



.card{

background:white;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}



.card:hover{

transform:translateY(-10px);

}



.card i{

font-size:45px;

color:#d4af37;

margin-bottom:20px;

}



.card h3{

color:#1b5e20;

margin-bottom:15px;

}




/* ABOUT */


.about{

background:#1b5e20;

color:white;

display:flex;

justify-content:center;

}



.about h2{

font-size:40px;

margin-bottom:25px;

}



.about p{

max-width:800px;

line-height:1.8;

}



.about ul{

margin-top:25px;

list-style:none;

}



.about li{

margin:12px 0;

}

/* GALLERY */
.gallery{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}



.gallery img{
width:100%;
aspect-ratio:1/1;
height:auto;
object-fit:cover;
object-position:center top;
border-radius:15px;
transition:.4s;
display:block;
}



.gallery img:hover{
transform:scale(1.05);
}


/* Per-photo crop adjustments */
.gallery img:nth-of-type(1){
object-position:center 30%;
}

.gallery img:nth-of-type(2){
object-position:center 20%;
}


/* CALL TO ACTION */
.cta{
background:
linear-gradient(
rgba(0,0,0,.5),
rgba(0,0,0,.5)
),
url("images/boat cruises.jpeg");
background-size:cover;
background-position:center;
text-align:center;
color:white;
}

.cta h2{
font-size:45px;
margin-bottom:20px;
}

.cta p{
font-size:20px;
margin-bottom:30px;
}

/* CONTACT */
.contact-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-box p{
margin:20px 0;
}

form{
display:flex;
flex-direction:column;
}

input,
textarea{
padding:15px;
margin-bottom:15px;
border:none;
background:#eee;
border-radius:10px;
font-size:15px;
width:100%;
}

textarea{
height:150px;
resize:none;
}

form button{
background:#1b5e20;
color:white;
padding:15px;
border:none;
border-radius:30px;
cursor:pointer;
font-size:16px;
}

form button:hover{
background:#d4af37;
}

/* FOOTER */
footer{
background:#111;
color:white;
text-align:center;
padding:40px;
}

footer h3{
color:#d4af37;
margin-bottom:15px;
}

/* ANIMATION */
.card,
.gallery img,
.about,
.cta{
animation:fadeUp .8s ease;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}

}

/* ============================= */
/* MOBILE (tablets and below)     */
/* ============================= */
@media(max-width:900px){

header{
flex-wrap:wrap;
padding:15px 6%;
width:100%;
}

.logo{
font-size:20px;
}

.menu-toggle{
display:block;
}

nav{
position:fixed;
top:0;
right:0;

width:70%;
max-width:280px;
height:100vh;

background:rgba(15,40,15,0.97);
backdrop-filter:blur(12px);

display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:center;
gap:22px;

padding:40px;

transform:translateX(100%);
transition:transform .35s ease;

z-index:1050;
}

nav.open{
transform:translateX(0);
}

nav a{
margin:0;
font-size:17px;
white-space:nowrap;
}

.book-btn{
padding:10px 18px;
font-size:13px;
order:1;
}

.nav-overlay{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:rgba(0,0,0,.5);
z-index:1040;
}

.nav-overlay.open{
display:block;
}

.hero{
padding-top:140px;
height:auto;
min-height:100vh;
}

.hero-content{
padding:15px;
width:100%;
}

.hero h1{
font-size:32px;
word-wrap:break-word;
}

.hero p{
font-size:16px;
}

section{
padding:70px 6%;
}

.contact-box{
grid-template-columns:1fr;
gap:30px;
}

.section-title{
font-size:32px;
}

}


/* ============================= */
/* SMALL PHONES                   */
/* ============================= */
@media(max-width:480px){

.logo{
font-size:18px;
}

nav{
width:80%;
padding:30px;
}

nav a{
font-size:16px;
}

.hero h1{
font-size:26px;
}

.hero p{
font-size:14px;
}

.btn{
padding:12px 25px;
font-size:14px;
}

.section-title{
font-size:26px;
}

.cta h2{
font-size:30px;
}

.cta p{
font-size:16px;
}

.card{
padding:25px;
}

.gallery{
grid-template-columns:1fr;
}

.gallery img{
aspect-ratio:4/3;
}

form button{
font-size:14px;
}

}
