:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #501b5c;
  --hero-gradient2: #a234ae;
  --footer-bg-color: #dab0fc;
  --link-color: #a234ae;
  --header-bg-color: #dab0fc;
  --font-family: Monaco, 'Menlo', monospace;
  --nav-link-color: #141414;
  --footer-text-color: #000000;
  --header-text-color: #ffffffff;
}

html {
  overflow-x: hidden;
}

body {
  background-image: radial-gradient(circle at center center, rgba(217, 217, 217, 0.05) 0%, rgba(217, 217, 217, 0.05) 15%, rgba(197, 197, 197, 0.05) 15%, rgba(197, 197, 197, 0.05) 34%, rgba(178, 178, 178, 0.05) 34%, rgba(178, 178, 178, 0.05) 51%, rgba(237, 237, 237, 0.05) 51%, rgba(237, 237, 237, 0.05) 75%, rgba(138, 138, 138, 0.05) 75%, rgba(138, 138, 138, 0.05) 89%, rgba(158, 158, 158, 0.05) 89%, rgba(158, 158, 158, 0.05) 100%), radial-gradient(circle at center center, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 6%, rgb(255, 255, 255) 6%, rgb(255, 255, 255) 12%, rgb(255, 255, 255) 12%, rgb(255, 255, 255) 31%, rgb(255, 255, 255) 31%, rgb(255, 255, 255) 92%, rgb(255, 255, 255) 92%, rgb(255, 255, 255) 97%, rgb(255, 255, 255) 97%, rgb(255, 255, 255) 100%);
  background-size: 42px 42px;
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

}


h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}

p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 40px 0;
  scroll-margin-top: 70px;
}


section h2 {
  text-align: center;
  font-style: italic;

}

section img {
  border-radius: 20px;
  outline: 3px solid var(--hero-gradient1);
  outline-offset: 6px;
  box-shadow: 0 0 0 3px var(--hero-gradient2);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: underline !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}

.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}

.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}

.error_page {
  min-height: 70vh;
}


.footer-news {
  background: var(--footer-bg-color);
  border-top: 3px solid var(--link-color);
  padding: 2.5rem 0 1rem;
  position: relative;
  overflow: hidden;
  color: var(--footer-text-color);

}

.footer-news a {
  color: var(--link-color);
  text-decoration: none;
  position: relative;
}

.footer-news a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--link-color);
  transition: width 0.3s ease;
}

.footer-news a:hover::after {
  width: 100%;
}

.footer-newsletter h3 {
  color: var(--footer-text-color) !important;
  margin-bottom: 1rem;
  font-weight: 600;
}

.newsletter-form input {
  padding: 0.6rem 1rem;
  border: 1px solid var(--link-color);
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.6rem 1.5rem;
  border: none;
  background: var(--link-color);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(102, 143, 106, 0.2);
}

.footer-social .social-icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--link-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid var(--link-color);
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.footer-social .social-icon:hover {
  transform: scale(1.2) rotate(-10deg);
  background: var(--link-color);
  color: #fff;
}

.footer-news::after {
  right: 10px;
  top: auto;
  bottom: 10px;
  left: auto;
}

/* Responsive */
@media (max-width: 767px) {

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}



