/*
Theme Name: WIGA Landing
Theme URI: https://wiga.ro
Author: WIGA
Description: Landing page simplu pentru WIGA, cu mesaj de site în progres.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: wiga
*/

:root {
  --red: #ee1d32;
  --red-dark: #b91324;
  --cream: #fff7e8;
  --wheat: #e3ac43;
  --gold: #f3cf78;
  --brown: #6e421d;
  --ink: #2f1d13;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.landing {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  overflow: hidden;
  padding: clamp(28px, 6vw, 78px);
}

.content {
  position: relative;
  z-index: 2;
}

.status {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 247, 232, 0.55);
  border-radius: 999px;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.subtitle {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 247, 232, 0.86);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.scene {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  justify-self: center;
  filter: drop-shadow(0 34px 48px rgba(58, 13, 10, 0.28));
}

.scene svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blades {
  transform-origin: 0 0;
  animation: spin 18s linear infinite;
}

.wheat path,
.grain ellipse {
  opacity: 0.88;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 820px) {
  .landing {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
    padding: 26px 18px;
  }

  .content {
    text-align: center;
  }

  .status {
    margin-inline: auto;
  }

  .subtitle {
    margin-inline: auto;
  }

  .scene {
    width: min(100%, 520px);
  }
}
