/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

.left-column {
  flex: 1;
  position: relative;
  background: url('nicholas-boncardo.png') no-repeat center center / cover;
  /* Background image for the column */
}

.left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Initial semi-transparent color */
  z-index: -1; /* Ensure it is behind the image */
  transition: background-color 2s ease; /* Smooth transition */
}

.right-column {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 1); /* Initial background */
  transition: background-color 2s ease; /* Smooth transition */
}





.right-column .content h1 {
  font-size: 36px;
  transition: color 2s;
}

.right-column .content p {
  font-size: 16px;
  line-height: 1.5;
  transition: color 2s;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 2s;
}

.social-icons a:hover {
  background-color: #555;
}
