/* css/components.css */

/* Agency Hero Section */
.agency-hero {
  display: flex;
  flex-direction: column;
  margin-top: -80px; /* Overlaps header */
  position: relative;
  z-index: 10;
  padding-bottom: var(--spacing-xl);
}

@media (min-width: 992px) {
  .agency-hero {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}

/* Image Box */
.hero-image-box {
  flex: 1;
  background-color: var(--color-tertiary);
  padding: 20px;
  position: relative;
}

.profile-img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(110%);
}

/* The Marker Texts */
.marker-text {
  font-family: var(--font-family-marker);
  color: var(--color-primary);
  font-size: 40px;
  line-height: 1.2;
  transform: rotate(-5deg);
  margin-bottom: 40px;
}

.marker-arrow {
  position: absolute;
  color: var(--color-primary);
  font-size: 80px;
  font-family: var(--font-family-marker);
}

/* Top right arrow */
.arrow-1 {
  top: -50px;
  right: -50px;
  transform: rotate(45deg);
}

/* Bottom left arrow */
.arrow-2 {
  bottom: 50px;
  left: -80px;
  transform: rotate(-45deg);
}

/* Right Content */
.hero-content {
  flex: 1;
  padding: 40px 0;
  position: relative;
}

.hero-name {
  font-size: 60px;
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 5px;
}

.hero-role {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 500px;
}

/* Social Stack */
.social-stack {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-circle {
  width: 45px;
  height: 45px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-circle:hover {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .social-stack {
    position: relative;
    flex-direction: row;
    transform: none;
    margin-top: 30px;
  }
}

/* General Layout Elements for other pages */
.page-title {
  font-size: 50px;
  margin-bottom: 10px;
}

.page-subtitle {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.project-item {
  border-bottom: 2px solid #eee;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-item:hover .project-name {
  color: var(--color-primary);
}

.project-name {
  font-size: 30px;
  font-weight: 800;
  transition: color 0.2s;
  text-decoration: none;
  color: #000;
}

.project-category {
  color: var(--text-muted);
  font-family: var(--font-family-marker);
  font-size: 24px;
}

.form-control-pop {
  width: 100%;
  border: none;
  border-bottom: 3px solid #000;
  padding: 15px 0;
  font-family: var(--font-family-sans);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-control-pop:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.btn-pop {
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-pop:hover {
  background-color: var(--color-primary);
}
