/* This file is part of the ADAM Booking App */

:root {
  --font-family-base: "Proxima Nova", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-family-base);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-base);
  font-weight: 600;
}

.adam-link {
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.adam-link:active,
.adam-link:focus {
  color: #eeff00 !important;
}

/* ADAM Booking App - Custom Navbar Colour */
.custom-navbar {
  background-color: #303048 !important;
}


/* Breadcrumb styling */
#breadcrumb .crumb {
  cursor: pointer;
  color: #0d6efd;
  text-decoration: underline dotted;
  font-size: 0.875rem !important;  /* small */
  font-weight: 300 !important;     /* light */
}

#breadcrumb .crumb:hover {
  text-decoration: underline solid;
}

/* Ensure buttons take full width inside grid */
button.w-100 {
  white-space: nowrap;
}

/* Smooth transition for card size changes */
.card-body {
  transition: all 0.3s ease-in-out;
}

/* Mobile-friendly tweaks */
@media (max-width: 576px) {
  #breadcrumb {
    font-size: 0.8rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .form-control,
  .form-check-label {
    font-size: 0.95rem;
  }
}

#breadcrumb .crumb.current {
  color: #000;
  text-decoration: none;
  cursor: default;
  font-weight: 500;
}

html, body {
  height: 100% !important;
}

.gradient-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  background: linear-gradient(152deg, rgba(115, 77, 95, 1) 0%, rgba(48, 48, 72, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}

.gradient-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px; /* spacing below the text */
  height: 10px; /* double thickness */
  width: 0%;
  background-color: #eeff00;
  border-radius: 2px;
  animation: underline-slide-in 1.2s ease-out forwards;
}

@keyframes underline-slide-in {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .gradient-title {
    font-size: clamp(1.65rem, 5vw, 2.5rem); /* bumped up range for mobile */
  }
}

.grecaptcha-badge { 
    visibility: hidden !important;
}


#botoxReviewNote {
    display: inline-block;
    padding: 2px 6px;
    background-color: #edff00;
    color: #000;
    border-radius: 4px;
    line-height: 1.4;
    text-align: center;
}