html {
  font-size: 16px;
}

body {
  min-width: 320px;
}


/* =========================
   Custom Font
========================= */
@font-face {
  font-family: "TillDisplay";
  src: url("./fonts/AbrilFatface.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* =========================
   CSS Variables (Dark Theme)
========================= */
/*:root {
  --bg: #0b0b0b;
  --surface: #111111;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --accent: #c1121f; 
  --border: #222222;
}*/

:root {
  --bg: #000000;
  --surface: #0c0c0c;

  --text: #f5f5f5;
  --muted: #9ca3af;

  /* Till Lindemann inspired */
  --till-gold: #c9b27c;
  --till-gold-hover: #e0c98f;

  --border: #2a2a2a;
}


/* =========================
   Base Reset
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* =========================
   Typography
========================= */

/* Lindemann font – color + style */
.hero h1,
nav a,
nav strong,
section h2 {
  color: var(--till-gold);
}

/* Till-style outlined elements */
.card,
.local {
  background: rgba(255, 255, 255, 0.02);
}
input,
textarea {
  border: 1px solid var(--till-gold);
  background: transparent;
}



/* Navigation links only */
nav a {
  font-family: "TillDisplay", Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

nav a:hover {
  opacity: 1;
  color: var(--till-gold);
}

/* Keep logo/title consistent if desired */
nav strong {
  font-family: "TillDisplay", Inter, sans-serif;
  letter-spacing: 0.15em;
}

/* Section titles ONLY */
section h2 {
  font-family: "TillDisplay", Inter, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  border-left: 3px solid var(--till-gold);
  padding-left: 14px;
}


h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  color: var(--muted);
}

/* =========================
   Links & Buttons
========================= */
a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/*.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn:hover {
  background: #e11d2e;
}*/

.btn {
  background: transparent;
  color: var(--till-gold);
  border: 1px solid var(--till-gold);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--till-gold);
  color: #000;
}


/* =========================
   Layout
========================= */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(16px, 4vw, 28px);
}

/* =========================
   Header / Nav
========================= */
header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

/* =========================
   Sticky Shrinking Header
========================= */

.site-header {
  width: 100%;

}


.site-header .container {
  max-width: 1800px; /* wider than rest of site */
  padding-left: clamp(24px, 6vw, 64px);
  padding-right: clamp(24px, 6vw, 64px);
}



/* =========================
   Logo
========================= */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 140px;          /* Controls visible size */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Slightly larger on desktop */
@media (min-width: 768px) {
  .logo img {
    height: 180px;
  }
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

nav strong {
  font-family: "TillDisplay", sans-serif;
  letter-spacing: 0.12em;
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 12px;
}

/* Mobile menu override */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    width: 100%;
    padding-top: 24px;
  }
}

@media (min-width: 768px) {
  nav {
    flex-wrap: nowrap;
  }

  nav ul {
    width: auto;
    padding-top: 0;
  }
}


/* =========================
   Hero
========================= */
.hero-content {
  max-width: 720px;
}

.hero {
  padding: clamp(60px, 10vw, 90px) 0;
}

.hero p {
  max-width: 620px;
  margin: 20px 0 32px;
  font-size: 1.1rem;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
}

/* Hero headline */
.hero h1 {
  font-family: "TillDisplay", Inter, sans-serif;
  letter-spacing: 0.06em;
  /*text-transform: uppercase;*/
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* =========================
   Sections
========================= */
section {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  padding: clamp(48px, 8vw, 70px) 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* =========================
   Cards
========================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
}

.card p {
  font-size: 0.95rem;
}

/* =========================
   Pricing
========================= */
.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

@media (max-width: 480px) {
  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-item strong {
    margin-top: 4px;
  }
}

.pricing-item strong {
  color: var(--text);
}

.pricing-item:last-child {
  border-bottom: none;
}

/* =========================
   Local Section
========================= */
.local {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}

/* =========================
   Forms
========================= */
form {
  max-width: 520px;
  width: 100%;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  /*color: #6b7280;*/
  color: var(--till-gold);
  opacity: 0.6;
}



/* =========================
   Footer
========================= */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 28px 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-size: clamp(0.8rem, 3vw, 0.85rem);
}

/* =========================
   Mobile
========================= */
/*@media (max-width: 600px) {
  h1 {
    font-size: 2.1rem;
  }

  nav ul {
    gap: 14px;
  }
}*/

@media (max-width: 480px) {
  .hero h1 {
    letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --till-gold: #e6d39a;
  }
}

/* =========================
   Mobile Navigation
========================= */

.nav-toggle {
  background: none;
  border: 1px solid var(--till-gold);
  color: var(--till-gold);
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 18px;
    padding: 24px 0;
  }

  .nav-menu.active {
    display: flex;
  }
}


/* THANK YOU PAGE */

.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 70vh;
  position: relative;
}

.thank-you-content {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.thank-you-content .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--till-gold);
}

.thank-you-bg-text {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 6rem;
  font-weight: 700;
  opacity: 0.05;
  text-transform: lowercase;
  pointer-events: none;
}

.thank-you-image {
  flex: 1;
  text-align: right;
}

.thank-you-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .thank-you-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .thank-you-image {
    text-align: center;
    width: 70%;
    max-width: 300px;
    height: auto;
  }

  .thank-you-bg-text {
    left: 50%;
    transform: translateX(-50%);
  }
}
