/* ===================================
   Yoopyup Template - Main CSS
   Modern Bold Design
   =================================== */

/* Import Google Fonts */
@import url('https://cdn.weiihou.com/fonts.css?family=RB-Bold:wght@300;400;600;700&family=RB-Regular:wght@400;500;600;700&display=swap');

/* ===================================
   Root Variables & Colors
   =================================== */
:root {
  --primary-color: #FFB84D;
  --primary-dark: #FFA500;
  --primary-light: #FFD580;
  --black-dark: #1a1a1a;
  --black-light: #2a2a2a;
  --white: #FFFFFF;
  --gray-50: #F9F9F9;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-600: #666666;
  --gray-700: #333333;
  --gray-800: #222222;
  --gray-900: #0f0f0f;
  --success: #00CC00;
  --warning: #FFA500;
  --error: #FF0000;
  --error-light: #FF4444;
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}
 
[data-theme="dark"] {
  --white: #0f0f0f;
  --black-dark: #f2f2f2;
  --black-light: #e0e0e0;
  --gray-50: #121212;
  --gray-100: #191919;
  --gray-200: #202020;
  --gray-300: #2a2a2a;
  --gray-400: #cccccc;
  --gray-600: #cccccc;
  --gray-700: #e6e6e6;
  --gray-800: #1a1a1a;
  --gray-900: #fafafa;
}

/* ===================================
   Global Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'RB-Bold', 'Segoe UI', sans-serif;
  color: var(--black-dark);
  background-color: var(--white);
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
}

[data-theme="dark"] body {
  background-color: var(--white);
  color: var(--black-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'RB-Bold', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

button {
  cursor: pointer;
  border: none;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ===================================
   Header & Navigation
   =================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--black-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--primary-color);
}

.top-bar {
  background-color: var(--black-dark);
  border-bottom: 1px solid var(--black-light);
  padding: 0.5rem 0;
  overflow: hidden;
  max-height: 64px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.top-bar a {
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--primary-light);
}

.top-bar.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-12px);
  border-bottom-width: 0;
}

nav {
  display: flex;
  background-image: url('../images/bg.jpg');
  /* background-size: cover; */
  /* background-position: center; */
  background-repeat:repeat;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  overflow: hidden;
  max-height: 120px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

nav.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-12px);
}
 
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  color: var(--white);
  font-size: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img{
  height: 40px !important;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black-dark);
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: inline;
  }
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 0.875rem;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.btn-start {
  background-color: var(--primary-color);
  color: var(--black-dark);
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
}

.btn-start:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .btn-start {
    display: block;
  }
}
 
