/* ================== BASE STYLES ================== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #222;
}

a {
  text-decoration: none;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}


/* ================== COLORS ================== */
.bg-black {
  background-color: #000;
  color: #fff;
}

.bg-gray {
  background-color: #141212;
  color: #fff;
}

.bg-white {
  background-color: #fff;
  color: #000;
}

.icon-white { color: #fff; }
.icon-black { color: #000; }

/* ================== NAVBAR & LOGO ================== */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

/* ================== CARDS ================== */
.card {
  padding: 1rem;
  height: 100%;
}

.card-title {
  font-weight: bold;
}

/* ================== FULL-SCREEN SECTIONS ================== */
.fullscreen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================== COMPANY LOGOS ================== */
.company-logo {
  max-height: 100px;
  margin: 15px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s, filter 0.3s;
}

.company-logo:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ================== DIVIDERS & BOXED HEADERS ================== */
.divider {
  border-top: 6px solid #000;
  width: 200px;
  margin: 40px auto;
}

h1.boxed {
  display: block;
  border: 15px solid #fff;
  padding: 30px 60px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 40px 0;
}

/* ================== ARTICLE STYLING ================== */
.headline-container,
.main-container,
.article-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.headline-container { margin-top: 200px; }
.main-container { margin-top: 150px; margin-bottom: 50px; }
.article-container { max-width: 800px; margin-bottom: 50px; }

.article-container h1 {
  margin-bottom: 0px;
}

.article-container h2 {
  position: relative;
  font-size: 2.1rem;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-container h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #00b7ff;
  margin-top: 5px;
  border-radius: 2px;
}

.article-container h3, 
.article-container h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: bold;
}

.article-container p,
.article-container li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-container li { margin-bottom: 8px; }

.subtitle {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.reading-time {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

/* ================== COOKIE BANNER ================== */
#cookieConsent {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-top: 3px solid #ffd700;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  transition: bottom 0.5s ease, opacity 0.5s ease;
}

#cookieConsent.show { bottom: 0; }

#cookieConsent a { color: #ffd700; text-decoration: underline; }

#cookieConsent button {
  background-color: #ffd700;
  color: #222;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 600px) {
  .headline-container,
  .main-container,
  .article-container {
    margin: 1rem;
  }
}
