/* ========================================
   DEMOKRATAI THEME - CONSOLIDATED STYLES
   ======================================== */

/* CSS Variables */
:root {
  /* Demokratai color palette from Figma */
  --dk-primary: #4a3aff;
  --dk-primary-hover: #3d2fe6;
  --dk-primary-light: rgba(74, 58, 255, 0.1);

  --dk-secondary: #271cb2;
  --dk-secondary-dark: #1e1589;

  --dk-text-primary: #271cb2;
  --dk-text-body: #4b5563;
  --dk-text-meta: #6b7280;

  --dk-white: #ffffff;
  --dk-gray-50: #f9fafb;
  --dk-gray-100: #f8f9fa;
  --dk-gray-200: #e9ecef;
  --dk-border: rgba(219, 219, 219, 0.3);

  /* Legacy compatibility */
  --dk-black: #000000;
  --dk-gray-light: #f8f9fa;
  --dk-gray: #e9ecef;
  --dk-gray-dark: #6c757d;
}

/* ========================================
   BASE STYLES
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  padding-top: 4.875rem;
  font-family: "Montserrat", sans-serif;
  background-color: var(--dk-white);
  color: var(--dk-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dk-text-primary);
}

a {
  color: var(--dk-primary);
}

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

blockquote {
  border-left: 5px solid var(--dk-primary);
  padding-left: 15px;
  color: var(--dk-text-body);
  background-color: var(--dk-gray-100);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  --bs-btn-bg: var(--dk-primary);
  --bs-btn-border-color: var(--dk-primary);
  --bs-btn-hover-bg: var(--dk-primary-hover);
  --bs-btn-hover-border-color: var(--dk-primary-hover);
  --bs-btn-active-bg: var(--dk-primary-hover);
  --bs-btn-active-border-color: var(--dk-primary-hover);
  --bs-btn-disabled-bg: var(--dk-primary);
  --bs-btn-disabled-border-color: var(--dk-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--dk-text-primary);
  --bs-btn-border-color: var(--dk-text-primary);
  --bs-btn-hover-bg: var(--dk-text-primary);
  --bs-btn-hover-border-color: var(--dk-text-primary);
  --bs-btn-active-bg: var(--dk-text-primary);
  --bs-btn-active-border-color: var(--dk-text-primary);
  --bs-btn-disabled-color: var(--dk-text-primary);
  --bs-btn-disabled-border-color: var(--dk-text-primary);
}

.btn-dark {
  background-color: var(--dk-black);
  border-color: var(--dk-black);
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
}

.btn-outline-dark {
  color: var(--dk-black);
  border-color: var(--dk-black);
}

.btn-outline-dark:hover {
  background-color: var(--dk-black);
  border-color: var(--dk-black);
}

/* ========================================
   HEADER & NAVBAR
   ======================================== */
#top-navbar {
  background-color: #271cb2 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#top-navbar .navbar-brand img {
  max-height: 3.25rem;
  filter: brightness(0) invert(1);
}

#top-navbar .navbar-brand:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Custom Menu Toggle Button */
.dk-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.dk-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dk-menu-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.dk-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   OFFCANVAS MENU
   ======================================== */
#mainOffcanvas {
  max-width: 320px;
  background: #fff;
}

#mainOffcanvas .offcanvas-header {
  background: #271cb2;
  padding: 1.25rem 1.5rem;
}

#mainOffcanvas .offcanvas-title {
  color: #fff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

#mainOffcanvas .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

#mainOffcanvas .btn-close:hover {
  opacity: 1;
}

#mainOffcanvas .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Offcanvas Navigation */
.offcanvas-nav {
  border-bottom: 1px solid var(--dk-border);
}

.offcanvas-nav .nav {
  padding: 0;
}

.offcanvas-nav .nav-item {
  border-bottom: 1px solid var(--dk-border);
}

.offcanvas-nav .nav-item:last-child {
  border-bottom: none;
}

