/* !Styles: Jan Lukš <jan@luks.sk> */

:root {
  --bg: #003665;
  --bg-deep: #002f59;
  --yellow: #f6c107;
  --line: rgba(255,255,255,.38);
  --muted: rgba(255,255,255,.8);
  --placeholder: rgba(255,255,255,.55);
  --shadow: 0 18px 40px rgba(0,0,0,.22);
  --radius-xl: 30px;
  --radius-lg: 24px;
}

body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.05), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.03), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
}

.--yellow {
  color: var(--yellow);
}

.--bold {
  font-weight: 600;
}

.site-head {
  margin-bottom: 32px;
  text-align: center;
}

.site-head__logo img {
  max-width: 100px;
}

.head__icon {
  max-width: 80px;
  margin-top: 24px;
}
.icon + .head__title {
  margin-top: 24px;
}

.head__excerpt {
  margin-bottom: 32px;
}

.site-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 24px 4%; 
  color: #ffffff;
}
.--object-29 .detail-post {
  text-align: center;
}
.--layout-404 .site-message {
  text-align: center;
}

.site-main__title {
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
}

.site-main__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 7px;
  background: var(--yellow);
  border-radius: 999px;
  margin: 22px auto 32px;
}

.site-main__excerpt {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 24px;
}

.field__label {
  display: block;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  display: none;
}

.field__label strong {
  display: none;
}

form {
  margin-bottom: 32px;
}

textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 26px 28px;
  min-height: 320px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

textarea:focus {
  border-color: rgba(255, 255, 255, 0.60);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

.input {
  box-sizing: border-box;
  width: 100%;
}

input[type="email"] {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 20px 58px 20px 28px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.60);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

/* ── BUTTON ── */
button[type="submit"] {
  display: block;
  width: 100%;
  min-height: 60px;
  background: #f6c107;
  color: #0d2e55;
  border: none;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

button[type="submit"]:active {
  transform: translateY(0);
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .30);
  margin: 32px 0 24px;
}

.site-foot {
  text-align: center;
  font-size: 12px;
}

.field__error {
  margin-top: 6px;
  display: block;
  color: #ff1919;
  font-weight: 600;
}

.flash  {
  display: none;
}

.grecaptcha-badge { 
  visibility: hidden; 
}

.head__title {
  font-weight: 600;
}