/* ==========================================================================
   Global Innovators in Business — shared stylesheet
   Rebuilt from live Wix site (innovator.media). Tokens in docs/reference/design-tokens.md
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --red: #D73D28;
  --dark: #1F232C;
  --field: #F8F8F8;
  --white: #ffffff;
  --max: 1200px;
  --font: 'Montserrat', Arial, Helvetica, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}
.header-logo img { height: 40px; width: auto; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  transition: color .2s;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); }

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 6px 12px;
}
.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  width: 110px;
}
.search-box input::placeholder { color: rgba(255,255,255,.6); }
.social-bar { display: flex; gap: 12px; align-items: center; }
.social-bar img { height: 18px; width: 18px; object-fit: contain; }

.mobile-nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero-section { display: flex; min-height: 560px; }
.hero-content {
  background: var(--red);
  flex: 0 0 36%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-content h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 340px;
}
.btn-watch {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  align-self: flex-start;
  transition: opacity .2s;
}
.btn-watch:hover { opacity: .85; }
.hero-collage { flex: 1 1 64%; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Newsletter ---------- */
.newsletter-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}
.newsletter-section h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 34px;
}
.newsletter-form { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.newsletter-form input {
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: var(--field);
  border: 1px solid var(--dark);
  padding: 0 18px;
  font-family: var(--font);
  font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--red); }
.newsletter-form button {
  margin-top: 6px;
  background: transparent;
  border: 2px solid var(--dark);
  border-radius: 55px;
  padding: 12px 44px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.newsletter-form button:hover { background: var(--dark); color: var(--white); }

/* ---------- About ---------- */
.about-section { display: flex; align-items: stretch; }
.about-image { flex: 1 1 50%; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content {
  flex: 1 1 50%;
  background: var(--red);
  color: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 26px;
}
.about-content p { font-size: 15px; line-height: 1.7; margin-bottom: 18px; text-align: right; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 30px 24px;
  font-size: 13px;
  line-height: 1.8;
}
.site-footer a { color: var(--white); text-decoration: underline; }

/* ---------- Blog index ---------- */
.blog-page { max-width: 920px; margin: 0 auto; padding: 48px 24px 80px; }
.blog-heading { color: var(--red); font-size: 24px; font-weight: 700; margin-bottom: 26px; }
.blog-thumb { position: relative; overflow: hidden; background: #eee; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/9; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%; background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.blog-featured:hover .play-btn, .blog-post-row:hover .play-btn { background: var(--red); }
.play-btn span {
  width: 0; height: 0; margin-left: 5px;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 20px solid #fff;
}
.blog-featured { display: block; border: 1px solid #e6e6e6; margin-bottom: 40px; color: inherit; }
.blog-card-body { padding: 20px 24px 24px; }
.blog-readtime { font-size: 12px; color: #999; display: block; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 21px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.blog-card-body p { font-size: 14px; color: #555; line-height: 1.6; }
.blog-list { display: flex; flex-direction: column; }
.blog-post-row { display: flex; gap: 24px; padding: 28px 0; border-top: 1px solid #eee; color: inherit; align-items: flex-start; }
.blog-post-row .blog-thumb { flex: 0 0 300px; }
.blog-post-row .blog-card-body { padding: 0; }
.blog-post-row h3 { font-size: 18px; }

/* ---------- Single post ---------- */
.post-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.post-back { color: var(--red); font-size: 14px; font-weight: 600; display: inline-block; margin-bottom: 24px; }
.post-title { font-size: 34px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.post-meta { font-size: 13px; color: #888; margin-bottom: 30px; }
.post-video { position: relative; padding-bottom: 56.25%; height: 0; margin-bottom: 34px; }
.post-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-body { font-size: 16px; line-height: 1.8; color: #222; }
.post-body p { margin-bottom: 18px; }
.post-body h2, .post-body h3 { margin: 28px 0 12px; font-weight: 700; }
.post-body ul, .post-body ol { margin: 0 0 18px 22px; }
.post-body li { margin-bottom: 8px; }
.post-body img { margin: 20px 0; border-radius: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; gap: 16px; }
  .main-nav {
    flex-basis: 100%;
    order: 3;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 14px; }
  .mobile-nav-toggle { display: flex; margin-left: auto; }
  .header-right { gap: 12px; }
  .search-box input { width: 80px; }

  .hero-section { flex-direction: column; }
  .hero-content { flex-basis: auto; padding: 48px 28px; }
  .hero-content h1 { font-size: 38px; }
  .hero-collage { min-height: 300px; }

  .about-section { flex-direction: column; }
  .about-content { padding: 48px 28px; }
  .about-content p { text-align: left; }

  .blog-post-row { flex-direction: column; gap: 14px; }
  .blog-post-row .blog-thumb { flex: 1 1 auto; width: 100%; }
}
