@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
::selection {
  background-color: #076a41;
  color: #a6ff00;
  padding: 50px;
}
body {
  height: 100%;
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
}
main {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden auto;
  background: linear-gradient(300deg, #1dba79, #000000, rgb(23, 128, 93));

}
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(1px);
  z-index: -1;
}
/* 7f5b00 */
main header h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 900;
  color: white;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  transition: all 0.5s ease;
  letter-spacing: 2.5px;
  font-size: large;
  text-align: center;
  font-weight: bold;
  font-style: normal;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main header h1 .dose {
  font-size: 16px;
  margin: 0px 2px;
}


.timer {
  position: relative;
  z-index: 1;
  margin: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timer .box {
  width: 80px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.405);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  margin: 10px 5px;
  padding: 25px 10px;
  text-align: center;
}
.timer .box div {
  color: #ffffff;
  font-family: system-ui;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 5px;
}
.timer .box .label {
  color: #f5f5f568;
  font-size: 12px;
  font-weight: 200;
}

.text-coming {
  text-align: center;
  margin: 5px;
}

.coomingtext {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #ffff;
  font-weight: bold;
  font-size: 60px;
}
p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin: 5px 0px;
}
.justCoffee {
  color: #dbfff7;
  font-weight: bold;
  font-size: 30px;
   margin: 20px 0px;
}
.spee {
  color: #dbfff7;
  font-weight: 700;
  font-size: 25px;
  display: block;
  
}
.coffee {
  color: #d5c36a;
}

.coffee {
  background: linear-gradient(
    90deg,
    #ffd644,
    #ff9009,
    #ffd644,
    #ff9009,
    #ff9009
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s linear infinite;
}
@keyframes gradient-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 300% 0%;
  }
}

@keyframes gradient-moves {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 500% 0%;
  }
}



.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 10px;
}

.custom-form {
  position: relative;
  background: rgba(0, 0, 0, 0.405);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px #00000050;
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 400px;
  gap: 15px;
  z-index: 1;
  overflow: hidden;
}

.custom-form::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, #83771455, #076a4199, #00000055);
  animation: rotateBG 10s linear infinite;
  z-index: -1;
  opacity: 0.1;
}

@keyframes rotateBG {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.custom-form input,
.custom-form textarea {
  padding: 15px 15px;
  font-size: 16px;
  border: 1px solid #ffffff33;
  border-radius: 8px;
  outline: none;
  background-color: #ffffff0a;
  color: #ffffffd0;
  width: 100%;
  resize: none;
  transition: all 0.3s ease;
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
  color: #ffffff77;
}

.custom-form input:focus,
.custom-form textarea:focus {
  border-color: #01b68f;
  background-color: #ffffff15;
}

.custom-form button {
  padding: 12px;
  background-color: #00000047;
  color: #ffffffd0;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 0.5px solid #eeeeee2e;
}

.custom-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  transition: all 0.6s ease;
}

.custom-form button:hover {
  background-color: #036142;
}

.custom-form button:hover::before {
  left: 100%;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.links a {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 2px 10px;
  font-size: 20px;
  backdrop-filter: blur(5px);
  background: linear-gradient(180deg, #0000002b, #1a271bc4);
  color: #ffffff78;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border: 0.1px #b2b2b20f solid;
}
.links a:hover {
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, #0000004d, #19212325);
  font-weight: 400;
}

.lt {
  transform: rotate(10deg);
  z-index: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 20%;
  top: 60%;
  animation: lt 10s linear infinite;
}
.lt img {
  width: 150px;
}

.ri {
  z-index: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 35%;
  top: 20%;
  animation: lt 4s linear infinite both;
}
.ri img {
  width: 100px;
}
@keyframes lt {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 576px) {

  main header h1 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2.5px;
  }
  main header h1 .dose {
    font-size: 10px;
    margin: 0px 2px;
  }
  .timer {
    margin: 30px 0px 30px 0px;
  }

  .timer {
    flex-wrap: wrap;
    gap: 5px;
  }

  .timer .box {
    width: 65px;
    padding: 15px 5px;
  }

  .text-coming h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

 
  .lt {
    z-index: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 10px;
    top: 60%;
    animation: lt 4s linear infinite;
  }
  .lt img {
    width: 150px;
  }

  .ri {
    z-index: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    top: 20%;
    animation: lt 5s linear infinite both;
  }
  .ri img {
    width: 100px;
  }
  .links a {
    width: 35px;
    height: 35px;
  }
  .form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin-bottom: 10px;
  }

  .custom-form {
    background: rgba(0, 0, 0, 0.405);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 20px #00000050;
    display: flex;
    flex-direction: row;
    width: 800%;
    height: 50px;
    max-width: 400px;
    gap: 5px;
  }

  .custom-form::before {
    background: linear-gradient(120deg, #00000055, #076a4199, #00000055);
  }

  @keyframes rotateBG {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .custom-form input,
  .custom-form textarea {
    padding: 15px 15px;
    font-size: 16px;
    border: 1px solid #ffffff33;
    border-radius: 8px;
    outline: none;
    background-color: #ffffff0a;
    color: #ffffffd0;
    width: 100%;
    resize: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-align: center;
  }

  .custom-form input::placeholder,
  .custom-form textarea::placeholder {
    color: #ffffff77;
    text-align: center;
  }

  .custom-form input:focus,
  .custom-form textarea:focus {
    border-color: #01b68f;
    background-color: #ffffff15;
  }

  .custom-form button {
    padding: 10px;
    background-color: #00000062;
    color: #ffffff;
    border-radius: 10px;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .custom-form button::before {
    background: linear-gradient(to right, transparent, #ffffff, transparent);
  }
  .custom-form button:hover {
    background-color: #036142;
  }
  p {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
      sans-serif;
    margin: 10px 0px;
    font-size: 20px;
  }
  .justCoffee {
    font-size: 20px;
   
  }
  .spee {
    font-size: 20px;
  }

}
