body,h1,h2,h3,h4,h5,h6,p,a{
    font-family: "Texturina", serif !important;
}

/* Example CSS: */

/* By default, you can keep it white (or any color that suits the unscrolled navbar). */
.brand-text {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  /* When the navbar has the 'scrolled' class, change text color to black. */
  .navbar.scrolled .brand-text {
    color: #000;
  }
  
  .navbar.scrolled {
    background-color: #fff;
  }
  /* Default state (unscrolled) – icon is white (or your preferred color). */
.navbar-toggler .flaticon-menu {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  /* Scrolled state – icon becomes black (or any darker color you choose). */
  .navbar.scrolled .navbar-toggler .flaticon-menu {
    color: #000;
  }
  
  .call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    animation: zoomInOut 1.5s infinite;
}

.call-button:hover {
    background-color: #218838;
    transform: scale(1.1);
}

/* Zoom In & Out Animation */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .call-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}