@media (min-width: 640px) {
  nav {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  nav {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  color: var(--white);
  font-size: 1.5rem;
}
 
[data-theme="dark"] header {
  background-color: #0f0f0f;
}
[data-theme="dark"] .top-bar {
  background-color: var(--black-dark);
  border-bottom-color: var(--black-light);
}
[data-theme="dark"] .articles-section {
  background-color: #111111;
}
[data-theme="dark"] .categories-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .partners-section {
  background-color: #0f0f0f;
}
[data-theme="dark"] .article-card {
  background-color: #161616;
  border-color: #2a2a2a;
}
[data-theme="dark"] .article-title {
  color: var(--black-dark);
}
[data-theme="dark"] .top-bar,
[data-theme="dark"] footer {
  --primary-color: #FFB84D;
  --primary-dark: #FFA500;
  --primary-light: #FFD580;
  --black-dark: #1a1a1a;
  --black-light: #2a2a2a;
  --white: #FFFFFF;
  --gray-50: #F9F9F9;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-600: #666666;
  --gray-700: #333333;
  --gray-800: #222222;
  --gray-900: #0f0f0f;
}
[data-theme="dark"] .nav-menu a {
  color: #e0e0e0;
}
[data-theme="dark"] .menu-toggle,
[data-theme="dark"] .theme-toggle {
  color: #e6e6e6;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.card-body .content-body:first-of-type p:first-of-type {
  color: var(--primary-color);
}
.card-body .content-body:first-of-type p:nth-of-type(2) {
  color: var(--primary-color);
}
.card-body h1 {
  color: var(--primary-color);
}

.site-font, .site-font * {
  font-family: 'RB-Regular','Segoe UI', sans-serif !important;
  background-color:transparent !important;
  color: black;
}
.content-body, .content-body * {
  font-family: 'RB-Regular','Segoe UI', sans-serif !important;
  background-color:transparent !important;
}
.content-body {
  color: var(--black-dark);
  font-size: 1rem;
  line-height: 1.8;
}
.content-body p {
  margin-bottom: 1rem;
}
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  font-family: 'RB-Regular','Segoe UI', sans-serif !important;
  color: var(--black-dark);
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.content-body a {
  color: var(--primary-color);
  text-decoration: none;
}
.content-body a:hover {
  color: var(--primary-dark);
}
.content-body [style*="color: #fff"],
.content-body [style*="color:#fff"],
.content-body [style*="color: #ffffff"],
.content-body [style*="color:#ffffff"],
.content-body [style*="color: rgb(255, 255, 255)"],
.content-body [style*="color:rgb(255,255,255)"],
.content-body [style*="color: white"],
.content-body [style*="color:white"],
.content-body .text-white {
  color: var(--primary-color) !important;
}
.content-body ul,
.content-body ol {
  padding-right: 1.25rem;
  margin-bottom: 1rem;
}
.content-body li {
  margin-bottom: 0.5rem;
}
.content-body blockquote {
  border-right: 4px solid var(--primary-color);
  background-color: var(--gray-100);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}
.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.verify-text,
.verify-text * {
  color: black !important;
}
.publisher-list {
  display: grid;
  gap: 0.75rem;
}
.publisher-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.publisher-image-wrap {
  position: relative;
  display: inline-block;
  border: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
  overflow: visible;
}
.publisher-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--border-radius) - 2px);
}
.publisher-caption {
  position: absolute;
  left: 50%;
  bottom: -0.6rem;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--black-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.verification-callout {
  background-color: var(--primary-light);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 1rem 0;
}

.mobile-menu {
  display: none;
  background-color: var(--white);
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

.mobile-menu .btn-start {
  display: block;
  width: 100%;
  margin-top: 1rem;
}
.mobile-menu .theme-toggle{
  color: var(--gray-700);
}
@media (max-width: 640px) {
  .mobile-menu .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mobile-menu a,
  .mobile-menu .btn-start,
  .mobile-menu .theme-toggle {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--black-dark);
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--black-dark);
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.btn-secondary:hover {
  background-color: var(--gray-100);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 1s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
 .hero-split {
   height: auto;
   background: none;
   margin-top: 2rem;  ;
 }
 .hero-split::before {
   display: none;
 }
 .hero-slider {
   height: 60vh;
 }
 .hero-slider .carousel-inner,
 .hero-slider .carousel-item {
   height: 100%;
 }
 .magazine-slide {
   position: relative;
   height: 100%;
   border-radius: var(--border-radius);
   overflow: hidden;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
 }
 .magazine-slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 .magazine-overlay {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 1rem 1.5rem;
   background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2) 50%, transparent);
   color: var(--white);
 }
 .magazine-meta {
   display: flex;
   gap: 0.5rem;
 }
 .magazine-category,
 .magazine-badge {
   background-color: rgba(255,255,255,0.15);
   border: 1px solid rgba(255,255,255,0.25);
   border-radius: 999px;
   padding: 0.25rem 0.6rem;
   font-size: 0.75rem;
 }
 .magazine-title {
   font-size: 1.25rem;
   margin-top: 0.5rem;
 }
 .magazine-date {
   font-size: 0.9rem;
   opacity: 0.9;
 }
 .hero-vertical-cards {
   height: 60vh;
   overflow: hidden;
 }
 .hero-cards-wrapper {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   animation: heroTicker 18s linear infinite;
 }
 .hero-cards-list {
   list-style: none;
   margin: 0;
   padding: 0;
 }
 .hero-card {
   display: flex;
   gap: 0.75rem;
   align-items: center;
   background-color: var(--white);
   border: 1px solid var(--gray-300);
   border-radius: var(--border-radius);
   padding: 0.75rem;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
 }
 .hero-card-thumb img {
   width: 64px;
   height: 64px;
   object-fit: cover;
   border-radius: var(--border-radius);
 }
 .hero-card-info {
   display: flex;
   flex-direction: column;
   gap: 0.25rem;
 }
 .hero-card-title {
   font-size: 0.95rem;
   color: var(--black-dark);
 }
 .hero-card-date {
   font-size: 0.8rem;
   color: var(--gray-600);
 }
 .hero-card-category {
   font-size: 0.75rem;
   color: var(--primary-color);
 }
 @keyframes heroTicker {
   0% { transform: translateY(0); }
   100% { transform: translateY(-50%); }
 }

/* ===================================
   Articles Section
   =================================== */
.articles-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--black-dark);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: 'RB-Bold', 'Segoe UI', sans-serif;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 1rem;
  background-color: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--black-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover {
  border-color: var(--primary-color);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--gray-200);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 0.75rem;
  border: 2px solid;
}

