/* styles/homepage.css */

/* --- Main Container --- */
.homepage-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
  overflow: visible;
}

/* --- Left Column: Signature & Nav --- */
.left-column {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.left-column .signature {
  max-width: 100px;
  margin-bottom: 1.5rem;
}

.left-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-column ul a {
  text-decoration: none;
  font-size: 12px;
  color: #333;
  display: block;
  margin-bottom: 0.75rem;
}

.left-column ul a:hover {
  color: #000;
}

/* --- Social Links --- */
.social-links {
  margin-top: 2.5rem;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.social-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.social-links a:hover {
  color: #000;
}

/* --- Right Column --- */
.right-column {
  padding: 0;
  overflow: visible;
}

.right-column .main-photo {
  width: 100%;
  margin-bottom: 1.5rem;
}

.right-column p {
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .homepage-container {
    padding: 1rem;
  }
  
  .left-column {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}