/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.9px;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

/* Showcase Area */
.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1rem;
  color: var(--darkOne);
  line-height: 1.2;
}

.text {
  color: var(--lightOne);
  font-size: 1.4rem;
  margin: 1.9rem 0 1.5rem;
  max-width: 600px;
  line-height: 1.5;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

/* Person Image */
.person {
  width: 620px;
  transform: translate(15%, 25px);
  display: block;
  height: auto;
  margin-top: -40px;
}

.bottom-area {
  display: none;
}

/* Background Shape */
.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: var(--shapeOpacity);
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
  justify-content: flex-start;
  max-width: 600px;
  margin-bottom: 30px;
}

.space-item {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1.5rem;
  background-color: var(--tagsBackground);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  color: var(--darkOne);
  white-space: nowrap;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--inputBorder);
}

/*
.space-item:hover {
  transform: rotate(0deg) !important;
  background-color: var(--tagsBackgroundHover);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}*/