@import url('https://fonts.googleapis.com/css2?family=Original+Surfer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Original+Surfer&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Original Surfer", "Open Sans", sans-serif;
}
:root {
    --links-hover: red;
}
.wrapper {
    width: 1140px;
    margin: auto;
}
h1 {
    font-size: 62px;
    font-family: "Original Surfer", sans-serif;
}
h2 {
    font-size: 48px;
    font-family: "Original Surfer", sans-serif;
    line-height: 120%;
}
h3 {
    font-size: 39px;
    font-family: "Original Surfer", sans-serif;
}
h4 {
    font-size: 31px;
    font-family: "Original Surfer", sans-serif;
}
h5 {
    font-size: 25px;
    font-family: "Original Surfer", sans-serif;
}
h6 {
    font-size: 20px;
    font-family: "Original Surfer", sans-serif;
}
p {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    line-height: 160%;
    margin: 24px 0px;
}
a {
    font-family: "Open Sans", sans-serif;
}

/* Start code of header section */
header {
    width: 100%;
    height: 100vh;
    background-color: greenyellow;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
header h2, p {
    color: black;
    font-weight: bolder;
    text-shadow: 10px 10px 15px;
}
nav {
    height: 20vh;
    widows: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigations {
    display: flex;
    justify-content: center;align-items: center;
    
}
.navigations  ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.navigations  ul li a {
    text-decoration: none;
    transition: .4s;
    color: black;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    
}
.navigations  ul li a:hover {
    color: var(--links-hover);
  
}
.menu {
    display: none;
}
main {
    width: 100%;
}
.destinations-section{
    padding: 96px 0px;
    background-color: blue;
    text-align: center;
    background-image: url(../img/destination.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.destinations-section p, h3 {
    color: white;
}
.destinations-section__cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0px;
}
.destinations-section__cards__card {
    width: 300px;
    height: 450px;
    background-color: #002142;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: white;
   
}
.destinations-section__cards__card img {
    width: 100%;
    height: 50%;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 24px;

}
.destinations-section__cards__card a {
    padding: 8px 24px;
    color: white;
    background-color: blue;
    transition: .4s;
    border-radius: 8px;
    text-decoration: none;
}
.destinations-section__cards__card a:hover {
    background-color: rgb(0, 0, 160);
}
.hero-section {
    width: 100%;
    padding: 96px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-section a {
    padding: 16px 32px;
    text-decoration: none;
    transition: .4s;
    color: white;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    border-radius: 16px;
    background-color: blue;
    margin-top: 24px;
}
.hero-section a:hover {
    background-color: rgb(2, 2, 153);
}
.testimonials-section{
    padding: 96px 0px;
    background-color: #15158d;
    text-align: center;
    /*
    background-image: url(../img/destination.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    */
}
.testimonials-section__cards {
    width: 100%;
    margin: 48px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
   
}
.testimonials-section__cards__card {
    width: 350px;
    background-color: #1717a0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;



}
.testimonials-section__cards__card p {
    color: white;
    text-shadow: none;
}
.testimonials-section__cards__card__info img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.testimonials-section__cards__card__info h6 {
    margin-top: 24px;
    color: white;
    font-size: 18px;
   margin: 0;
   
   
}
.testimonials-section__cards__card__info p {
    color: white;
    font-size: 14px;
    margin: 0;
    
}
.call-to-action {
    width: 100%;
    padding: 96px 0px;
    background-color: #002142;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.call-to-action h3 {
    margin-bottom: 24px;
}
.call-to-action  a {
    padding: 16px 32px;
    border-radius: 16px;
    background-color:  #1e1eb4;
    margin-top: 32px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: .4s;
}
.call-to-action  a:hover {
    background-color: #3232cf;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #1c1c91;
    padding: 50px 0;
}
footer p {
    font-size: 18px;
    color: white;
    text-shadow: none;
}
@media (max-width: 600px) {
    .wrapper{
        width: 100%;
        margin: auto;
    }
    .menu {
        display: block;
    }
    .navigations {
        display: none;
    }
    .destinations-section__cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
    }
    .destinations-section__cards__card {
       
        width: 100%;
        
        
    }
    .testimonials-section__cards {
        width: 95%;
        margin: 48px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
       
    }
    .testimonials-section__cards__card {
        width: 100%;
        margin: 24px 0;
    }

  
}
@media (max-width: 960px) {
    .wrapper{
        width: 95%;
    }
    .menu {
        display: block;
    }
    .navigations {
        display: none;
    }
    .destinations-section__cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 48px 0px;
    }
    .destinations-section__cards__card {
        margin: 24px 0px;
        width: 80%;
    }
  
}