/* Override primary color */
:root {
  --color-primary: #28CDD1;
  --color-primary-hover: #1fb3b7;
}

/* Site logo in header */
.site-logo {
  width: 28px;
  height: 28px;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  vertical-align: middle;
  margin-right: 0.5rem;
  display: inline-block;
}

/* Hero section: two-column layout with profile photo */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-photo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2em;
}

.hero-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #c0c0c0;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

/* On small screens, stack vertically and center the photo */
@media (max-width: 37.4em) {
  .hero {
    flex-direction: column;
    align-items: center;
  }

  .hero-photo {
    order: -1;
    padding-top: 0;
  }

  .hero-photo img {
    width: 160px;
    height: 160px;
  }
}

/* Contact section: two-column layout with QR card */
.contact-section {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.contact-text {
  flex: 1;
  min-width: 0;
}

.contact-qr {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2em;
}

.contact-qr img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  border: 3px solid #c0c0c0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

@media (max-width: 37.4em) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-qr {
    padding-top: 0;
  }

  .contact-qr img {
    width: 180px;
  }
}

/* Company cards: logo left, text right */
.company-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.company-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.company-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
}

.company-text {
  flex: 1;
  min-width: 0;
}

@media (max-width: 37.4em) {
  .company-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .company-logo img {
    width: 64px;
    height: 64px;
  }
}