.badge-false {
  background-color: #FFE5E5;
  color: #CC0000;
  border-color: #FF0000;
}

.badge-misleading {
  background-color: #FFF3CD;
  color: #FF8C00;
  border-color: #FFA500;
}

.badge-partial {
  background-color: #FFF9E6;
  color: #FF8C00;
  border-color: #FFB84D;
}

.badge-fake {
  background-color: #FFE5E5;
  color: #CC0000;
  border-color: #FF0000;
}

.badge-satire {
  background-color: #E5F3FF;
  color: #0066CC;
  border-color: #0099FF;
}

.badge-true {
  background-color: #E5F5E5;
  color: #00AA00;
  border-color: #00CC00;
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 0.75rem;
  background-color: #E5F3FF;
  color: #0066CC;
  border: 1px solid #0099FF;
}

.article-content {
  padding: 1.5rem;
}

.article-date {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.article-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--black-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-title {
  color: var(--primary-color);
}

.article-excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: bold;
  transition: var(--transition);
}

.article-link:hover {
  color: var(--primary-dark);
}

.article-link svg {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.load-more-btn {
  font-family: 'RB-Bold', 'Segoe UI', sans-serif;
  display: block;
  margin: 0 auto;
  background-color: var(--primary-color);
  color: var(--black-dark);
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

.load-more-btn:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

/* ===================================
   Categories Section
   =================================== */
.categories-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition);
  min-height: 250px;
}

.category-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.category-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-bg {
  opacity: 1;
}

.category-content {
  position: relative;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-count {
  font-weight: bold;
  font-size: 1rem;
}

.category-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
  transform: translateX(5px);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--gray-50);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-top: 4px solid var(--primary-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  font-size: 1.25rem;
}

.star.filled {
  color: var(--primary-color);
}

.star.empty {
  color: var(--gray-300);
}

.testimonial-content {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  font-size: 2rem;
}

.testimonial-info h4 {
  color: var(--black-dark);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* ===================================
   Partners Section
   =================================== */
.partners-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
  border-top: 4px solid var(--primary-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.partner-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.partner-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.1);
}

.partner-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
  color: var(--primary-color);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: right;
}

.faq-question:hover {
  background-color: var(--gray-50);
}

.faq-question h3 {
  font-size: 1.125rem;
  color: var(--black-dark);
  margin: 0;
}

.faq-toggle {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-top: 2px solid var(--primary-color);
  color: var(--gray-700);
  line-height: 1.6;
}

.faq-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
}

.faq-contact p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.faq-contact .btn-primary {
  display: inline-block;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
  padding: 4rem 0;
  background-color: var(--white);
  border-top: 4px solid var(--primary-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.stat-badge.false {
  background-color: #FFE5E5;
  color: #CC0000;
}

.stat-badge.misleading {
  background-color: #FFF3CD;
  color: #FF8C00;
}

.stat-badge.partial {
  background-color: #FFF9E6;
  color: #FF8C00;
}

.stat-badge.fake {
  background-color: #FFE5E5;
  color: #CC0000;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black-dark);
}

.stat-progress {
  height: 8px;
  background-color: var(--gray-200);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 0.75rem;
}

.stat-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  transition: width 1.5s ease-in-out;
}

.stat-percent{
  margin-top: .25rem;
  font-size: .875rem;
  color: var(--gray-600);
}

.stat-card.type-false .stat-progress-bar { background-color: var(--error); }
.stat-card.type-misleading .stat-progress-bar { background-color: var(--warning); }
.stat-card.type-partial .stat-progress-bar { background-color: var(--primary-color); }
.stat-card.type-fake .stat-progress-bar { background-color: var(--error-light); }

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-align: center;
}

.cta-section h2 {
  color: var(--black-dark);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--black-dark);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-btn {
  background-color: var(--black-dark);
  color: var(--primary-color);
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.cta-btn:hover {
  background-color: var(--black-light);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

/* ===================================
   Footer
   =================================== */
footer {
  background-color: var(--black-dark);
  color: var(--gray-100);
}

.footer-content {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img{
height: 50px !important;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-dark);
  font-weight: bold;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-100);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--black-dark);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-divider {
  border-top: 1px solid var(--gray-800);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }
  
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  
  .articles-section .container,
  .categories-section .container,
  .hero-split .container,
  .partners-section .container,
  .stats-section .container,
  footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-in {
  animation: slideInFromBottom 0.5s ease-in-out;
}
