/*=====================================
  HighRange Safari Coming Soon
======================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("background.png") no-repeat center center;
  background-size: cover;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    background-image: url("background.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
}
/* Dark Overlay */

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

/* Main Content */

.content {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 900px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  margin: auto;

  padding: 40px 20px;
}

/* Logo */

.logo {
  display: block;

  width: 420px;

  max-width: 95%;

  height: auto;

  margin: 0 auto 30px auto;
}

/* Adventure Badge */

.tag {
  display: inline-block;

  padding: 10px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  color: #fff;

  font-size: 15px;

  margin-bottom: 25px;
}

/* Heading */

h1 {
  font-size: 68px;

  color: #fff;

  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 25px;

  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

/* Paragraph */

p {
  color: #f3f3f3;

  font-size: 21px;

  line-height: 38px;

  max-width: 850px;

  margin: 0 auto 45px;
}

/* Button */

.btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  background: #0057d9;

  color: #fff;

  padding: 16px 38px;

  border-radius: 60px;

  font-size: 18px;

  font-weight: 600;

  transition: 0.35s;
}

.btn:hover {
  background: #0d6efd;

  transform: translateY(-4px);
}

/* Social */

.social {
  margin-top: 45px;
}

.social a {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  width: 55px;

  height: 55px;

  margin: 8px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(8px);

  color: #fff;

  font-size: 22px;

  text-decoration: none;

  transition: 0.3s;
}

.social a:hover {
  background: #0057d9;

  transform: translateY(-5px);
}

/*=========================
 Tablet
==========================*/

@media (max-width: 991px) {
  .logo {
    width: 330px;
  }

  h1 {
    font-size: 50px;
  }

  p {
    font-size: 18px;

    line-height: 32px;
  }
}

/*=========================
 Mobile
==========================*/

@media (max-width: 767px) {
  body {
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }

  .content {
    padding: 30px 15px;
  }

  .logo {
    width: 250px;

    margin-bottom: 20px;
  }

  .tag {
    font-size: 13px;

    padding: 8px 18px;
  }

  h1 {
    font-size: 36px;
  }

  p {
    font-size: 16px;

    line-height: 28px;

    margin-bottom: 35px;
  }

  .btn {
    padding: 14px 30px;

    font-size: 16px;
  }

  .social {
    margin-top: 35px;
  }

  .social a {
    width: 46px;

    height: 46px;

    font-size: 18px;

    margin: 6px;
  }
}

/* Small Phones */

@media (max-width: 480px) {
  .logo {
    width: 210px;
  }

  h1 {
    font-size: 30px;
  }

  p {
    font-size: 15px;

    line-height: 25px;
  }

  .btn {
    width: 100%;

    justify-content: center;
  }
}
