/* =========================================================
   GLOBAL RESET & BASE STYLES
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   NAVIGATION BAR
   ========================================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 20vh;
    padding: 1rem 3%;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: white;
    border-bottom: 1px solid rgb(179, 214, 243);
    backdrop-filter: blur(30px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.Logo {
    width: 6rem;
    border-radius: 10px;
}

/* Desktop navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    transition: 0.1s ease-out;
}

.nav-links li a:hover {
    border-bottom: 2px solid brown;
    background-color: aliceblue;
    padding: 1rem;
}

/* =========================================================
   MOBILE SIDEBAR MENU
   ========================================================= */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;

    width: 250px;
    height: 100vh;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;

    padding: 2rem;
    list-style: none;

    background-color: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(30px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sidebar li a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    transition: 0.1s;
}

.sidebar li a:hover {
    padding: 1rem;
    background-color: rgb(115, 115, 139);
}

.sidebar li a:active{
    padding: 1rem;
    background-color: rgb(115, 115, 139);
}

/* Hamburger menu icon */
.menu {
    margin: 1.3rem;
}



 .main{
     height: 70vh;
     background-image: url(../Images/aboutfooter.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

 }


 /* Hero text container */
.hero-section {
    width: 100%;
    position: absolute;
}


/* Hero headline */
.p1 {
    margin-top: 10%;
    margin-left: 5%;
    font-size: 2rem;
    font-weight: 1000;
   font-family: 'Times New Roman', Times, serif;
    font-weight: 100%;
    color: rgb(233, 233, 247);
    text-transform: capitalize;
}



.destinations{
  
    display: grid;
}
.ghana{
    margin: 2%;
    background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
    
}


.ghanasect,.togosect,.beninsect,.ivorysect,.ugandasect,.zanzibarsect,.kenyasect{
    display: grid;

}
 


.wrapper{
   max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
    
}


.wrapper button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(70, 71, 71);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}



.button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev{
    left: 5px;
}
#next{
    right: 5px;
}


.image-container{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}

.image-container .carousel{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}



.carousel img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}










.ghana h1{
    font-size: 30pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;


}
.ghana p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}


.containment{
    display: inline-flex;
   
}

.gh-locals{
   width: 500px;
    margin: 5%;
    margin-top: 10%;
}


.gh-locals h3{
   text-align: right;
    font-size: 20pt;
    text-decoration: underline;

 
}

.gh-locals p{
  text-align: right;
   font-size: 15pt;
   font-style: normal
}








.destinations1{
    display: grid;
}



.togo{
    margin: 2%;
    background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
    
   
}
.togo h1{
 font-size: 30pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;

}
.togo p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}
.togolocals{
   width: 500px;
    margin: 5%;
    margin-top: 10%;
}

.wrapper2{
     max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
}
.wrapper2 button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(1, 48, 54);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}


.wrapper2 button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev2{
    left: 25px;
}
#next2{
    right: 25px;
}


.image-container2{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}
.image-container2 .carousel2{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}
.carousel2 img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}

.containment{
    display: inline-flex;
   
}


.togolocals h3{
    text-align: right;
    font-size: 20pt;
    text-decoration: underline;
 
}

.togolocals p{
   text-align: right;
   font-size: 15pt;
   font-style: normal;
}












.destinations2{
    display: grid;
}

.benin{
    margin: 2%;
      background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
   
}
.benin h1{
    font-size: 29pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    width: 200px;
}
.benin p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}


.beninlocals{
    margin: 5%;
    margin-top: 10%;
    width: 500px;
}



.beninlocals h3{
    text-align: right;
    font-size: 20pt;
    text-decoration: underline;
 
}

.beninlocals p{
   text-align: right;
   font-size: 15pt;
   font-style: normal;
}




.wrapper3{
     max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
}
.wrapper3 button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(1, 48, 54);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}


.wrapper3 button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev3{
    left: 25px;
}
#next3{
    right: 25px;
}


.image-container3{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}
.image-container3 .carousel3{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}
.carousel3 img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}




.destinations3{
    display: grid;
}




.ivory-coast{
    margin: 2%;
    background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
    
}


.ivory-coast h1{
    font-size: 29pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    width: 300px;
}
.ivory-coast p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}

.ivorylocals{
    margin: 5%;
    margin-top: 10%;
    width: 500px;
}



.ivorylocals h3{
    text-align: right;
    font-size: 20pt;
    text-decoration: underline;
 
}

.ivorylocals p{
   text-align: right;
   font-size: 15pt;
   font-style: normal;
}




