/*=================================
GLOBAL SETTINGS
=================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Montserrat', sans-serif;
    background:#061827;
    color:white;

}


a{
    text-decoration:none;
    color:white;
}





/*=================================
HEADER
=================================*/

.header{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:25px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:10;

}



.logo img{

    width:170px;

}



.header nav{

    display:flex;
    align-items:center;
    gap:35px;

}



.header nav a{

    font-size:14px;
    letter-spacing:1px;
    font-weight:500;
    transition:.3s;

}



.header nav a:hover{

    color:#d4af37;

}



/* BOOK BUTTON */

.book-btn{

    background:#d4af37;
    color:#061827 !important;
    padding:14px 28px;
    border-radius:30px;
    font-weight:600 !important;

}

.book-btn:hover{

    background:white;

}





/*=================================
HERO SECTION
=================================*/


.ngorongoro-hero{

    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;

}



.ngorongoro-hero video{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}





.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(6,24,39,.85)
    );

}





.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:90%;
    max-width:1000px;

}



.hero-content span{

    color:#d4af37;

    font-size:14px;

    letter-spacing:4px;

    font-weight:600;

}



.hero-content h1{


    margin-top:25px;

    font-family:'Cormorant Garamond',serif;

    font-size:80px;

    line-height:1;

    font-weight:600;

}



.hero-content p{

    margin:30px auto;

    font-size:18px;

    font-weight:300;

    max-width:700px;

}





/* BUTTONS */


.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}



.gold-btn,
.outline-btn{


    padding:16px 35px;

    border-radius:40px;

    font-size:14px;

    letter-spacing:1px;

    transition:.4s;


}



.gold-btn{

    background:#d4af37;

    color:#061827;

    font-weight:600;

}



.gold-btn:hover{

    background:white;

}




.outline-btn{

    border:1px solid white;

}



.outline-btn:hover{

    background:white;

    color:#061827;

}







/*=================================
INTRO SECTION
=================================*/


.intro{

    background:#061827;

    padding:100px 8%;

    text-align:center;

}



.container{

    max-width:900px;

    margin:auto;

}



.intro h2{

    font-family:'Cormorant Garamond',serif;

    font-size:55px;

    color:#d4af37;

    margin-bottom:25px;

}



.intro p{

    font-size:18px;

    line-height:1.8;

    color:#ddd;

}






/*=================================
MOBILE
=================================*/


@media(max-width:768px){


.header{

    padding:20px;

}



.header nav{

    display:none;

}



.logo img{

    width:140px;

}



.hero-content h1{

    font-size:48px;

}



.hero-content p{

    font-size:15px;

}



.buttons{

    flex-direction:column;

    align-items:center;

}



.gold-btn,
.outline-btn{

    width:220px;

}


}

/*=========================
NGORONGORO INTRO SECTION
=========================*/


.ngorongoro-intro{

padding:100px 0;
background:#071a2f;
color:white;

}


.ngorongoro-intro .section-header{

text-align:center;
max-width:850px;
margin:auto;
margin-bottom:70px;

}


.ngorongoro-intro .section-header span{

color:#d4af37;
letter-spacing:4px;
font-size:14px;
font-weight:600;

}


.ngorongoro-intro h2{

font-size:45px;
margin:20px 0;
font-weight:700;

}


.ngorongoro-intro p{

color:#cbd5e1;
font-size:17px;
line-height:1.8;

}



.intro-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}



.intro-card{

background:rgba(255,255,255,0.05);
padding:40px 30px;
text-align:center;
border-radius:20px;
border:1px solid rgba(212,175,55,0.25);
transition:.4s;

}


.intro-card:hover{

transform:translateY(-10px);
background:rgba(212,175,55,0.08);

}


.intro-card .icon{

font-size:45px;
margin-bottom:20px;

}


.intro-card h3{

font-size:24px;
margin-bottom:15px;
color:#d4af37;

}



/* MOBILE */

@media(max-width:900px){

.intro-grid{

grid-template-columns:1fr;

}


.ngorongoro-intro h2{

font-size:32px;

}

}

/*=========================
NGORONGORO HIGHLIGHTS
=========================*/


.ngorongoro-highlights{

padding:120px 0;
background:#061525;
color:white;

}


.highlight-wrapper{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}


.highlight-image img{

width:100%;
height:550px;
object-fit:cover;
border-radius:25px;

}



.highlight-content span{

color:#d4af37;
letter-spacing:4px;
font-weight:600;

}


.highlight-content h2{

font-size:42px;
margin:20px 0;

}



.highlight-content p{

color:#cbd5e1;
line-height:1.8;

}



.highlight-list{

margin-top:35px;

}



.highlight-item{

margin-bottom:25px;
padding-left:20px;
border-left:3px solid #d4af37;

}


.highlight-item h4{

color:white;
font-size:20px;

}



.luxury-btn{

display:inline-block;
margin-top:25px;
padding:15px 35px;
background:#d4af37;
color:#071a2f;
font-weight:700;
border-radius:30px;
text-decoration:none;
transition:.3s;

}


