@font-face {
  font-family: 'Norwester';
  src: url('https://fonts.cdnfonts.com/s/17879/norwester.woff') format('woff');
}

:root {
  --bg-dark: #000000;
  --text-dark: #ffffff;
  --bg-light: #f4f4f4;
  --text-light: #000000;
  --accent: #ff3e3e; /* Slight red accent for 'warning' feel */
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background 0.3s, color 0.3s;
  line-height: 1.6;
}

body.dark { background: var(--bg-dark); color: var(--text-dark); }
body.light { background: var(--bg-light); color: var(--text-light); }

/* Header & Nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
}

.brand {
  font-family: 'Norwester', sans-serif;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

nav a.active { opacity: 1; border-bottom: 1px solid currentColor; }

/* Main Content */
main {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero { text-align: center; padding-bottom: 4rem; }

h1 {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subtitle { font-size: 1.2rem; opacity: 0.8; max-width: 600px; margin: 0 auto 2rem; }

/* Grid & Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  padding: 2rem;
  border: 1px solid rgba(128,128,128,0.3);
  border-radius: 8px;
  text-align: left;
}

.card h3 { font-family: 'Norwester', sans-serif; margin-bottom: 1rem; }

.card ul { list-style: none; }
.card ul li::before { content: "• "; color: var(--accent); margin-right: 8px; }

/* Buttons */
.actions { display: flex; gap: 1rem; justify-content: center; }

.btn {
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid currentColor;
}

body.dark .btn:not(.outline) { background: #fff; color: #000; }
body.light .btn:not(.outline) { background: #000; color: #fff; }

.btn.outline { background: transparent !important; color: inherit !important; }

/* Coming Soon Specifics */
.centered-main { display: flex; align-items: center; justify-content: center; text-align: center; }
.status-tag { font-size: 0.7rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; }
.loader {
  width: 40px; height: 40px; border: 2px solid currentColor;
  border-top-color: transparent; border-radius: 50%;
  margin: 2rem auto; animation: spin 1s linear infinite;
}

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

/* Footer */
footer { padding: 2rem; text-align: center; font-size: 0.8rem; opacity: 0.5; }

.separator { border: none; border-top: 1px solid rgba(128,128,128,0.2); margin: 2rem 0; }

/* =========================
   LinkedIn Section
========================= */
.linkedin-feature {
  padding: 4rem 1.5rem;
  text-align: center;
}

.section-header h2 {
  font-family: 'Norwester', sans-serif;
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.post-container {
  max-width: 550px; /* LinkedIn posts look best at this width */
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: #fff; /* Ensures post is readable before iframe loads */
}

/* Make it responsive for smaller screens */
@media (max-width: 600px) {
  .post-container {
    max-width: 100%;
  }
}

/* The separator you already had, adjusted for spacing */
.separator {
  border: none;
  border-top: 1px solid rgba(128,128,128,0.2);
  margin: 0 10%;
}
