@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.font-title{
    font-family: 'Playfair Display', serif;
}
.logo{
    height: 90px;
}

.text-orange{
    color: #e35626;
}
.bg-orange{
    background-color: #e35626;
}
.text-red{
    color: #d12525;
}
.bg-red{
    background-color: #d12525;
}

.text-yellow{
    color: #e5a857;
}
.bg-yellow{
    background-color: #ffae00;
}
.bg-light-orange{
    background-color: #ffd3a7;
}
.text-primary{
    color: #d12525 !important;
}
.text-reset:hover, .card-hover:hover .card-text{
    color: #d12525 !important;
}
.card-hover:hover span{
    border-color: #d12525 !important;
}

.btn-primary{
    background-color: #d12525;
    border-color: #d12525;
    color: #fff;
}
.btn-primary:hover{
    background-color: #e35626;
    border-color: #e35626;
    color: #fff;
}
.bg-img{
    background-image: url('../img/bg-patten.jpg');
    background-size: 200px;
    background-position: center;
    background-repeat: repeat;
    background-color: #ff8800;
    background-blend-mode: multiply;
}
.bg-img2{
    background-image: url('../img/bg-patten2.jpg');
    background-size: 200px;
    background-position: center;
    background-repeat: repeat;
    background-color: #d12525;
    background-blend-mode: multiply;
}
.link-primary{
    color: #ffffff !important;
}
.link-primary:hover{
    color: #e35626 !important;
}
.bg-footer{
    background-color: #610000;
    color: #fff;
}
.bg-copyright{
    background-color: #470000;
    color: #fff;
}

.bg-images{
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2c2c2c8f;
    background-blend-mode: multiply; 
}
.bg-img3{
    background-image: url('../img/bg-patten.jpg');
    background-size: 200px;
    background-position: center;
    background-repeat: repeat;
    background-color: #fffcecd2;
    background-blend-mode: multiply;
}



.fixed-buttons {
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }

  .fixed-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
  }

  .fixed-buttons a.call-btn {
    background-color: #007bff; /* Call button blue */
  }

  .fixed-buttons a:hover {
    transform: scale(1.05);
  }

  @media screen and (max-width: 600px) {
    .fixed-buttons {
      flex-direction: row;
      gap: 10px;
      bottom: 20px;
      right: 60px;
    }
    .fixed-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #25D366; /* WhatsApp green */
        color: white;
        padding: 5px 8px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 18px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s;
      }

      .btn-scroll-top, .btn-scroll-top:after {
        cursor: pointer;
        display: block;
        height: 2rem;
        width: 2rem;
    }
    .btn-scroll-top:after{
        line-height: 2rem;
    }
    
  }

  .circle-astro{
    animation: rotate 10s linear infinite;
  }

    @keyframes rotate {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }


      
    .floating-buttons {
      position: fixed;
      right: 20px;
      bottom: 100px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .floating-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #25d366;
      color: white;
      text-decoration: none;
      font-size: 28px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
      animation: bounceIn 1s ease forwards;
    }

    .floating-buttons a.call-btn {
      background-color: #007bff;
      animation-delay: 0.3s;
    }

    .floating-buttons a:hover {
      transform: scale(1.15);
    }

    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: translateY(100px);
      }
      60% {
        opacity: 1;
        transform: translateY(-20px);
      }
      80% {
        transform: translateY(10px);
      }
      100% {
        transform: translateY(0);
      }
    }


    @media screen and (max-width: 600px) {
      .floating-buttons {
        right: 10px;
        bottom: 80px;
      }
      .floating-buttons a {
        width: 50px;
        height: 50px;
        font-size: 24px;
      }
        
    }