/* Placeholder CSS */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 75px;
  width: auto;
  margin-right: 20px;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: url('assets/images/reception.jpg') center center / cover no-repeat fixed;
  background-position: 50% 50%;
  transition: background-position 0.1s ease-out;
}

.ticker-wrapper {
  background-color: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 60s linear infinite;
}

.ticker p {
  display: inline-block;
  color: #aaa;
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: bold;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.social-icons img {
  height: 30px;
  margin: 0 10px;
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 0.7;
}

.site-credit img {
  height: 30px;
  margin-top: 10px;
}

.btn-primary.btn-invert {
  background-color: var(--cream);
  color: var(--black);
}

.btn-primary.btn-invert:hover {
  background-color: var(--black);
  color: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* ⬅️ this centers horizontally */
  gap: 40px;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--black);
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.service-card img {
  width: 100%;
  height: 200px; /* or adjust as needed */
  object-fit: cover;
  border-radius: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

.team-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
  color: var(--black);
}

.team-card h3 small {
  font-weight: normal;
  font-size: 0.9rem;
  display: block;
  color: #666;
}

.team-card p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}


header {
    border-radius: 12px;
    overflow: hidden;
}
