@import url("./colors.css");
.header-logo{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.pane-logo{
    display: flex;
    flex-direction: row;
    align-item: center;
    justify-item: center;
    margin: 10px auto;
    width: 60px;
    height: 60px;
}
.about-logo{
    display: flex;
    flex-direction: row;
    align-item: center;
    justify-item: center;
    margin: auto;
    width: 200px;
    height: 200px;
}
h2, h3, h4, h5, h6{
    color: #868e96;
}
p{
    color: white;
}
.no-border{
  border: none;
}
.z-2k{
  z-index: 2000;
}
/* /////////////////////////////////////////////////////////////////////
[GLOBAL] */
.fa,
.bi {
  color: var(--color-bkg-primary);
  font-size: 15px;
  margin: 0 5px;
}
.badge {
  font-size: 10px;
  font-style: normal;
  padding: 5px;
  margin: auto 5px;
}
/*//////////////////////////////////////////////////////////////////////*/
/*//[ABOUT/TEAM]//*/
.team-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.team-about img {
  width: 200px;
  height: 200px;
  margin: 20px auto;
  border-radius: 50%;
  object-fit: cover;
}

.team-about .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-about .details > div {
  margin: 5px 0;
}

.team-about .details .name {
  font-size: 21px;
  padding: 8px 0;
  border-radius: 3px;
  background: var(--color-bkg-header-title);
  color: var(--color-primary-text);
  letter-spacing: 5px;
}

.team-about .details .handle {
  font-weight: 300;
  letter-spacing: 5px;
}

.team-about .details .spec {
  letter-spacing: 2px;
  font-style: italic;
}

.team-about .details .line {
  display: inline-flex;
}

.team-about .details .quote {
  font-size: 30px;
}

/* ////////////////////////////////////////////////
[SUB LINK] 
link below header*/
.sub-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* border-bottom: 2px grey; */
  padding: 20px;
  margin: 15px 0;
}
.sub-link a,
.sub-link a:hover {
  color: antiquevar(--color-white);
  margin: 0 5px;
}
.sub-link *,
.sub-link > i {
  font-size: 10px;
  margin: 0 5px;
}

/*//////////////////////////////////////////////////////////////////////*/
/*//[SLIDE SHOW]//*/
.intro-text {
  max-width: 750px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-white);
}

/* Tool Card */
.tool-card {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.tool-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.tool-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.tool-card p {
  text-align: center;
  padding: 0;
  margin: 10px auto;
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 3px;
}

.screen .frame .note {
  margin-bottom: 20px;
  color: var(--color-primary-text);
}
@media (max-width: 768px) {
  .tool-card {
    padding: 24px 18px;
  }

  .tool-card img {
    width: 75px;
    height: 75px;
  }

  .tool-card h4 {
    font-size: 1.1rem;
  }

  .tool-card p {
    font-size: 0.9rem;
  }

  .intro-text {
    width: 100%;
    padding: 0 10px;
  }
}

.glass {
  background: rgba(10, 10, 10, 0.5);
  border-radius: 20px;
}
/*-------------------Joined buttons----------------------------*/
.joined-boxes {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  margin: auto;
}

.joined-boxes .active {
  color: var(--color-bkg-menu);
  background: var(--color-primary);
}

.joined-boxes .box {
  display: inline-block;
  border-radius: 0px;
}

.joined-boxes .box:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.joined-boxes .box:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*///////////////////////////////////////////////////////////////*/
/*/[STORE]/*/
.filter-button {
  height: auto;
  margin: auto;
  cursor: pointer;
  background: var(--color-bkg-primary);
  color: var(--color-white);
  border-radius: 10px;
  padding: 5px 10px;
  transition: 0.3s;
}

.filter-button:hover {
  background: var(--color-primary);
  color: var(--color-bkg-header-title);
}

.panel-filter {
  display: none;
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 30px 0;
  background: rgba(10, 10, 10, 0.9);
  border-radius: 20px;
  transition: 0.5s all;
}

.panel-filter .wrap-filter {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px 40px;
}

.panel-filter .wrap-filter ul li {
  margin: 5px 0;
}

.panel-filter .wrap-filter ul li button {
  cursor: pointer;
  background: var(--color-bkg-primary);
  color: var(--color-white);
  border-radius: 10px;
  padding: 5px 10px;
  border: none;
  transition: 0.3s;
}

.panel-filter .wrap-filter ul li button:hover {
  background: var(--color-primary);
  color: var(--color-bkg-header-title);
}

.panel-filter-display {
  display: block;
}

/* ///////////////////////////////////
BORDER
 */
.bor-1,
.bor-2,
.bor-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bor-1 {
  border: 1px solid rgba(244, 244, 244, 0.5);
}
.bor-2 {
  border: 1px solid rgba(244, 244, 244, 0.5);
}
.bor-3 {
  border: 1px solid rgba(244, 244, 244, 0.5);
}

/*---------------------.headed-img--------------------------*/

.headed-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 50px;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 20px;
}

