:root {
  --color-primary: rgb(38 38 38);
  --color-text: rgb(64 64 64);
  --color-border: rgb(229 229 229);
  --font-size: 1rem;
  /* --font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; */
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 20
}

body {
	background-color: #ffffff;
	font-size: var(--font-size);
	color: var(--color-text);
}

.btn {
  background-color: var(--color-primary);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hr {
  border-color: var(--color-border);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}


.text-black { color: #222; }
.text-primary { color: var(--color-primary); }
.text-grey { color: var(--color-text); }
.text-white { color: #fff; }

body, * {
  /* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  /* font-family: var(--font-family); */
  margin: 0;
  padding: 0;

  
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;

}

p {
  font-size: calc(var(--font-size) * 1.15);
  font-weight: 400;
  letter-spacing: 0.015em;
}

.container {
  max-width: 1080px;
}

.border-start { border-left: 1px solid var(--color-border) !important; }
.border-end { border-right: 1px solid var(--color-border) !important; }
.border-top { border-top: 1px solid var(--color-border) !important; }
.border-bottom { border-bottom: 1px solid var(--color-border) !important; }

.pointer-events-none {
  pointer-events: none !important;
}

a.hover-effect:hover {
  color: blue;
}




nav {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  /* background: #21232a url(https://temp-mail.org/js/images/header-bg.jpg) repeat 0 0; */
  /* background-color: rgb(255 255 255 / 80%); */
  /* backdrop-filter: blur(10px); */
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.15s ease;
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(10px);

  & .nav-content {
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    
    & .logo {
      width: 90px;


      /* filter: invert(1); */
    }

    & .menu {
      display: flex;
      gap: 20px;
      list-style: none;
      
      & a { 
        font-size: 0.9rem;
        color: var(--color-primary);
        font-weight: 400;
      }
    }
  }
}






header {

	& .bg-grid {
		width: 100%;
		height: 100%;
		max-width: 1080px;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
		
		-webkit-mask-composite: source-in, xor;
		mask-composite: intersect;
		
		&.bg-grid-left,
		&.bg-grid-right {
			opacity: 0.5;
		}

		&.bg-grid-center {
			-webkit-mask-image:linear-gradient(transparent,black),radial-gradient(130% 50% at 50% 100%,transparent,black);
			mask-image:linear-gradient(transparent,black),radial-gradient(130% 50% at 50% 100%,transparent,black);
		}

		& > div {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			border-color: var(--color-border);
			-webkit-mask-image: linear-gradient(transparent, black);
			mask-image: linear-gradient(transparent, black);
		}

		& .left {
			left: -100%;
		}

		& .right {
			right: -100%;
		}

		& .center {
			left: 0;
		}

		& svg {
			color: var(--color-border);
		}
	}

	& .content {
		min-height: 200px;
	}

	& h1 {
		font-size: 2.5rem;
		font-weight: 500;

		/* background: linear-gradient(74deg, #4285f4 0, #9b72cb 9%, #d96570 20%, #d96570 24%, #9b72cb 35%, #4285f4 44%, #9b72cb 50%, #d96570 56%, #fff 75%, #fff 100%); */
    /* background-size: 300% 100%; */
    /* -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
	}
}





main {

  & .tabs-bar {
    overflow-x: auto;

    &::-webkit-scrollbar {
      display: none;
    }
    
    & a {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--color-primary);
      
      padding: 7px 25px 9px;
      
      border-radius: 100px;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      
      &:last-child {
        margin-right: 0;
      }
      
      &.active {
        background-color: var(--color-primary);
        color: #fff;
      }
    }
  }
}



.main-content {
  gap: 20px;

  & .card-generator {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    flex: 1;
    background: #f9f9f9;

    h2 {
      font-size: 1.2rem;
    }
  }

  & .option-group {
    margin-bottom: 20px;
    gap: 20px;

    &.d-grid {
      grid-template-columns: auto 1fr;
      grid-gap: 15px;
      align-items: center;
    }
    
    & textarea, input {
      width: 100%;
      box-sizing: border-box;
      border: 1px solid var(--color-border);
      border-radius: 8px;
      background-color: #f7f7f7;
      background-color: #fff;
      font-size: 0.94rem;
      overflow: hidden;
      padding: 10px;
    }

    & textarea {
      min-height: 150px;
      resize: vertical;
    }

    & input[type="color"],
    & select {
      /* width: min-content; */
      padding: 8px 12px;
      background-color: #f7f7f7;
      background-color: #fff;
      border: 1px solid var(--color-border);
      border-radius: 8px;
      font-size: 0.94rem;
      appearance: none;
    }
    
    & input[type="color"] {
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 40px;
      /* min-width: 140px; */
      height: 30px;
      padding: 0;
      border-radius: 10px;
    }
    
    & input[type="checkbox"] {
      width: min-content;
    }
  }
  
  & .card-result {
    position: sticky;
    top: 74px;
    flex: 0 0 300px;
    max-width: 300px;
    border: 1px solid var(--color-border);
    border-radius: 10px;

    & #canvas {
      width: 100%;
      height: auto;
    }

    & #qr-download {
      background: #fff;
      color: var(--color-primary);
      border: 1px solid var(--color-border);
      font-weight: 500;
    }
  }
}




main {

  & .card {
    background: #f9f9f9;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
  }

  & .card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;

    &.icon-1 {
      fill: red;
    }
    
    &.icon-2 {
      fill: blue;
    }
    
    &.icon-3 {
      fill: orange;
    }
    
    &.icon-4 {
      fill: #06b9ad;
    }
  }

  & .blog-card img {
    border-radius: 10px;
  }
  
  & .blog-card .blog-title a {
    color: var(--color-primary);
    
    &:hover {
      color: blue;
    }
  }
}

h3,
.heading {
  font-weight: 500;
}

.heading {
  font-size: 2.5rem;
}

.blog-excerpt,
.sub-heading {
  line-height: 1.4rem;
  font-size: var(--font-size);
}


.blog-post {
  font-size: 0.95rem;
  line-height: 1.4rem;

  & img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  & p {
    font-size: 0.9rem;
  }
}


.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  
  & a {
    color: var(--color-primary);
    
    &::after {
      content: " /";
      margin-left: 5px;
    }

    &:last-child {
      &::after {
        content: "";
      }
    }
    
    &:hover {
      color: blue;
    }
  }
}


.sidebar {
  & .latest-list a {
    font-size: 0.94rem;
    margin-bottom: 7px;
  }
}








.faqs-section .accordion-item {
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, .07); */
  margin-bottom: 15px;
}

.faqs-section .accordion-item.active {
  background: #fff;
  color: #333;

  /* & .accordion-item-body {
    display: block;
  } */
}

.faqs-section .accordion-item .accordion-item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: none;
  background: var(--color-primary);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.faqs-section .accordion-item.active .accordion-item-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faqs-section .accordion-item-body {
  padding: 15px 25px;
  box-sizing: border-box;
  line-height: 1.4;
  display: none;
}

.faqs-section .accordion-item-body p {
  font-size: 0.94rem;
}










footer {
  background-color: var(--color-primary);
  color: #999898;
  
  & .footer-menu {
    a {
      color: #fff;
      padding: 10px 15px;
      display: inline-block;
    }
    
    a:hover {
      color: #fff;
      text-decoration: underline !important;
    }
  }
  
  & .copyright-text span {
    top: 9px;
  }
}














