/*
Theme Name: BAVER Theme
Author: Johan
Version: 1.1
*/

/* ── BASE ── */
*,
*::before,
*::after { box-sizing: border-box; }

html,
body { max-width: 100%; overflow-x: hidden; }

img { max-width: 100%; height: auto; }

body {
  margin: 0;
  padding: 0;
  background: #0d1526;
  font-family: 'Inter', sans-serif;
}

/* ── NAV ── */
.site-nav {
  padding: 1.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid #1e3a5f;
}

.site-nav__logo {
  height: 40px;
}

/* ── FOOTER ── */
.site-footer {
  padding: 1.25rem 3rem;
  border-top: 0.5px solid #1e3a5f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__tagline {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #6a84a0;
}

.site-footer__company {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #6a84a0;
}

.site-footer__company a {
  color: #6a84a0;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.site-footer__product {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a84a0;
  text-align: right;
}

.site-footer__product span {
  font-style: italic;
  letter-spacing: 0.06em;
  color: #8aa8d4;
  text-transform: none;
}

/* ── PAGE LAYOUT ── */
.page-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: calc(100vh - 120px);
}

/* ── LEFT COLUMN ── */
.col-left {
  border-right: 0.5px solid #1e3a5f;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem;
}

/* ── RIGHT COLUMN ── */
.col-right {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.col-right__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8aa8d4;
}

.body-text {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 2.2;
  color: #8aa8d4;
}

/* ── HERO ── */
.hero-heading {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #dcd8cf;
}

.hero-heading em {
  font-style: italic;
  color: #6a84a0;
}

/* ── POST ── */
.wp-block-latest-posts__post-title {
	display: none;
}
/* ── PRIVACY ── */
.privacy-block {
	max-width: 600px;
    padding: 2rem;
    margin: 2rem;
}

/* ── PRODUCT BLOCK ── */
.product-block__label {
  margin: 0rem 0rem 0.3rem 0rem;
}

.product-block__name {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dcd8cf;
  margin: 0rem 0rem 0.3rem 0rem;
}

.product-block__status {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dcd8cf;
}

.product-block__subtitle {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #8aa8d4;
  margin-top: 0.75rem;
}

.product-block__desc {
  margin: 1.5rem 0 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: #8aa8d4;
}
/* ── PRIVACY ── */
.privacy {
	max-width: 600px;
	max-width: 80%;
	padding; 2rem;
	}

/* ── SIGNUP ── */
.signup-section {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signup-form {
  display: flex;
  border: none;
  margin-bottom: 0.75rem;
}

.signup-form__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  font-size: 11px;
  font-family: inherit;
  letter-spacing: 0.03em;
  color: #dcd8cf;
}

.signup-form__btn {
  background: #dcd8cf;
  color: #0d1526;
  border: none;
  padding: 13px 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.signup-note {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #6a84a0;
}

/* ==========================================================================
   RESPONSIVE — Surfplatta (<= 900px)
   ========================================================================== */
@media (max-width: 900px) {
  .site-nav {
    padding: 1.25rem 1.5rem;
  }

  .site-nav__logo {
    height: 42px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .col-left {
    padding: 2.75rem 1.5rem;
    border-right: none;
    border-bottom: 0.5px solid #1e3a5f;
    gap: 2rem;
  }

  .col-right {
    padding: 3rem 1.5rem 2.75rem;
    gap: 2.5rem;
  }

  .site-footer {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .site-footer > div {
    text-align: center;
  }
}

/* ==========================================================================
   RESPONSIVE — Mobil (<= 600px)
   ========================================================================== */
@media (max-width: 600px) {
  .site-nav {
    padding: 1rem 1.25rem;
  }

  .site-nav__logo {
    height: 36px;
  }

  .col-left {
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }

  .col-right {
    padding: 2.25rem 1.25rem 2rem;
    gap: 2rem;
  }

  .signup-form {
    flex-direction: column;
    border: none;
  }

  .signup-form__input {
    border: none;
    padding: 14px 16px;
    width: 100%;
  }

  .signup-form__btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 14px 18px;
  }

  .site-footer {
    padding: 1rem 1.25rem;
  }
}


	
