.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center; /* This centres the buttons horizontally */
}


.social-btn {
  font-family: Georgia, serif;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.social-btn.facebook {
  background-color: #e0d5c0;
  color: #3b5998;
  border: 1px solid #c1b49e;
}

.social-btn.instagram {
  background-color: #f0e2d0;
  color: #c13584;
  border: 1px solid #d2c3ae;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.icon-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: center;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  color: white;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.icon-btn.facebook {
  background-color: #3b5998;
}

.icon-btn.instagram {
  background-color: #c13584;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

body{
	background-color: #636362;
}

.container {
box-shadow: 
    -20px 0 20px -10px rgba(0, 0, 0, 0.5),  /* Left side */
    20px 0 20px -10px rgba(0, 0, 0, 0.5),   /* Right side */
    0 20px 20px -10px rgba(0, 0, 0, 0.5);     /* Bottom */
}

.tunelink-box {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}

.tunelink-img {
  width: 100%;
  transition: transform 0.2s;
  border-radius: 12px;
}

.tunelink-box:hover .tunelink-img {
  transform: scale(1.02);
}

.tunelink-button {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #810d0d;
  color: #f6e2c1;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid white;
  margin-top: 0;
  margin-bottom: 11px;
  transition: all 0.25s ease;
}

.tunelink-button h3 {
  margin: 0;
  font-size: 22px;
  color: #f6e2c1; /* <- force the h3 to match the intended link colour */
}

.tunelink-button:hover {
  background-color: #f6e2c1;
  color: #810d0d;
  border-color: #810d0d;
}

.tunelink-button:hover h3 {
  color: #810d0d;
}

.videoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Makes it clear that it's clickable */
}

.overlayImage {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.videoWrapper {
  border: 1px solid white;
}