@import 'variables.css';
@import 'base.css';
@import 'typography.css';
@import 'layout.css';
@import 'components.css';
@import 'media.css';
header {
    background-color: #f5f1cf;
}

.second {
    font-family: var(--font-primary);
    font-weight: 900;
}


/* Make the hero section use flexbox for alignment */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between text and image */
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem; /* Adjust spacing */
}

/* Text container styling */


/* Image container */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* Optional: for softer edges */
}

.page-section {
  margin-bottom: var(--spacing-lg);
  margin-inline: 8rem;
}

@media (max-width: 768px){
  .page-section {
    margin-inline: 1rem;
  }
  
}

#hover-card.visible {
  display: flex !important;
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .client-name{ transition: none; }
}

