:root {
    --site-color-grey: #D9D9D9;
    --site-color-red: #FF0000;

  }
  
  .text-danger {
    color: var(--site-color-red) !important;
  }

  .text-grey {
    color: var(--site-color-grey) !important;
  }

.navbar {
    background-color: #D9D9D9;
  }
  .navbar-brand {
    font-weight: bold;
  }
  .nav-link {
    color: #000; /* Black text for navigation links */
    margin: 0 10px;
    font-size: 1rem;
    /* font-weight: bold; */
  }
  .nav-link:hover {
    color: #FF0000; /* Red hover effect */
  }
  .btn-book {
    background-color: #FF0000;
    color: #fff;
    border-radius: 5px;
    /* font-size: 1.25rem; */
  }
  .btn-book:hover {
    background-color: #d00000; /* Slightly darker red on hover */
    color: #fff;
  }

  .nav-link.active {
    color: #FF0000 !important; /* Red  effect */
  }
  .hero-section {
    position: relative;
    color: #fff;
    min-height: 88vh; /* Ensure it covers full height of the viewport */
  }
  


  .hero-text {
    border-radius: 5px;
    opacity: 0.9;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  p {
    font-size: larger;
  }
  .hero-section img {
    max-width: 100%;
    height: auto;
  }
  .stripped-line-call {
    background-color: #000;
    color: #fff;
  }
  
  @media (max-width: 767px) {
    .hero-section h1 {
      font-size: 1.75rem !important; /* Make heading smaller on smaller screens */
    }
    h1 {
        font-size: 1.75rem !important;
      }
      h2 {
        font-size: 1.25rem !important;
      }
    .hero-text {
      padding: 2rem !important; /* Adjust padding for mobile */
    }
    .hero-section {
      min-height: unset !important;
    }
  }
  
  .bg-dark-transparent-color {
    color:rgba(26,26,26,.8)
  }
  .bg-dark-transparent-bg {
    background: rgba(26,26,26,.8) !important;
  }

  .services-section {
    background: var(--site-color-grey) !important;
  }

  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem !important;
  }
  .card {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-img {
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end; /* Align the overlay at the bottom */
}

.card-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    color: white;
    padding: 15px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.card p {
    margin: 0;
    font-size: 18px;
    /* font-weight: bold; */
}

.btn-danger {
    background-color: var(--site-color-red) !important;
}
.card .btn {
    white-space: nowrap; /* Ensures the button text stays in one line */
}
h4 {
    font-size: 1.75rem !important;
}
.footer-logo img {
  max-width: 120px;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .fab {
  font-size: 20px;
}

footer li {
  padding: 4px;
  font-size: 18px;
}
h5 {
  font-size:1.45rem !important;
}
footer p {
  font-size: 18px;
}
.contact-section {
  background: var(--site-color-grey);
}

.contact-section h3 {
  color: #000;
}

.contact-section ul li {
  font-size: 1rem;
  color: #333;
}

.contact-section .form-label {
  font-weight: bold;
  color: #333;
}

.contact-section .btn-danger {
  background-color: #ff0000;
  border: none;
}

.recaptcha-placeholder {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}
.about-section {
  background-color: #f9f9f9;
}

.about-section h2 {
  color: #333;
}

.about-section p {
  color: #555;
  line-height: 1.8;
}

.about-section img {
  max-width: 100%;
  border-radius: 8px;
}
  
html{
  scroll-behavior: smooth;
}
.btn-grey {
  background-color: var(--site-color-grey);
}
.btn-grey:hover {
  background-color: #fff !important;
  color: #000 !important;
}

@keyframes zoomIn {
    from {
      transform: scale(0.5);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes zoomOut {
    from {
      transform: scale(1);
      opacity: 1;
    }
    to {
      transform: scale(0.5);
      opacity: 0;
    }
  }
  
  /* Apply zoom animations to modal */
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    animation: zoomOut 0.3s ease forwards;
  }
  
  .modal.fade.show .modal-dialog {
    animation: zoomIn 0.3s ease forwards;
  }

  textarea.form-control {
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0;
    height: 100px;
  }

   input:focus, textarea:focus, select:focus {
    border-color: var(--site-color-red) !important;
    --tw-ring-shadow::var(--site-color-red) !important;
   }

   .services_card {
    background: var(--site-color-grey) !important;
   }