.offcanvas-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.5rem;
  color: #271cb2;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.offcanvas-nav .nav-link i {
  font-size: 20px;
}

.offcanvas-nav .nav-link:hover {
  background: var(--dk-primary-light);
}

.offcanvas-nav .nav-link.active {
  background: linear-gradient(104deg, #271cb2 0%, #4a3aff 100%);
  color: #fff;
}

/* Offcanvas Sections */
.offcanvas-section {
  padding: 1.5rem;
  border-bottom: 1px solid var(--dk-border);
}

.offcanvas-section:last-child {
  border-bottom: none;
}

.offcanvas-section h6 {
  color: var(--dk-text-meta);
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Language Options */
.lang-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--dk-gray-50);
  color: #271cb2;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: var(--dk-primary-light);
  color: #271cb2;
}

.lang-option.active {
  background: #271cb2;
  color: #fff;
}

.lang-option .flag {
  width: 16px;
  height: 11px;
  flex-shrink: 0;
}

/* Offcanvas Social Icons */
.offcanvas-social .social-icons {
  display: flex;
  gap: 12px;
}

.offcanvas-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--dk-gray-50);
  color: #271cb2;
  transition: all 0.2s ease;
}

.offcanvas-social .social-icon:hover {
  background: var(--dk-primary-light);
  transform: translateY(-2px);
}

.offcanvas-social .social-icon svg {
  width: 20px;
  height: 20px;
}

.offcanvas-social .social-icon svg path {
  stroke: #271cb2;
}

/* Offcanvas CTA */
.offcanvas-cta .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  border-radius: 8px;
  background: #4a3aff !important;
  color: #fff !important;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border: none !important;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.offcanvas-cta .btn-primary:hover {
  background: #3d2fe6 !important;
  box-shadow:
    0 6px 8px -1px rgba(0, 0, 0, 0.15),
    0 3px 5px -2px rgba(0, 0, 0, 0.15);
}

