

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f2f2f2;
    padding: 50px;
    margin: 0;
    color: #9CAF88; /* Sage green */
}

h1 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.1em;
    color: #9CAF88; /* Sage green */
}


/* ICON ROW (CENTERED LINE) */
.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  transform: translateY(30px); /* move icons down */
}


/* ICON STYLE */
.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* Float container (handles gentle up/down motion) */
.icon-float {
  animation: gentle-float 4s ease-in-out infinite;
}

/* Make icons grow slightly on hover */
.icon-link:hover .icon-img {
  transform: scale(1.15);
}

.icon-img {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out; /* smooth grow */
}

/* Label under each icon */
.icon-label {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(84, 144, 196, 0.3); 
  text-transform: lowercase;
  letter-spacing: 0.05em;
  animation: gentle-float 4s ease-in-out infinite;
}

}

/* Shared link styles (for page navigation) */
a {
    text-decoration: none;
    color: #007BFF;
}

a:hover {
    text-decoration: underline;
}

/* Optional: Centered content style for other pages */
figure {
    margin: 30px auto;
}

figcaption {
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.page-content {
    max-width: 700px;
    margin: 0 auto;
}


