/* base.scss, color-schema */
:root {
  --image-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 1));
  --text-gradient: linear-gradient(90deg, rgba(248, 93, 112, 1) -80%, rgba(182, 107, 229, 1) 70%, rgba(92, 64, 255, 1) 103%);
  --primary-color: #5C40FF;
  --background-gradient: linear-gradient(-36deg, rgba(31, 0, 209, 0.7) 40%, rgba(182, 107, 229, 1) 150%, rgba(92, 64, 255, 0.9) 80%);
}

/* hero */
.hero__title {
  font-size: 72px !important;
}

 .hero__description {
    margin-bottom: 0;
    font-size: 24px !important;
  }

/* Quote */
blockquote {
    font-size: 18px;
    font-weight: 500;
    }

.project-meta__quote blockquote {
  font-size: 1em;
  border-left: 0px;
  color: #FFFFFF;
  opacity: 0.8;
  margin: 24px;
  padding-left: 0;
  font-style: italic;
}

.project-meta__quote cite {
  font-size: 0.6em;
  color: #FFFFFF;
  }

  /* color_scheme.scss */
.project-meta {
  background: #8581CC;
  /* background: var(--background-gradient);  */
  opacity: 100%;
}

/* project page image*/
.project-info-image {
  background: none;
  padding-top: 0;
  min-height: unset;

  img {
    position: relative;
    object-fit: contain;
    height: 600px;
  }
}

/* project- main page image*/
.project__head {
    background: transparent;
    }

.project__image {
  background-color: transparent;
  box-shadow: none;

  &::after {
    display: none;
  }

  img {
    position: relative;
    object-fit: contain;
    height: auto;
  }
}

/* used on the about page */
.large-text {
  font-size: 18px;
  line-height: 148%;
  font-weight: 400;
  color: rgba(148, 129, 255, 1)
}



/* TOC */
#TableOfContents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#TableOfContents ul ul {
  padding-left: 16px;
  margin-top: 4px;
  font-size: 0.9em;
}

#TableOfContents li {
  margin-bottom: 8px;
}

#TableOfContents a {
  text-decoration: none;
  color: #7058FC;
}

.toc-dropdown {
  margin-bottom: 8px;
}

.toc-dropdown summary {
  cursor: pointer;
  font-weight: 500;
  color: #7058FC;
  /* list-style: none; - nyilacska*/
  user-select: none;
}

.toc-dropdown summary::-webkit-details-marker {
  display: none;
}

.toc-dropdown[open] summary {
  margin-bottom: 8px;
}

.toc-dropdown summary::marker {
  font-size: 0.8em;
}


/* variables.scss */
body {
  font-size: 16px;
  /* font-family: 'Arial', Helvetica, sans-serif */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

h4, h3 {
  margin-bottom: 4px;
}


/* Bekezdések közötti távolság */
p {
  margin-bottom: 16px;
}

h4:not(.sidebar h4),{
  margin-top: 24px;
  margin-bottom: 12px;
  }

h3:not(.sidebar h3),{
  margin-top: 24px;
  margin-bottom: 12px;
}

h2:not(.sidebar h2){
  margin-top: 56px;
  margin-bottom: 12px;
  color: rgba(148, 129, 255, 1)
}

ul li, ol li {
  margin-top: 0px;
  margin-bottom: 0px;
}


/* header.scss */
.header__inner {
  justify-content: space-between;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

