/* src/style.css */
:root {
  --bauhaus-red: #E23746;
  --bauhaus-blue: #1D3557;
  --bauhaus-yellow: #FFB703;
  --bauhaus-black: #000000;
  --bauhaus-white: #FFFFFF;
  --bauhaus-grey: #F1FAEE;
  --apple-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--apple-font);
  background-color: var(--bauhaus-white);
  color: var(--bauhaus-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAVIGATION / LANG SWITCHER */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  mix-blend-mode: difference;
  color: white;
}

.logo {
  font-weight: 900;
  letter-spacing: -2px;
  font-size: 24px;
}

.lang-switcher {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.lang-switcher a {
  color: inherit;
  text-decoration: none;
  margin-left: 20px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.lang-switcher a.active, .lang-switcher a:hover {
  opacity: 1;
}

/* TYPOGRAPHY */
h1 {
  font-size: 12vw;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 6vw;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

h3 {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  word-wrap: break-word;
}

.module-card h3 {
  font-size: 24px; /* Fixed size to prevent overflow in grid */
  margin-bottom: 10px;
}

p {
  font-size: 1.5vw;
  max-width: 600px;
  margin-bottom: 2em;
  font-weight: 400;
  color: #333;
}

.highlight-red { color: var(--bauhaus-red); }

/* SECTIONS */
section {
  min-height: 100vh;
  padding: 10vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #eee;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

/* HERO */
.hero {
  background-color: var(--bauhaus-white);
  padding-top: 20vh;
}

/* CARDS / MODULES */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  border: 4px solid var(--bauhaus-black);
}

.module-card {
  padding: 40px;
  border: 2px solid var(--bauhaus-black);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.module-card:hover {
  transform: translate(-10px, -10px);
  box-shadow: 10px 10px 0px var(--bauhaus-black);
}

.module-nr {
  font-weight: 900;
  font-size: 60px;
  opacity: 0.2;
}

/* RELENTLESS CTAs */
.cta-block {
  margin-top: 10vh;
  padding: 80px 0;
  text-align: center;
  border-top: 10px solid var(--bauhaus-black);
  background: var(--bauhaus-black);
  color: white;
}

.buy-button {
  display: inline-block;
  padding: 30px 80px;
  background-color: var(--bauhaus-red);
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  text-decoration: none;
  letter-spacing: -1px;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.buy-button:hover {
  transform: scale(1.05);
}

/* TIMER */
.timer-container {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 24px;
}

.timer-label {
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.7;
}

/* PRICE DISPLAY */
.current-price {
  font-size: 64px;
  font-weight: 900;
  display: block;
}

.price-increase-warning {
  color: var(--bauhaus-red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  h1 { font-size: 15vw; }
  h2 { font-size: 8vw; }
  p { font-size: 24px; max-width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 80px 20px; }
  .buy-button { width: 100%; padding: 20px; font-size: 24px; }
}

/* OBJECTION FORM */
.objection-form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  border: 4px solid var(--bauhaus-black);
  padding: 40px;
  background: var(--bauhaus-white);
}

.objection-form-container label {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.objection-form-container textarea {
  width: 100%;
  min-height: 150px;
  border: 2px solid var(--bauhaus-black);
  padding: 15px;
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  margin-bottom: 20px;
}

.objection-form-container button {
  background: var(--bauhaus-black);
  color: white;
  border: none;
  padding: 15px 40px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.objection-form-container button:hover {
  background: var(--bauhaus-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
.nav-link:hover {
  opacity: 0.8;
}
