/* body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5); 
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5); 
} */

.cover-container {
  max-width: 75em;
}

.tcrlogoimg {
  max-width: 33em;
}


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(129, 123, 123, 0.75);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(44, 40, 40, 0.5);
}

.nav-masthead .nav-link+.nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #000000;
  border-bottom-color: #000000;
}

/* Sabrina image: responsive and styled */
.sabrina-img {
  max-height: 480px;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 2;
  transform: translateY(2rem);
  /* Moves image down to align shoulders with buttons */
}

/* Animate fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(2rem);
    /* match the resting transform */
  }
}

/* Image container */
.sabrina-img-container {
  margin-bottom: -30px;
  /* Pull image down below its row */
}

/* Align and push image down further on large screens */
@media (min-width: 992px) {
  .sabrina-img-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    margin-top: 4.5rem;
    /* Push image down so shoulders align with buttons */
  }
}

/* Decorative HR behind image */
.sabrina-hr {
  position: absolute;
  bottom: 260px;
  /* Adjust until line sits behind her waist */
  left: 0;
  width: 100%;
  border: none;
  border-top: 4px solid #ffc107;
  /* Bootstrap "warning" gold */
  z-index: 1;
}

/* Optional: Tweak padding/margin of surrounding rows to minimize gap */
hr.border-warning {
  margin-top: -20px;
  /* Pull gold line up closer to image */
}

/* Ensure the text below stays low */
.cta-section {
  margin-top: 60px;
}

/* Coral button: #D67472 */
.btn-coral {
  background-color: #D67472;
  color: #fff;
  border: none;
}

.btn-coral:hover {
  background-color: #c05f5d;
  color: #fff;
}

/* Teal button: #51ABB2 */
.btn-teal {
  background-color: #51ABB2;
  color: #fff;
  border: none;
}

.btn-teal:hover {
  background-color: #3f949a;
  color: #fff;
}

/* Navy button: #002A4E */
.btn-navy {
  background-color: #002A4E;
  color: #fff;
  border: none;
}

.btn-navy:hover {
  background-color: #001f3a;
  color: #fff;
}

/* Social icon hover effect */
.footer-icon-hover {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-icon-hover:hover {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(1.3);
}

/* Override nav link color just on homepage navbar */
.navbar-cheeky-home .nav-link {
  color: #4a4a4a;
}

.navbar-cheeky-home .nav-link:hover,
.navbar-cheeky-home .nav-link.active {
  color: #6c757d;
}