@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100%;
  font-weight: 200;
}

.coming-soon {
  width: 100vw;
  position: relative;
  background-color: #000;
  color: white;
  padding: 10rem 0;
  min-height: 100vh;
}

input:focus,
textarea:focus,
select:focus, button:focus {
  outline: none;
}

button,
a {
  cursor: pointer;
  text-decoration: none;
  z-index: 111;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  width: 100%;
}

/* Responsive Widths */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}


section.coming-soon {
  background-image: url('/assets/images/glow.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section.coming-soon>div.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: max-content;
  z-index: 1;
}

.coming-soon-title h3 {
  font-size: 16px;
  width: max-content;
}

@media (min-width: 768px) {
  .coming-soon-title h3 {
    font-size: 24px;
    font-weight: 400;
  }
}

.coming-soon-title h1 {
  font-size: 18px;
  font-weight: 400;
  word-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.coming-soon-title h2 {
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .coming-soon-title h2 {
    font-size: 100px;
    letter-spacing: -2px;
  }
}

@media (min-width: 1024px) {
  .coming-soon-title h2 {
    letter-spacing: -2.8px;
  }
}

.btn-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 2.5rem;
}

.btn-wrap a {
  border: 1px solid white;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  width: max-content;
}

.btn-wrap a:hover {
  background-color: #000 !important;
}

.glow-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  z-index: 0;
}


/* Logo */
img.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: auto;
  z-index: 10;
}



.glow-image img {
  width: 100%;
  height: 700px;
}

.contact-section {
  background-image: url('/assets/images/glow.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  padding: 5rem 0rem;
  min-height: 100vh;
}

.bottom-rock {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 300px;
  z-index: 1;
}

.bottom-rock img {
  width: 100%;
  height: auto;
}

.form-wrapper {
  border: 1px solid white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0rem;
  width: max-content;
  margin: auto;
}

.left-section {
  /* width: max-content; */
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0rem;
}

.left-section h2 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -2px;
  width: max-content;
}

.left-section p {
  font-size: 14px;
  color: #dcd5d5;
  margin: 10px 0 20px;
  max-width: 60%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding-top: 3rem;
}

.contact-info a.address {
  max-width: 65%;
  text-align: center;
}

.contact-info a {
  display: flex;
  align-items: center;
  color: #dcd5d5;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 14px;
  width: 100%;
}

.contact-info i {
  margin-right: 10px;
  color: #dcd5d5;
  width: 20px;
  text-align: center;
}

.contact-info a:hover {
  text-decoration: underline;
}

.right-section .contact-form-container {
  width: 100%;
  margin: auto;
  max-width: 400px
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
}

form input,
form textarea {
  background: white;
  color: black;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bdbdbd;
  font-size: 14px;
  min-height: 55px;
  font-family: 'Sora', sans-serif;
}

form button {
  padding: 12px;
  background-color: #0128ff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background-color: #001db3;
}

.success-msg {
  color: #00ff94;
  margin-top: 10px;
}

.hidden {
  display: none;
}

/* contact-page */
.contact-card-gradient::before {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 50%;
  transform: translate(50%, 20%);
  width: 80vw;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(rgba(1, 40, 255, 0.3) 10%,
      rgba(1, 40, 255, 0.3) 10%,
      rgba(1, 40, 255, 0.3) 80%,
      rgba(1, 40, 255, 0) 100%);
  filter: blur(80px);
  z-index: 3;
  pointer-events: none;
}



.notifier {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 24px;
  font-size: 14px;
  border-radius: 6px;
  color: #fff;
  background-color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
}

.notifier.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.notifier.success {
  background-color: #22c55e;
}

.notifier.error {
  background-color: #ef4444;
}

input, textarea, button {
  transition: all 0.3s ease;
}

/* Extra Small Devices (phones, portrait) */
@media (max-width: 575.98px) {
  .form-wrapper {
    padding: 1.5rem 1rem;
    width: 90%;
  }

  .left-section h2 {
    font-size: 28px;
  }

  .left-section p {
    font-size: 13px;
    max-width: 90%;
  }

  .contact-info a.address {
    max-width: 90%;
    font-size: 12px;
  }

  .coming-soon-title h2 {
    font-size: 32px;
  }

  .btn-wrap {
    justify-content: center;
  }

  .btn-wrap a {
    font-size: 16px;
  }

  .notifier {
    font-size: 12px;
    padding: 10px 18px;
  }

  .contact-info>div {
    flex-direction: column;
    gap: 0.5rem !important;
  }

  .bottom-rock {
    display: none;
  }

  .contact-section {
    padding: 4rem 0rem;
    padding-top: 7rem;
  }
}

/* Small Devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .form-wrapper {
    padding: 2rem;
    width: 90%;
  }

  .left-section h2 {
    font-size: 36px;
  }

  .coming-soon-title h2 {
    font-size: 48px;
  }
}

/* Medium Devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .form-wrapper {
    flex-direction: column;
  }

  .left-section p {
    max-width: 70%;
  }

  .coming-soon-title h2 {
    font-size: 72px;
  }

  .btn-wrap {
    justify-content: flex-start;
  }
}

/* Large Devices (laptops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .form-wrapper {
    flex-direction: row;
    padding: 2rem 3rem;
  }

  .coming-soon-title h2 {
    font-size: 88px;
  }

  .contact-info a.address {
    font-size: 14px;
  }
}

/* Extra Large Devices (desktops) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .coming-soon-title h2 {
    font-size: 96px;
  }

  .form-wrapper {
    padding: 3rem;
  }
}

/* 2K / 4K Screens and Above */
@media (min-width: 1400px) {
  .coming-soon-title h2 {
    font-size: 100px;
  }

  .form-wrapper {
    max-width: 600px;
  }

  .left-section h2 {
    font-size: 48px;
  }
}