.wrapper4{
     max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
}
.wrapper4 button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(1, 48, 54);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}


.wrapper4 button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev4{
    left: 25px;
}
#next4{
    right: 25px;
}


.image-container4{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}
.image-container4 .carousel4{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}
.carousel4 img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}






.destinations4{
    display: grid;
}




.zanzibar{
    margin: 2%;
    background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
    
}
.zanzibar h1{
    font-size: 29pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    width: 100px;
}
.zanzibar p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}

.zanzibarlocals{
    margin: 5%;
    width: 500px;
    margin-top: 10%;
}

.zanzibarlocals h3{
    text-align: right;
    font-size: 20pt;
    text-decoration: underline;
 
}

.zanzibarlocals p{
   text-align: right;
   font-size: 15pt;
   font-style: normal;
}



.wrapper5{
     max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
}
.wrapper5 button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(1, 48, 54);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}


.wrapper5 button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev5{
    left: 25px;
}
#next5{
    right: 25px;
}


.image-container5{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}
.image-container5 .carousel5{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}
.carousel5 img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}







.destinations5{
    display: grid;
}



.uganda{
    margin: 2%;
    background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
  
}
.uganda h1{
    font-size: 29pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    width: 200px;
}
.uganda p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}

.ugandalocals{
    margin: 5%;
    width: 500px;
    margin-top: 10%;
}

.ugandalocals h3{
    text-align: right;
    font-size: 20pt;
    text-decoration: underline;
 
}

.ugandalocals p{
   text-align: right;
   font-size: 15pt;
   font-style: normal;
}



.wrapper6{
     max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
}
.wrapper6 button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(1, 48, 54);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}


.wrapper6 button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev6{
    left: 25px;
}
#next6{
    right: 25px;
}


.image-container6{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}
.image-container6 .carousel6{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}
.carousel6 img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}




.destinations6{
    display: grid;
}


.kenya{
    margin: 2%;
    background-color: rgb(180, 175, 175);
    border-radius: 10px;
    padding: 2rem;
}
.kenya h1{
    font-size: 29pt;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    width: 100px;
}
.kenya p{
    font-size: 15pt;
    font-style: italic;
    padding: 1rem;
}



.kenyalocals{
    margin: 5%;
    margin-top: 10%;
    width: 500px;
}

.kenyalocals h3{
    text-align: right;
    font-size: 20pt;
    text-decoration: underline;
 
}

.kenyalocals p{
   text-align: right;
   font-size: 15pt;
   font-style: normal;
}




.wrapper7{
     max-width: 500px;
    width: 100%;
    height: 400px;
    background: rgb(121, 111, 111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left:2%;
    position: relative;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    
}
.wrapper7 button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    background-color: rgb(1, 48, 54);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 15pt;
    transition: all 0.3s linear;
    z-index: 100;
    cursor: pointer;
}


.wrapper7 button:active{
    transform: scale(0.94) translateY(-50%);;
}


#prev7{
    left: 25px;
}
#next7{
    right: 25px;
}


.image-container7{
    height: 300px;
    max-width: 370px;
    width: 100%;
    overflow :hidden;
    
}
.image-container7 .carousel7{
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
   

}
.carousel7 img{
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
}























.footer{
    margin-top: 30px;
    width: 100%;
    text-align: center;
    padding: 7px;
    background-color: rgb(36, 29, 21);

}

.footer h4{
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 600;
    color: blanchedalmond;
    
}

.footer p{
    color: blanchedalmond;

}


.p5{
    margin-right: 85%;
    color: blanchedalmond;

}


.Logo2{
    width: 6rem;
    border-radius: 10px;
  margin-left:80%;
  margin-top: -10%;
    
}













@media(max-width:720px ){

    .hideOnMobile{
        display: none;
    }

    .sidebar li a:hover{
     padding: 0.3rem;
     background-color: rgb(115, 115, 139);     

}
.menu{
   
    margin-right: 1.2rem;
    height: 20px;
    width: 20px;
}
.sidebar{
    width: 300px;
    height: 300vh;
}


 }





@media(max-width:800px ){

nav{
    width: 60rem;
}

.main{
        width: 60rem;
    }

    .footer{
        width: 60rem;
    }


.ghana,.togo,.benin,.ivory-coast,.uganda,.zanzibar,.kenya{
    width: 40rem;
    margin-left: 25%;
}

.containment{
    display: grid;
}

 }










 
 @media(min-width:970px ){

    .menu{
        display: none;
    
}
}