@config "../../../tailwind.config.js";
@import "tailwindcss";
@plugin "daisyui" {
  themes: light --default;
}

.button {
  @apply btn;
}
.ghost-word {
  position: absolute;
  font-family: 'dejavu_serifbook', Georgia, serif;
  color: rgba(0, 0, 0, 0.042);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

@keyframes drift-a {
  0%   { transform: translateY(0px) rotate(var(--r)); }
  50%  { transform: translateY(-14px) rotate(var(--r)); }
  100% { transform: translateY(0px) rotate(var(--r)); }
}
@keyframes drift-b {
  0%   { transform: translateY(0px) rotate(var(--r)); }
  50%  { transform: translateY(10px) rotate(var(--r)); }
  100% { transform: translateY(0px) rotate(var(--r)); }
}
@keyframes drift-c {
  0%   { transform: translateY(0px) rotate(var(--r)); }
  40%  { transform: translateY(-8px) rotate(var(--r)); }
  100% { transform: translateY(0px) rotate(var(--r)); }
}

.hero-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-inner {
  background: #ffffff;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem 4rem;
}

.hero-brand {
  font-family: 'dejavu_serifbook', Georgia, serif;
  font-size: clamp(4rem, 18vw, 14rem);
  color: #0c0b09;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 10;
  margin-bottom: 0.2em;
  text-decoration: none;
}

.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: rgba(12, 11, 9, 0.38);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  margin-bottom: 2.4rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.cta-primary {
  background: #0c0b09;
  color: #f5ede0;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.18s, transform 0.14s;
}
.cta-primary:hover {
  background: #1a1917;
  transform: translateY(-1px);
}

.cta-ghost {
  background: transparent;
  color: rgba(12, 11, 9, 0.45);
  border: 1px solid rgba(12, 11, 9, 0.18);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.18s, color 0.18s, transform 0.14s;
}
.cta-ghost:hover {
  border-color: rgba(12, 11, 9, 0.4);
  color: rgba(12, 11, 9, 0.85);
  transform: translateY(-1px);
}

/* Auth pages */
.auth-page {
  position: relative;
  min-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0 3rem;
}

.auth-brand {
  font-family: 'dejavu_serifbook', Georgia, serif;
  font-size: 2.25rem;
  color: #0c0b09;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}
.auth-brand:hover { color: #0c0b09; }

.auth-form {
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 10;
}

.auth-form h2 {
  font-family: 'dejavu_serifbook', Georgia, serif;
  font-size: 1.4rem;
  color: #0c0b09;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.auth-field {
  margin-bottom: 1.1rem;
}

.auth-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12, 11, 9, 0.4);
  margin-bottom: 0.35rem;
}

.auth-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(12, 11, 9, 0.2);
  border-radius: 0;
  padding: 0.45rem 0;
  font-size: 1rem;
  color: #0c0b09;
  outline: none;
  transition: border-color 0.18s;
}
.auth-input:focus {
  border-bottom-color: #0c0b09;
  box-shadow: none;
}

.auth-submit {
  margin-top: 2rem;
  width: 100%;
}

.auth-footer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(12, 11, 9, 0.4);
  text-align: center;
  position: relative;
  z-index: 10;
}

.auth-footer a {
  color: #0c0b09;
  text-underline-offset: 3px;
}

/* Language selection */
.lang-page {
  position: relative;
  min-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0 3rem;
}

.lang-meta {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(12, 11, 9, 0.4);
  text-align: center;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 10;
}

.lang-meta strong {
  color: rgba(12, 11, 9, 0.7);
  font-weight: 600;
}

.lang-heading {
  font-family: 'dejavu_serifbook', Georgia, serif;
  font-size: 1.6rem;
  color: #0c0b09;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.lang-grid {
  width: 100%;
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.lang-btn {
  background: transparent;
  color: rgba(12, 11, 9, 0.7);
  border: 1px solid rgba(12, 11, 9, 0.18);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.14s;
}

.lang-btn:hover {
  border-color: #0c0b09;
  color: #0c0b09;
  background: rgba(12, 11, 9, 0.03);
  transform: translateY(-1px);
}
/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-device-width: 320px) and (min-width : 320px) {
  .logo {
    text-align: center;
    line-height: 1.42857143;
    margin: auto;
    font-family: 'dejavu_serifbook';
    border: .03em solid;
  }

  #front-logo {
    width: 100%;
    font-size: 28vw;
    margin-bottom: .1em;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (min-device-width: 480px) and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
  #front-logo {
    font-size: 19vw;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
  #front-logo {
    font-size: 11vw;
  }
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-device-width: 320px) and (min-width : 320px) {
  .sentence {
    font-size: calc(100vw / 10);
    font-weight: inherit;
    text-align: center;
    border-radius: 21px;
    border-style: none;
    padding: 0.3em;
    margin: -0.2em;
  }
  
  .word {
    border-radius: 15px;
    border-color: lightgray;
    border-width: 2px;
    border-style: solid;
    padding: 0.09em;
    margin: 0.02em;
    display: inline-block;
  }

  .punctuation-group {
    display: inline-block;
  }

  .group {
    background-color: whitesmoke;
  }
  
  .hide {
    color: transparent;
  }

  .reveal {
    color: black;
  }

  #marquee-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 1rem;
  }
  
}

/* Extra Small Devices, Phones */
@media only screen and (min-device-width: 480px) and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
  .sentence {
    font-size: calc(100vw / 17);
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1024px) {
  .sentence {
    font-size: calc(100vw / 33);
  }
}

/* Phones in landscape: short viewport height, so size text against
   height as well as width, and tighten spacing, to keep the controls
   on screen without scrolling. */
@media only screen and (orientation: landscape) and (max-height: 500px) {
  .sentence {
    font-size: min(calc(100vw / 30), calc(100vh / 12));
    padding: 0.15em;
    margin: -0.15em;
  }

  #marquee-controls {
    margin-top: 0.25rem;
  }
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *


 */