.headed-img .header {
  display: flex;
  flex-direction: row;
  margin: 20px;
  align-items: baseline;
}

.headed-img .header img {
  width: 100px;
  height: 100px;
  margin: 0;
  margin-left: 50px;
  margin-right: 10px;
}

.headed-img .header .title {
  font-size: 25px;
  font-weight: bold;
  margin: auto 0;
  line-height: 30px;
  color: var(--color-primary-text);
}

.headed-img .note {
  margin: 10px 30px;
  text-align: center;
  color: var(--color-primary-text);
}

.headed-img .note p i {
  margin: 0 10px;
  color: var(--color-info);
}

/*---------------------.panel--------------------------*/
.panel {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin-bottom: 10px;
  opacity: 0.9;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.panel > .header {
  background: var(--color-bkg-header-title);
  color: var(--color-primary-text);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
  font-weight: bolder;
}

.panel > .header a {
  color: var(--color-white);
  text-decoration: none;
}

.panel > .body {
  background: var(--color-bkg-header-body);
  color: var(--color-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 20px;
}

.panel > .body h2 {
  color: #e76f1e;
}

/*---------------------.li-space-display--------------------------*/
.li-space-display {
  padding: 0;
  margin: 5px 0;
}
.li-space-display li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 5px 0;
}

/*---------------------.capsule-box--------------------------*/
.capsule-box {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.capsule-box > div {
  margin: 0 5px;
}

.capsule-01,
.capsule-02 {
  border-radius: var(--dim-xlarge);
  padding: 5px 14px;
  margin: 2px 0;
  color: var(--color-white);
}

.capsule-01 {
  background: var(--color-bkg-header-body);
}

.capsule-02 {
  background: var(--color-bkg-header-title);
}
/*---------------------.pagination-container--------------------------*/
.pagination-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background-color: var(--color-white);
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  min-width: 40px;
  text-align: center;
}

.page-btn:hover {
  background-color: #eee;
}

.page-btn.active {
  background-color: #007bff;
  color: var(--color-white);
  font-weight: bold;
  border-color: #007bff;
}

.code-snippet {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 16px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
}

/* =========================================
   SIMPLE STORE MENU LIST
========================================= */

.store-menu-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.store-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each item */
.store-menu-list li {
  border-bottom: 1px solid var(--color-primary-text);
}

/* Links */
.store-menu-link {
  display: block;
  width: 100%;
  padding: 7px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s ease;
}

/* Hover */
.store-menu-link:hover {
  background: var(--color-bkg-header-body);
  color: #0d6efd;
  text-decoration: none;
  padding-left: 20px;
}

/* Active */
.store-menu-link.active {
  background: var(--color-bkg-header-body);
  color: var(--color-white);
}

/* Mobile */
@media (max-width: 768px) {
  .store-menu-link {
    font-size: 14px;
    padding: 12px 15px;
  }
}