/* Header Social Icons (legacy - keeping for other uses) */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.social-icon:hover {
  background-color: var(--dk-gray-light);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   LEFT SIDEBAR NAVIGATION
   ======================================== */
.services-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1040;
  background-color: var(--dk-white);
  border-right: 1px solid var(--dk-border);
  width: 60px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  transition: width 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.services-sidebar:not(.collapsed) {
  width: 250px;
}

.sidebar-toggle {
  position: absolute;
  top: 1rem;
  right: 15px;
  display: flex;
  width: 30px;
  height: 30px;
  padding: 1px 6px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #4a3aff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.services-sidebar:not(.collapsed) .sidebar-toggle {
  right: 1rem;
}

.sidebar-toggle:hover {
  background: #3d2fe6;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.sidebar-toggle svg {
  width: 16px;
  height: 16px;
}

.services-sidebar-content {
  padding: 4rem 0.5rem 2rem 0.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

.services-sidebar:not(.collapsed) .services-sidebar-content {
  padding: 4rem 1rem 2rem 1rem;
}

.services-sidebar h5 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dk-gray-dark);
  transition: opacity 0.3s ease;
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.services-sidebar:not(.collapsed) h5 {
  opacity: 1;
  height: auto;
  margin-bottom: 1.5rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list li {
  margin-bottom: 0;
}

.services-list a {
  display: flex;
  align-items: center;
  height: 56px;
  align-self: stretch;
  border-radius: 4px;
  background: transparent;
  color: #271cb2 !important;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  padding: 10px;
  transition: all 0.3s ease;
  position: relative;
  justify-content: center;
}

.services-sidebar.collapsed .services-list a {
  padding: 0;
  justify-content: center;
}

.services-sidebar:not(.collapsed) .services-list a {
  justify-content: flex-start;
  gap: 8px;
}

.services-list a svg,
.services-list a i {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  font-size: 24px;
}

.services-list a svg path {
  stroke: #271cb2;
}

.services-list span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #271cb2;
  transition:
    opacity 0.3s ease,
    width 0.3s ease;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  overflow: hidden;
  display: none;
}

.services-sidebar:not(.collapsed) .services-list span {
  opacity: 1;
  width: auto;
  display: block;
}

/* Active state - purple gradient with white text/icon */
.services-list a.active {
  background: linear-gradient(104deg, #271cb2 0%, #4a3aff 100%) !important;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
  color: #fff !important;
}

.services-list a.active:hover {
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.services-list a.active svg path {
  stroke: #fff;
}

.services-list a.active span {
  color: #fff;
}

.services-sidebar.collapsed .services-list a::after {
  content: attr(title);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #271cb2;
  color: #fff;
  padding: 8px 16px;
  margin-left: 12px;
  border-radius: 4px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}

.services-sidebar.collapsed .services-list a:hover::after {
  opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.dk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--dk-white);
  background-position: center center;
  background-size: cover;
}

.dk-hero-link {
  display: block;
  text-decoration: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/Assets/Web/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 2;
}

.dk-hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  padding: 2rem 0;
  max-width: 760px;
  margin: 0 auto;
}

.hero-title {
  color: #fff;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 72px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 65px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn-primary {
  display: flex;
  padding: 16px 32px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background: #4a3aff !important;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  color: #fff !important;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  border: none !important;
}

.hero-buttons .btn-primary:hover {
  background: #3d2fe6 !important;
  box-shadow:
    0 25px 30px -5px rgba(0, 0, 0, 0.15),
    0 10px 12px -6px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-outline-light {
  display: flex;
  padding: 18px 34px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  border: 2px solid #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(2px);
  color: #fff !important;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.scroll-arrow {
  display: inline-block;
  animation: bounce 2s infinite;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
  opacity: 1;
}

.scroll-arrow svg {
  width: 14px;
  height: 18px;
  flex-shrink: 0;
}

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.dk-section {
  padding: 80px 74px;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  color: #271cb2;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 24px;
}

.section-description {
  color: #4b5563;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--dk-black);
  color: var(--dk-white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ========================================
   ARTICLE CARDS
   ======================================== */
.articles-section {
  margin-bottom: 4rem;
}

.articles-item-date {
  font-size: 0.75rem;
}

.articles-list {
  margin-bottom: 2rem;
}

.articles-list h4 {
  padding-top: 1rem;
}

.article-categories {
  margin-bottom: 2rem;
}

.article-date {
  font-size: 0.75rem;
  color: #444;
}

.article-image {
  margin-bottom: 2rem;
  text-align: center;
}

.article-card {
  display: flex;
  width: 100%;
  max-width: 384px;
  padding: 1px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid rgba(219, 219, 219, 0.3);
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 16px -1px rgba(0, 0, 0, 0.15),
    0 4px 8px -2px rgba(0, 0, 0, 0.15);
}

.article-card-image {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: var(--dk-gray-light);
  flex-shrink: 0;
}

.article-card-image-placeholder {
  background: linear-gradient(
    135deg,
    var(--dk-gray-light) 0%,
    var(--dk-gray) 100%
  );
  position: relative;
}

.article-card-image-placeholder::after {
  content: "\f5ea";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--dk-gray-dark);
  opacity: 0.3;
}

.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.article-meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.article-meta span {
  color: #6b7280;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.article-title {
  color: #271cb2;
  font-family: "Red Hat Display", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 0;
}

.article-excerpt {
  color: #4b5563;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.article-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a3aff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: gap 0.3s ease;
}

.article-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.article-card:hover .article-cta {
  gap: 12px;
}

.article-card-placeholder {
  opacity: 0.6;
  pointer-events: none;
}

.btn-more-news {
  display: inline-flex;
  padding: 14px 34px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 2px solid #271cb2 !important;
  background: transparent !important;
  color: #271cb2 !important;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.btn-more-news:hover {
  background: rgba(39, 28, 178, 0.05) !important;
  border-color: #271cb2 !important;
  color: #271cb2 !important;
}

.btn-more-news svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Category Filter Links */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.category-link {
  color: var(--dk-text-meta);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.category-link:hover {
  color: var(--dk-primary);
}

.category-link.active {
  color: var(--dk-primary);
  border-bottom-color: var(--dk-primary);
}

/* ========================================
   EVENT CARDS
   ======================================== */
#events.dk-section {
  background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.event-card {
  display: flex;
  width: 100%;
  max-width: 384px;
  padding: 1px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid rgba(219, 219, 219, 0.3);
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 16px -1px rgba(0, 0, 0, 0.15),
    0 4px 8px -2px rgba(0, 0, 0, 0.15);
}

.event-card-header {
  display: flex;
  align-items: start;
  width: 100%;
  justify-content: space-between;
  padding: 24px;
  background: transparent;
}

.event-icon {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(74, 58, 255, 0.1);
}

.event-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.event-date-badge {
  display: flex;
  padding: 4px 12px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 9999px;
  background: rgba(74, 58, 255, 0.1);
  color: #4a3aff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-title {
  color: #271cb2;
  font-family: "Red Hat Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 0;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.event-detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.event-detail span {
  color: #6b7280;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.event-description {
  color: #4b5563;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.event-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a3aff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: gap 0.3s ease;
}

.event-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.event-card:hover .event-cta {
  gap: 12px;
}

.events-cta-card {
  width: 100%;
  padding: 33px;
  border-radius: 12px;
  border: 1px solid rgba(219, 219, 219, 0.3);
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.events-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.events-cta-text {
  flex: 1;
}

.events-cta-button {
  flex-shrink: 0;
}

.events-cta-title {
  color: #271cb2;
  font-family: "Red Hat Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
}

.events-cta-description {
  color: #4b5563;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.btn-events-cta {
  display: inline-flex;
  padding: 12px 32px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #4a3aff !important;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  color: #fff !important;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  border: none !important;
}

.btn-events-cta:hover {
  background: #3d2fe6 !important;
  box-shadow:
    0 6px 8px -1px rgba(0, 0, 0, 0.15),
    0 3px 5px -2px rgba(0, 0, 0, 0.15);
  color: #fff !important;
}

.btn-events-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ========================================
   FEATURES & SERVICES
   ======================================== */
.features-section {
  padding: 5rem 0;
  background-color: var(--dk-gray-light);
}

.feature-card {
  background-color: var(--dk-white);
  padding: 2rem;
  height: 100%;
  text-align: center;
  border: 1px solid var(--dk-border);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dk-black);
}

.feature-card h4 {
  color: var(--dk-black);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--dk-gray-dark);
}

.services-section {
  padding: 5rem 0;
}

.service-block {
  padding: 3rem 0;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  color: var(--dk-black);
  margin-bottom: 1.5rem;
}

.service-content p {
  color: var(--dk-gray-dark);
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  margin-bottom: 1.5rem;
  color: var(--dk-gray-dark);
}

.service-features i {
  color: var(--dk-black);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.service-features strong {
  color: var(--dk-black);
  display: block;
  margin-bottom: 0.25rem;
}

.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--dk-gray-light);
  border: 2px solid var(--dk-black);
  border-radius: 0.5rem;
  position: relative;
}

/* ========================================
   STATS & CTA SECTIONS
   ======================================== */
.stats-section {
  padding: 5rem 0;
  background-color: var(--dk-black);
  color: var(--dk-white);
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--dk-white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--dk-white);
}

.stat-label {
  color: var(--dk-white);
  opacity: 0.8;
}

.cta-section {
  padding: 5rem 0;
  background-color: var(--dk-gray-light);
}

.cta-section h2 {
  color: var(--dk-black);
}

.cta-buttons {
  margin-top: 2rem;
}

/* ========================================
   CONTENT PAGES
   ======================================== */
.breadcrumb-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.breadcrumb {
  font-size: 0.875rem;
}

.about-project {
  margin: 0 auto 4rem auto;
  max-width: 40rem;
}

.search-form {
  margin-bottom: 2rem;
  width: 100%;
}

.search-results {
  margin-bottom: 2rem;
  width: 100%;
}

.full-page {
  margin-bottom: 4rem;
  padding-top: 4rem;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50rem;
  margin: 0 auto 2rem auto;
}

.text-content h1 {
  margin-bottom: 2rem;
}

.text-block {
  margin-bottom: 4rem;
}

.contact-block {
  margin-bottom: 4rem;
}

.pagination-container {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagination-container nav {
  margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.dk-footer {
  background: #271cb2;
  color: var(--dk-white);
}

.dk-footer .container {
  padding: 48px 72px;
}

.footer-logo {
  height: 55px;
  max-height: 55px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.footer-heading {
  color: #fff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
}

.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

.footer-contacts svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contacts span,
.footer-contacts a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--dk-white);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--dk-white);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--dk-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.btn-footer-cta {
  display: inline-flex;
  padding: 10px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #4a3aff !important;
  color: #fff !important;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  border: none !important;
  transition: all 0.3s ease;
}

.btn-footer-cta:hover {
  background: #3d2fe6 !important;
  color: #fff !important;
}

.dk-footer .row {
  margin-bottom: 32px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-copyright p {
  margin: 0;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  overflow: scroll;
  padding-top: 5rem;
  top: 0;
}

#cookieForm {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.cookieText {
  flex-grow: 1;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.cookieText h2 {
  font-size: 1rem;
}

.cookieText label {
  margin-right: 0.5rem;
}

.cookieButtons {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  min-width: 15rem;
}

.cookieButtons .btn {
  margin-bottom: 0.25rem;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
#top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: none;
  z-index: 10;
  cursor: pointer;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-dk-gray {
  color: var(--dk-gray-dark) !important;
}

.bg-dk-gray {
  background-color: var(--dk-gray-light) !important;
}

.border-dk {
  border-color: var(--dk-border) !important;
}

.fw-black {
  font-weight: 900 !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile-first overrides for small screens */
@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    margin-bottom: 48px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline-light {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .dk-section {
    padding: 48px 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .section-description {
    font-size: 16px;
    line-height: 24px;
  }

  .events-cta-card {
    padding: 24px;
  }

  .events-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .events-cta-title {
    font-size: 20px;
    line-height: 28px;
  }

  .events-cta-description {
    font-size: 14px;
    line-height: 20px;
  }

  .dk-footer .container {
    padding: 32px 24px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cookie-consent {
    overflow: visible;
    padding: 2rem;
    top: auto;
  }

  #cookieForm {
    flex-direction: row;
  }

  .cookieText {
    margin-bottom: 0rem;
    font-size: 1rem;
  }

  .cookieText h2 {
    font-size: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body:not(.sidebar-collapsed) {
    padding-left: 250px;
  }

  body,
  body.sidebar-collapsed {
    padding-left: 60px;
    padding-top: 0;
    transition: padding-left 0.3s ease;
  }

  #top-navbar {
    right: 0;
    transition: left 0.3s ease;
  }

  .dk-footer .row {
    text-align: left;
  }
}

@media (max-width: 991px) {
  body {
    padding-left: 0;
    padding-top: 4.5rem;
  }

  .services-sidebar {
    display: none !important;
  }

  .mobile-services {
    border-top: 1px solid var(--dk-border);
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .mobile-services h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .mobile-services .nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-services .nav-link {
    padding: 0.75rem 1rem;
    color: var(--dk-black);
  }

  .mobile-services .nav-link:hover {
    background-color: var(--dk-gray-light);
  }

  .mobile-services .nav-link i {
    margin-right: 0.5rem;
  }

  .dk-footer .row {
    text-align: center;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
  }

  .footer-contacts li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-description {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
