/* ================================================
   Coming Soon Page - Standalone Styles
   No dependencies on theme variables or partials
   ================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-x: hidden;
}

html,
body {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: #19191b;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   Coming Soon Page
   ================================================ */

.coming-soon {
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #19191b;
}

.coming-soon__logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 350px;
  width: 100%;
  margin-bottom: 20px;
}

.coming-soon__logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: fadeInUp 0.8s ease-out;
}

.coming-soon__logo_name {
  margin-top: 10px;
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Intro Section */
.coming-soon__intro {
  text-align: center;
  max-width: 600px;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.coming-soon__intro-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.coming-soon__brand {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #19191b;
  margin-bottom: 15px;
}

/* Title Section */
.coming-soon__content {
  text-align: center;
  max-width: 600px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.coming-soon__title {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #19191b;
  letter-spacing: -1px;
}

/* Main Description */
.coming-soon__main-text {
  text-align: center;
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.coming-soon__description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #848484;
}

/* Help Section */
.coming-soon__help-section {
  text-align: center;
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.coming-soon__help-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #19191b;
  margin-bottom: 15px;
}

.coming-soon__contact-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.coming-soon__contact-link {
  display: inline-flex;
  align-items: center;
  margin: 10px;
  font-size: 16px;
  color: #19191b;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
}


.coming-soon__contact-link:hover {
  color: #ffb951;
  background-color: rgba(255, 185, 81, 0.1);
}

.coming-soon__contact-link i {
  font-size: 18px;
}

/* Newsletter Section */
.coming-soon__newsletter {
  text-align: center;
  max-width: 600px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.coming-soon__newsletter-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #19191b;
  margin-bottom: 8px;
}

.coming-soon__newsletter-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #848484;
}

.coming-soon__form-container {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.coming-soon__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coming-soon__input {
  padding: 14px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border: 2px solid #c4c4c4;
  border-radius: 4px;
  background-color: #ffffff;
  color: #19191b;
  transition: all 0.3s ease;
  outline: none;
}

.coming-soon__input::placeholder {
  color: #848484;
}

.coming-soon__input:focus {
  border-color: #ffb951;
  box-shadow: 0 0 0 3px rgba(255, 185, 81, 0.1);
}

.coming-soon__input:hover {
  border-color: #848484;
}

.coming-soon__button {
  padding: 14px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: #19191b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.coming-soon__button:hover {
  background-color: #ffb951;
  color: #19191b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 25, 27, 0.15);
}

.coming-soon__button:active {
  transform: translateY(0);
}

.coming-soon__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.coming-soon__success-message {
  text-align: center;
  padding: 24px;
  background-color: #f0f9f7;
  border: 1px solid #c8e6e0;
  border-radius: 4px;
  animation: fadeInScale 0.5s ease-out;
}

.coming-soon__success-message p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #19191b;
  margin: 0;
}

.coming-soon__success-message p:first-child {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d7a6e;
}

.coming-soon__social {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.coming-soon__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #19191b;
  color: #ffffff;
  font-size: 22px;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
}

.coming-soon__social-link:hover {
  background-color: #ffb951;
  color: #19191b;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(25, 25, 27, 0.15);
}

.coming-soon__social-link:active {
  transform: translateY(-2px);
}

/* ================================================
   Animations
   ================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 768px) {
  .coming-soon__logo-container {
    min-height: 300px;
    margin-bottom: 20px;
  }

  .coming-soon__logo {
    max-width: 400px;
  }

  .coming-soon__brand {
    font-size: 28px;
  }

  .coming-soon__title {
    font-size: 42px;
  }

  .coming-soon__intro-text {
    font-size: 14px;
  }

  .coming-soon__description {
    font-size: 15px;
  }

  .coming-soon__help-title {
    font-size: 18px;
  }

  .coming-soon__contact-link {
    font-size: 14px;
  }

  .coming-soon__newsletter-text {
    font-size: 15px;
  }

  .coming-soon__newsletter-subtext {
    font-size: 13px;
  }

  .coming-soon__form-container {
    margin-bottom: 30px;
    max-width: 350px;
  }

  .coming-soon__content {
    margin-bottom: 30px;
  }

  .coming-soon__help-section {
    margin-bottom: 30px;
  }

  .coming-soon__newsletter {
    margin-bottom: 15px;
  }

  .coming-soon__social {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 25px 15px;
  }

  .coming-soon__logo-container {
    min-height: 220px;
    margin-bottom: 15px;
  }

  .coming-soon__logo {
    max-width: 280px;
  }

  .coming-soon__intro-text {
    font-size: 13px;
  }

  .coming-soon__brand {
    font-size: 24px;
  }

  .coming-soon__title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .coming-soon__main-text {
    margin-bottom: 25px;
  }

  .coming-soon__description {
    font-size: 13px;
    line-height: 1.6;
  }

  .coming-soon__help-section {
    margin-bottom: 25px;
  }

  .coming-soon__help-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .coming-soon__contact-link {
    font-size: 13px;
    padding: 6px 12px;
  }

  .coming-soon__contact-link i {
    font-size: 16px;
  }

  .coming-soon__newsletter {
    margin-bottom: 15px;
  }

  .coming-soon__newsletter-text {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .coming-soon__newsletter-subtext {
    font-size: 12px;
  }

  .coming-soon__content {
    margin-bottom: 20px;
  }

  .coming-soon__form-container {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .coming-soon__input,
  .coming-soon__button {
    font-size: 14px;
    padding: 12px 14px;
  }

  .coming-soon__success-message p {
    font-size: 14px;
  }

  .coming-soon__social {
    gap: 15px;
  }

  .coming-soon__social-link {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
