:root {
  --handyfix-secondary2: #800000;  /* Maroon */
}

/* Custom styles for Baaz */

.topbar-one {
  background-color: var(--handyfix-secondary2, #800000);
}

/* Change topbar icons to white */
.topbar-one__info span {
    color: #fff !important; /* White color with !important to override default */
}

/* Also update icon hover color */
.topbar-one__info a:hover {
    color: #fff !important;
}

/* Ensure buttons use the site's font-family so button text matches other page text */
.handyfix-btn {
  font-family: inherit !important;
}

/* Instagram Feed Styles */
.instagram-one__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.instagram-one__item img {
    width: 100%;
    transition: all 500ms ease;
    display: block;
}

.instagram-one__item:hover img {
    transform: scale(1.1);
}

.instagram-one__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 0, 0, 0.7); /* Maroon overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 500ms ease;
    transform: scale(0.5);
    border-radius: 10px;
}

.instagram-one__item:hover .instagram-one__link {
    opacity: 1;
    transform: scale(1);
}

.instagram-one__link i {
    font-size: 30px;
    color: #fff;
}