/* Discover Elomme Page  */
#page-getcard {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 4rem;
}

.getcard-inner {
  max-width: 480px;
  width: 100%;
}

.getcard-hero {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.getcard-sub {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: rgba(216, 216, 216, 0.55);
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.55s forwards;
}

.getcard-section {
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.75s forwards;
}

.getcard-section-label {
  font-family: 'Domine', serif;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.getcard-section-text {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 2;
  color: rgba(216, 216, 216, 0.7);
}

.ritual-line {
  font-family: 'EB Garamond', serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(245, 245, 245, 0.65);
  line-height: 2;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.95s forwards;
}

.getcard-price {
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.price-amount {
  font-family: 'Domine', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text);
}

.price-sub {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  color: rgba(207, 207, 207, 0.35);
  margin-top: 0.4rem;
}

.getcard-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.btn-get {
  font-family: 'Domine', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: none;
  padding: 1.1rem 2.8rem;
  cursor: pointer;
  transition: background 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  display: none;
  margin: 0 auto;
}

.btn-get:hover {
  background: var(--accent);
}

.btn-ghost {
  font-family: 'Domine', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  padding: 1.1rem 2.8rem;
  cursor: pointer;
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.btn-ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* FORM SECTION */
#form-section {
  display: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.form-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 auto 3rem;
}

.getcard-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.field-wrap {
  position: relative;
  margin-bottom: 2.8rem;
}

.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
  color: #EAEAEA;
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  padding: 1rem 0 0.8rem;
  outline: none;
  transition: border-color 0.5s ease;
}

.field-input::placeholder {
  color: rgba(245, 245, 245, 0.45);
  font-style: italic;
  font-size: 1.15rem;
}

.field-input:focus {
  border-color: rgba(245, 245, 245, 0.22);
}

.btn-receive {
  font-family: 'Domine', serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: rgba(245, 245, 245, 0.88);
  border: none;
  padding: 1.1rem 3rem;
  cursor: pointer;
  transition: background 0.5s ease;
  margin-top: 1rem;
  width: 100%;
}

.btn-receive:hover {
  background: var(--accent);
}

.getcard-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  animation: fadeIn 1.4s ease forwards;
  margin-top: 2rem;
}

.getcard-success.visible {
  display: flex;
}

.success-line1 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text);
}

.success-divider {
  width: 1px;
  height: 36px;
}

.success-line2 {
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  color: #4ADE80;
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
  letter-spacing: 0.12em;
  font-style: italic;
}

/* ABOUT PAGE */
#page-about {
  justify-content: center;
  align-items: center;
  padding: 7rem 2rem 4rem;
}

.about-inner {
  max-width: 480px;
  text-align: center;
}

.about-title {
  font-family: 'Domine', serif;
  font-size: 0.6rem !important;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.about-body {
  font-family: 'EB Garamond', serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(245, 245, 245, 0.65);
  line-height: 2;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.about-closer {
  font-style: italic;
  color: rgba(207, 207, 207, 0.45);
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.3s forwards;
}

/* CODE PAGE */
#page-code {
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem 4rem;
  text-align: center;
  min-height: 100vh;
}

.code-inner {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.code-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.code-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: 'Domine', serif;
  font-size: 0.88rem;
  letter-spacing: 0.35em;
  text-align: center;
  padding: 1rem 0.5rem;
  outline: none;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: border-color 0.4s ease;
}

.name-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.15); /* More visible border line */
  color: var(--text);
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem; /* Increased size for name input text */
  text-align: center;
  padding: 1rem 0.5rem;
  outline: none;
  margin-bottom: 2.5rem;
  transition: border-color 0.5s ease;
}

.name-input::placeholder {
  color: rgba(245, 245, 245, 0.52); /* Significantly more visible placeholder */
  font-style: italic;
  font-size: 1.25rem; /* Increased size for name placeholder text */
}

.name-input:focus {
  border-color: rgba(245, 245, 245, 0.22);
}

.code-input::placeholder {
  color: var(--accent);
  letter-spacing: 0.25em;
  font-size: 0.72rem;
}

.code-input:focus {
  border-color: rgba(245, 245, 245, 0.22);
}

#btn-continue {
  font-family: 'Domine', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: none;
  padding: 1.1rem 2.8rem;
  cursor: pointer;
  transition: background 0.4s ease;
  width: 100%;
  border-radius: 4px;
}

#btn-continue:hover {
  background: var(--accent);
}

/* Instantly hide placeholder text when the user clicks/focuses the input field */
.name-input:focus::placeholder,
.code-input:focus::placeholder,
.field-input:focus::placeholder {
  color: transparent !important;
}

.response-msg {
  display: none;
  text-align: center;
}

.response-msg.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  animation: fadeIn 1.2s ease forwards;
}

.response-line1 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text);
}

.response-line2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(207, 207, 207, 0.42);
}

.response-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.thin-line {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}

.code-thin-line {
  margin-top: -3rem;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2.5rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.2s ease 2s forwards;
  pointer-events: none;
}

.footer-mark {
  font-family: 'Domine', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(245, 245, 245, 0.35);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  #home-mark {
    left: 1.5rem;
    top: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  #page-getcard {
    padding: 5rem 1.5rem 6rem;
  }
}