@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --bg1:#151828;
    --bg2:#181f34;
    --body:#959DCC;
    --brand:#FFAB76;
    --white:#fff;
}
body{
    font-family: "inter",'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--body);
    line-height: 1.8;
    background-color: var(--bg1);
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Times New Roman', Times, serif;
    color: var(--white);
}
a{
    color: var(--body);
    text-decoration: none;
    transition: all 0.4s ease;
}
a:hover {
    color: var(--brand);
}

/* ---- arrow aimation ---- */

.link-more {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    left: 1px;
}
.link-more .icon {
    transition: all 0.4s ease;
}
.link-more:hover .icon {
    transform:translateX(18px);
}


img{
    width: 100%;
}
section{
    padding-top: 150px;
    padding-bottom: 150px;
}

/* intro */

.intro {
    margin-bottom: 60px;
}
.intro h1 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.intro h6 {
    color: var(--brand);
}
.intro p {
    max-width:450px;
    margin: auto;
}
.cta-btns{
    margin-top: 60px;
}

/* navbar */
.navbar{
    background: linear-gradient(to right, #181f34, rgba(27,31,45,0.0));
}
.navbar .navbar-nav .nav-link.active{
    color: var(--brand);
}
.navbar-brand{
    font-family: "Dela Gothic One",'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 32px;
}
/* hero */

#main {
    min-height: 100vh;
    display: flex;
    background-position: center;
    background-size: cover;
    align-items: center;
    position: relative;
    overflow: hidden;

}
video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: -100;
}

#main p{
    margin-top: 24px;
    margin-bottom: 24px;
}

.btn {
    padding: 16px 36px;
    transition: all 0.4s ease;
    border-radius: 5px;
}

.btn-brand {
    background-color: var(--brand);
}
.btn-brand:hover {
    background-color: transparent;
    color: var(--brand);
    border-color:var(--brand) ;
}
.btn-outline-brand{
    background-color: transparent;
    color: var(--brand);
    border-color: var(--brand);
}
.btn-outline-brand:hover{
    background-color: var(--brand);
}

/*------ about ---------*/

#about {
   position: relative;
}
#about::after {
    content:"";
    width: 25%;
    height: 100%;
    background-color: var(--brand);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#about h6 {
    color: var(--brand);
}

#about h1 {
    margin-top: 16px;
    margin-bottom: 24px;
}
#about .signature {
    width: unset;
}

/* service */

#services {
    background: var(--bg2);
}
#services .service .content {
    padding: 32px;
}
#services .service p {
    margin-top: 18px;
    margin-bottom: 18px;
}
.service img {
    margin: 30px;
    max-width: 330px;
    filter:grayscale(100%);
    transition: all 600ms;
}
.service img:hover {
    filter: grayscale(0);
    scale: 1.1;
    border-radius: 10px;
    cursor: pointer;
}

/* milestone */

#milestone {
    background: linear-gradient(to right, rgba(27, 31, 55, 0.8),rgba(27, 31, 55, 0.8)), url(./img/bg-2.jpeg);
    background-size: cover;
    background-position: center;
}
#milestone h1 {
    color: var(--brand);
}

/* features */
#feature{
    background-color: var(--bg1);
}

.feature {
    display: flex;
}
.feature .icon-feature {
    font-size: 36px;
    color: var(--brand);
    line-height: 1;
    margin-right: 16px;
}
.feature p {
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* social links */
.social-links a{
    width: 48px;
    height: 48px;
    background-color: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a:hover{
    background-color: var(--brand);
    color: var(--bg2);
}

/* team */
#team{
    background-color: var(--bg2);
}
.team-member{
    position: relative;
}
.team-member .social-links {
    position: absolute;
    top: 10px;
    right: 30px;
    transition: all 0.4s ease;
    opacity: 0;
}
.team-member:hover .social-links{
    opacity: 1;
}

/* reviews */

#reviews{
    background-color: var(--bg1);
}
.review {
    padding: 32px;
    background-color: var(--bg2);
    position: relative;
}
.review img {
    width: 60px;
    border-radius: 50%;
}
.review .icon{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand);
    color: var(--bg1);
    border-radius: 50%;
    position: absolute;
    right: 32px;
}

/* blog */
#blog{
    background-color: var(--bg2);
}

.blog-post{
    position: relative;
}
.blog-post .date {
   width: 90px;
   height: 90px;
   background-color: var(--brand);
   text-align: center;
   align-items: center;
   position: absolute;
   top: 30px;
   left: 30px;
}
.blog-post .day {
    font-size: 42px;
    line-height: 1;
    font-family: 'Times New Roman', Times, serif;
    color: var(--bg1);
}
.blog-post .year{
    color: var(--bg1);
} 

/* booking */

#booking{
    background: linear-gradient(to right, rgba(27, 31, 55, 0.8),rgba(27, 31, 55, 0.8)), url(./img/bg-2.jpeg);
    background-size: cover;
    background-position: center;
}
#booking form {
    background-color: var(--bg1);
    padding: 32px;

}
#booking form .form-control {
    background-color: var(--bg2);
    border-radius: 5px;
    margin-top: 8px;
    border-color: var(--bg2);
    border: 2px solid var(--bg2);
    color: var(--body);
}
#booking form input {
    height: 58px;
}
#booking form input:focus {
    box-shadow: none;
    border-left-color: var(--brand);
}
/* footer */
footer {
    padding-top: 160px;
}
footer .social-links {
    display: flex;
}
footer .social-links a{
    margin-right: 5px;
}
.footer-top{
    padding-bottom: 10px;
}
.footer-bootom{
    color: white;
    padding: 10px;
    background-color: var(--brand);
}