/* General section styling */
.join-section {
    background-color: rgb(249, 247, 246);
    opacity: 90%;
    text-align: center;
    padding: 70px 20px;
}

.join-section h2 {
    font-family: 'Work Sans', serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 140%;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 50px;
}

/* Social media icons */
.social-icons {
    margin-bottom: 60px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 70px;
    /* Adjust size as needed */
    height: 70px;
    border-radius: 50%;
    /* Circular icons */
}

.social-icons img:hover {
    transform: scale(1.04);
}

/* Photo gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-gallery img { 
    width: 320px;
    height: 320px;
    border-radius: 3px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}