@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@200;300;400;600&display=swap');

:root{
    --first-color: hsl(268, 77%, 58%);
  --first-color-dark: hsl(268, 78%, 51%);
  --first-color-light: hsl(268, 100%, 83%);
  --title-color: hsl(0, 0%, 87%);
  --text-color: hsl(0, 0%, 69%);
  --body-color: hsl(200, 12%, 5%);
  --container-color: hsl(200, 10%, 8%);
  --border-color: hsl(0, 0%, 20%);
  --white: #fff;

    --body-font: 'Jost', sans-serif;
  --big-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.5rem;
  --larger-font-size: 1.2rem;
  --large-font-size: 1.25rem;

  /*========== Font weight ==========*/
  --weight-300: 300;
  --weight-400: 400;
  --weight-600: 600;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  input, textarea, button, body{
    font-family: 'Martian Mono', monospace;
    font-size: var(--larger-font-size);
  }
  
  main{
    background-color: var(--white);
    color: var(--white);
  }
  
  input, textarea, button{
    outline: none;
    border: none;
    background-color: transparent;
  }
  
  h1, h2, h3{
    color: var(--white);
    font-weight: var(--weight-600);
  }
  
  ul{
    list-style: none;
  }
  
  a{
    text-decoration: none;
  }
  
  img{
    max-width: 100%;
  }
  .active-link, 
  .nav-link:hover{
color: #6366f1;
  }

  
  /*=============== REUSABLE CSS CLASSES ===============*/
  .container{
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
    margin: 0;
  }
  
  .grid{
    display: grid;
    gap: 1.5rem;
  }
  
  .section{
    padding-block: 6rem;
  }
  
  .section-title{
    font-size: var(--h1-font-size);
    font-weight: var(--weight-400);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .title-center{
    text-align: center;
    margin-bottom: 3rem;
    font-size: var(--h2-font-size);
  }

/**home**/
.home{
    background-image: url('island-1844962.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding-block: 10rem 10rem;
}

.home-container{
  display: flex;
  flex-direction: column;
    align-items: center;
        justify-content: center;
}

.home-title{
    font-size: 5rem;
    line-height: 1.4;
 row-gap: 1.2rem;
 font-weight: 600;
border: 2px solid white;
padding: 0 20px 0 20px;
margin-bottom: 25px;
}

.home-small{
    font-size: var(--large-font-size);
    font-weight: var(--weight-400);
    letter-spacing: 1px;
    justify-content: center;
    display: flex;
    margin-bottom: 95px;
  }

  .home-btn{
        display: block;
        background-color: #2970db;
        border: 2px solid #2970db;
        color: white;
        cursor: pointer;
        padding: 1rem 2rem;
        font-size: var(--large-font-size);
        border-radius: 0.5rem;
        transition: all 0.5s ease;
        text-align: center;
        justify-content: center;
        align-items: center;
  }

  .home-btn1{
    border: 2px solid #6366f1;
    transition: all 0.3s ease;
  }

  .home-btn1:hover{
    border: 2px solid white;
  }


  /**offers**/

  .offers{
    color: black;
    height: 400px;
    border-bottom: 2px solid rgb(230, 229, 229);
  }
  
  .section-title{
    color: black;
    font-size: 30px;
    font-weight: 600;
  }
  .offer-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position:relative;
    top: 25%;
 
  }

  .offer-content1{
    margin: 0 auto;
    position: relative;

  }

.offer-content2{
  position: relative;
  top: 18%;
  margin: 0 auto;
  background-color: #6366f1;
  padding: 25px;
  color: white;
}

/**book-now**/
.book-now-container{
  height: 500px;


  
    display: flex;
    flex-direction: column;
      align-items: center;
          justify-content: center;
  
}

.book-now, .book-now h2{
  color: black;
  margin-top: 30px;
}

.book-now-title{
  margin: 0 auto;
  color: black;
  margin-top: 0;
  font-size: 2.5rem;
}

.book-content2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
 margin: 0 auto;
 column-gap: 7rem;

  margin-top: 100px;
  margin-bottom: 50px;
}

.goa{
  background-image: url('goa.jpg');
  height: 200px;
  width: 300px;
  background-size: cover;
  font-size: var(--h2-font-size);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 500;
  cursor: pointer;
}

.shimla{
  background-image: url('Shimla.jpg');
  height: 200px;
  width: 300px;
  background-size: cover;
  font-size: var(--h2-font-size);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 500;
  cursor: pointer;
}

.maldives{
  background-image: url('maldives.jpg');
  height: 200px;
  width: 300px;
  background-size: cover;
  font-size: var(--h2-font-size);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 4px;
   cursor: pointer;
  font-weight: 500;
}

.book-btn{
  display: block;
  background-color: #2970db;
  border: 2px solid #2970db;
  color: white;
  cursor: pointer;
  padding: 1rem 2rem;
  font-size: var(--large-font-size);
  border-radius: 0.5rem;
  transition: all 0.5s ease;
  text-align: center;
  
  width: 20%;
}

.book-btn:hover{
background-color: transparent;
color: #2970db;
border: 2px solid #2970db;
}

#book-now{
  margin-top: 0;
}

.testimonials{
  background-image: url('back2.jpg');
  background-size: cover;
background-attachment: fixed;
height: 700px;
}

.font-bold1{
  color: #6366f1;
  opacity: 7;
}

.signup{
  background-image: url('peakpx.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.footer-link:hover{
  color: #6366f1;
}