.navbar {
  background-color: var(--header-bg-color) !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hero-section {
  padding: 115px 0 25px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.gradient-bg {
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.06) 0px, rgba(0, 0, 0, 0.06) 19px, transparent 19px, transparent 38px, rgba(0, 0, 0, 0.06) 38px, rgba(0, 0, 0, 0.06) 57px, rgba(0, 0, 0, 0.25) 57px, rgba(0, 0, 0, 0.25) 76px, rgba(0, 0, 0, 0.12) 76px, rgba(0, 0, 0, 0.12) 95px, rgba(0, 0, 0, 0.03) 95px, rgba(0, 0, 0, 0.03) 114px, rgba(0, 0, 0, 0.26) 114px, rgba(0, 0, 0, 0.26) 133px, rgba(0, 0, 0, 0.23) 133px, rgba(0, 0, 0, 0.23) 152px, transparent 152px, transparent 171px, rgba(0, 0, 0, 0.25) 171px, rgba(0, 0, 0, 0.25) 190px, transparent 190px, transparent 209px, rgba(0, 0, 0, 0.03) 209px, rgba(0, 0, 0, 0.03) 228px, rgba(0, 0, 0, 0.23) 228px, rgba(0, 0, 0, 0.23) 247px, rgba(0, 0, 0, 0.03) 247px, rgba(0, 0, 0, 0.03) 266px), repeating-linear-gradient(135deg, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.09) 3px, rgba(0, 0, 0, 0.09) 6px, rgba(0, 0, 0, 0.03) 6px, rgba(0, 0, 0, 0.03) 9px, rgba(0, 0, 0, 0.09) 9px, rgba(0, 0, 0, 0.09) 12px, rgba(0, 0, 0, 0.09) 12px, rgba(0, 0, 0, 0.09) 15px, rgba(0, 0, 0, 0.06) 15px, rgba(0, 0, 0, 0.06) 18px, rgba(0, 0, 0, 0.01) 18px, rgba(0, 0, 0, 0.01) 21px, rgba(0, 0, 0, 0.02) 21px, rgba(0, 0, 0, 0.02) 24px, transparent 24px, transparent 27px, rgba(0, 0, 0, 0.02) 27px, rgba(0, 0, 0, 0.02) 30px, transparent 30px, transparent 33px, rgba(0, 0, 0, 0.02) 33px, rgba(0, 0, 0, 0.02) 36px, rgba(0, 0, 0, 0.06) 36px, rgba(0, 0, 0, 0.06) 39px, rgba(0, 0, 0, 0.07) 39px, rgba(0, 0, 0, 0.07) 42px, rgba(0, 0, 0, 0.1) 42px, rgba(0, 0, 0, 0.1) 45px, rgba(0, 0, 0, 0.01) 45px, rgba(0, 0, 0, 0.01) 48px, rgba(0, 0, 0, 0.01) 48px, rgba(0, 0, 0, 0.01) 51px, rgba(0, 0, 0, 0.1) 51px, rgba(0, 0, 0, 0.1) 54px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.11) 0px, rgba(0, 0, 0, 0.11) 19px, transparent 19px, transparent 38px, rgba(0, 0, 0, 0.16) 38px, rgba(0, 0, 0, 0.16) 57px, rgba(0, 0, 0, 0.17) 57px, rgba(0, 0, 0, 0.17) 76px, rgba(0, 0, 0, 0.29) 76px, rgba(0, 0, 0, 0.29) 95px, rgba(0, 0, 0, 0.26) 95px, rgba(0, 0, 0, 0.26) 114px, rgba(0, 0, 0, 0.28) 114px, rgba(0, 0, 0, 0.28) 133px, rgba(0, 0, 0, 0.22) 133px, rgba(0, 0, 0, 0.22) 152px, transparent 152px, transparent 171px, rgba(0, 0, 0, 0.19) 171px, rgba(0, 0, 0, 0.19) 190px, transparent 190px, transparent 209px, rgba(0, 0, 0, 0.29) 209px, rgba(0, 0, 0, 0.29) 228px, rgba(0, 0, 0, 0.29) 228px, rgba(0, 0, 0, 0.29) 247px), repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.29) 0px, rgba(0, 0, 0, 0.29) 19px, transparent 19px, transparent 38px, rgba(0, 0, 0, 0.2) 38px, rgba(0, 0, 0, 0.2) 57px, rgba(0, 0, 0, 0.03) 57px, rgba(0, 0, 0, 0.03) 76px, rgba(0, 0, 0, 0.26) 76px, rgba(0, 0, 0, 0.26) 95px, rgba(0, 0, 0, 0.06) 95px, rgba(0, 0, 0, 0.06) 114px, rgba(0, 0, 0, 0.29) 114px, rgba(0, 0, 0, 0.29) 133px, rgba(0, 0, 0, 0.19) 133px, rgba(0, 0, 0, 0.19) 152px, transparent 152px, transparent 171px, rgba(0, 0, 0, 0.11) 171px, rgba(0, 0, 0, 0.11) 190px, transparent 190px, transparent 209px, rgba(0, 0, 0, 0.1) 209px, rgba(0, 0, 0, 0.1) 228px, rgba(0, 0, 0, 0.04) 228px, rgba(0, 0, 0, 0.04) 247px), linear-gradient(0deg, rgb(80, 27, 92), rgb(162, 52, 174));
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}

/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(in srgb,
      var(--header-bg-color) 65%,
      transparent) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}

.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(in srgb,
      var(--header-bg-color) 95%,
      transparent) !important;
}

.nav-item.dropdown>.nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown>.nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}


@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown>.nav-link .arrow {
    margin-left: 7px;
  }

  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover>.nav-link .arrow {
    transform: rotate(-135deg);
  }

  .nav-item.dropdown:hover>.dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 1199px) {
  .nav-item.dropdown>.nav-link .arrow {
    padding: 4px;
  }
}


.floating-rounded-navbar {
  background-color: var(--header-bg-color) !important;
  position: fixed !important;
  top: 15px !important;
  left: 7px !important;
  right: 7px !important;
  width: calc(100% - 11px) !important;
  z-index: 2000;
  border-radius: 21px;
  transition: all 0.3s ease;
}


@media (max-width: 1199.98px) {
  .floating-rounded-navbar .navbar-collapse {
    top: 85px !important;
  }
}

.navbar-brand {
  margin-right: 0 !important;
}



.contact-container {
  width: 500px;
  margin: 40px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}

.contact-container h2 {
  color: black !important;
}

@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: var(--hero-gradient2);
  margin-bottom: 10px;
}

.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: var(--hero-gradient2);
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}