.profile-image {
    border-radius: 50%;
}

.caption-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ci-logo {
    width: 20px;
    margin-right: 5px;

}

.home-logo {
    width: 40px;
    margin: 2px;
}

.projects-sidebar-button {
    height: 54px;
    border-radius: 0;
}

.projects-sidebar-button:hover {
    background-color: #4a9ab2;
}

.snooker-club:hover .caption {
    background-color: rgba(75, 75, 75, 0.63);
}

.fizzybeese:hover .caption {
    background-color: rgba(75, 75, 75, 0.63);
}

.booking-form:hover .caption {
    background-color: rgba(75, 75, 75, 0.63);
}

.tetris:hover .caption {
    background-color: rgba(75, 75, 75, 0.63);
}

.technologies-list {
    width: 100%;
}

.technologies-item {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    list-style-type: none;
    margin: 0 auto;
}

.technologies-item:hover {
    text-decoration: underline;
}

/* Contact Form Page */

.contact-container {
    width: 25vw;
}

@media screen and (max-width: 1600px) {
    .contact-container {
        width: 50vw;
    }
}

@media screen and (max-width: 650px) {
    .contact-container {
        width: 80vw;
    }
}

@media screen and (max-width: 400px) {
    .contact-container {
        width: 90vw;
    }
}

#contact-form {
    margin: 0 auto;
    width: 90%;
}


.home-button {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  background: rgba(52, 58, 64, 0.5);
  line-height: 50px;
  z-index: 999;
}
.home-button:focus, .home-button:hover {
  color: #fff;
}
.home-button:hover {
  background: #343a40;
}



/* FizzyBeese Page */

.masthead-fizzy {
    min-height: 30rem;
    position: relative;
    display: table;
    width: 100%;
    height: 80vh;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../assets/img/fizzybeese-responsive.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.features-list li {
    font-size: 1.1em;
    margin-bottom: 5px;
    list-style-type: none;
}

.logo-image {
    width: 70px;
    position: relative;
    top: -8px;
}

.shadow-hover:hover {
    box-shadow: 0 0 10px 0 rgba(0,0,0,1);
}

/* The 147 Club Page */
.masthead-snooker {
    min-height: 30rem;
    position: relative;
    display: table;
    width: 100%;
    height: 80vh;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../assets/img/snooker-responsive.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.link-hover:hover {
    font-weight: bold;
}


/* Observer fade effect */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.2s; }
.fade-delay-2 { transition-delay: 0.4s; }
.fade-delay-3 { transition-delay: 0.6s; }
.fade-delay-4 { transition-delay: 0.8s; }