.luxury-btn:hover{

background:white;
color:#071a2f;

}



/* MOBILE */

@media(max-width:900px){

.highlight-wrapper{

grid-template-columns:1fr;

}


.highlight-image img{

height:400px;

}


.highlight-content h2{

font-size:32px;

}

}

/*=========================
NGORONGORO GALLERY
=========================*/


.ngorongoro-gallery{

padding:120px 0;
background:#071a2f;
color:white;

}


.ngorongoro-gallery .section-header{

text-align:center;
max-width:850px;
margin:auto;
margin-bottom:70px;

}


.ngorongoro-gallery .section-header span{

color:#d4af37;
letter-spacing:4px;
font-weight:600;

}


.ngorongoro-gallery h2{

font-size:45px;
margin:20px 0;

}



.gallery-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}



.gallery-item{

height:350px;
position:relative;
overflow:hidden;
border-radius:20px;

}



.gallery-item img{

width:100%;
height:100%;
object-fit:cover;
transition:.6s;

}



.gallery-item:hover img{

transform:scale(1.15);

}



.gallery-overlay{

position:absolute;
inset:0;
background:linear-gradient(
transparent,
rgba(0,0,0,.8)
);

display:flex;
align-items:flex-end;
padding:30px;

opacity:0;
transition:.4s;

}



.gallery-item:hover .gallery-overlay{

opacity:1;

}



.gallery-overlay h3{

color:#fff;
font-size:24px;

}



/* MOBILE */

@media(max-width:900px){

.gallery-grid{

grid-template-columns:1fr;

}

.ngorongoro-gallery h2{

font-size:32px;

}

}

/*=========================
NGORONGORO ITINERARY
=========================*/


.ngorongoro-itinerary{

padding:120px 0;
background:#061525;
color:white;

}



.ngorongoro-itinerary .section-header{

text-align:center;
max-width:850px;
margin:auto;
margin-bottom:70px;

}



.ngorongoro-itinerary span{

color:#d4af37;
letter-spacing:4px;
font-weight:600;

}



.ngorongoro-itinerary h2{

font-size:45px;
margin:20px 0;

}



.timeline{

max-width:900px;
margin:auto;

}



.day-card{

display:flex;
gap:35px;
margin-bottom:45px;
align-items:flex-start;

}



.day-number{

min-width:120px;
height:120px;
border-radius:50%;
background:#d4af37;
color:#061525;
display:flex;
align-items:center;
justify-content:center;
font-weight:800;
font-size:20px;

}



.day-content{

background:rgba(255,255,255,.05);
padding:35px;
border-radius:20px;
border:1px solid rgba(212,175,55,.25);
flex:1;

}



.day-content h3{

color:#d4af37;
font-size:26px;
margin-bottom:15px;

}



.day-content p{

color:#cbd5e1;
line-height:1.8;

}



.day-content ul{

list-style:none;
padding:0;
margin-top:20px;

}



.day-content li{

margin-bottom:10px;
color:white;

}



/* MOBILE */

@media(max-width:700px){

.day-card{

flex-direction:column;

}


.day-number{

width:100px;
height:100px;

}


.ngorongoro-itinerary h2{

font-size:32px;

}

}

/*=========================
NGORONGORO CTA SECTION
=========================*/


.ngorongoro-cta{

height:600px;
background-image:url("../images/ngorongoro-cta.jpg");
background-size:cover;
background-position:center;
position:relative;

}



.cta-overlay{

width:100%;
height:100%;
background:rgba(0,0,0,.65);
display:flex;
align-items:center;
justify-content:center;

}



.cta-content{

text-align:center;
max-width:850px;
color:white;

}



.cta-content span{

color:#d4af37;
letter-spacing:5px;
font-size:14px;
font-weight:700;

}



.cta-content h2{

font-size:55px;
margin:25px 0;
font-weight:800;

}



.cta-content p{

font-size:18px;
line-height:1.8;
color:#e2e8f0;
margin-bottom:35px;

}



.cta-btn{

display:inline-block;
padding:18px 45px;
background:#d4af37;
color:#061525;
font-weight:800;
border-radius:40px;
text-decoration:none;
transition:.4s;

}



.cta-btn:hover{

background:white;
transform:translateY(-5px);

}



/* MOBILE */

@media(max-width:700px){

.ngorongoro-cta{

height:500px;

}


.cta-content h2{

font-size:35px;

}


.cta-content p{

font-size:16px;

}

}

/*==================================
BREADCRUMB
==================================*/

.breadcrumb-section{

background:#071A2F;
padding:18px 0;

}

.breadcrumb{

display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;

}

.breadcrumb a{

color:#D4AF37;
text-decoration:none;
font-size:15px;
transition:.3s;

}

.breadcrumb a:hover{

color:#fff;

}

.breadcrumb span{

color:#ffffff;
font-size:15px;

}

.breadcrumb .active{

color:#ffffff;
font-weight:600;

}