/* stylelint-disable selector-list-comma-newline-after */

:root {
  --red: #ff0011ff;
  --carmine: #951218ff;
  --black-bean: #451609ff;
  --bistre: #381d14ff;
  --raisin-black: #2a231fff;
  --champagne-pink: #ffeadcff;
  --cinereous: #a27a78ff;
  --fontHeaderNumber: 'ingo-regular',"Playfair Display", Georgia, "Times New Roman", serif;
  --fontHeader: "Bureau-Text", "Playfair Display", Georgia, "Times New Roman", serif;
  --adImageUrl: url("/media/man_thinking_hall.jpg");
}

#main {
  
  transition: 0.5s ease-out;
}

#mainPageAd {
  width: 100vw;
  position:relative;
  background-image: var(--adImageUrl);
  background-size: cover;
  background-position: 50% 50%;
  transition: 0.5s ease-out;
}

#mainPageAd::before {
  content: ''; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 31, 31, 0.8); /* Black overlay with 50% opacity */
  z-index: 1; /* Place above the background image */
}

#mainPageAd > * {
  position: relative;
  z-index: 2; /* Place content above the overlay */
}

#mainPageAd:hover {
  background-image: var(--adImageUrl);
  background-size: cover;
  background-position: 20% 20%;
  transition: 1.5s ease-in-out;
}

.gf-ad-heading-text {
  margin-top: 80px;
  padding-left: 110px;
  margin-bottom: 80px;
}

.gf-ad-heading-blurb {
  margin-top: 80px;
  padding-right: 100px;
  margin-bottom: 80px;
}

.gf_button_toggleDropdownBar {
  border-radius: 0px;
  background-color: white;
  color: var(--red);
  font-size: small;
  border-radius: 0%;
  border-top: 0px;
  border-right: 0px;
  border-bottom: solid 5px;
  border-left: 0px;
  border-width: 2px;
  border-color: var(--red);
}

.gf_button_toggleDropdownBar:hover {
  color: white;
  background-color: var(--red);
  border-color: white;
}

.gf_button_toggleDropdownBar:hover * {
  color: white;
}

.gf_button_toggleDropdownBar:active:focus {
  background-color: var(--carmine);
  border-color: var(--carmine);
}

.bi-caret-down-fill {
  transition: all 0.25s ease-in-out;
}

.gf_border_shifted {
  border-radius: 0%;
  border-top: solid 5px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  border-width: 2px;
  border-color: var(--red);
}

.gf_caret_clicked {
  rotate: 180deg;
}

.gf-ui-block {
  padding: 48px;
  border-radius: 0%;
  border-top: 0px;
  border-right: 0px;
  border-bottom: 0px;
  border-left: solid 5px;
  border-width: 5px;
  border-color: var(--red);
  transition: 0.5s ease-out;
}

.gf-text-justify {
  text-align: justify;
  text-justify: inter-word;
  transition: 0.5s ease-out;
}

.gf-text-header-number, .gf-text-header-number-m, .gf-text-header-number-s {
  color: var(--red);
  font-family: var(--fontHeaderNumber);
}

.gf-text-header-number {
  font-size: 7rem;
  transition: 0.5s ease-out;
}

.gf-text-header-number-m {
  font-size: 3.5rem;
  transition: 0.5s ease-out;
}

.gf-text-header-number-s {
  font-size: 2.5rem;
  transition: 0.5s ease-out;
}

.gf-text-light {
  color: var(--champagne-pink);
}

.gf-text-dark {
  color: var(--raisin-black);
}

.gf-bg-light {
  background-color: var(--champagne-pink);
}

.gf-bg-dark {
  background-color: var(--raisin-black);
}

.gf-bg-red {
  background-color: var(--red);
}

.gf-bg-carmine {
  background-color: var(--carmine);
}

.blog-header {
  line-height: 1;
  border-bottom: 1px solid #e5e5e5;
}

.blog-header-logo, .blog-header-logo:hover, .blog-header-logo:visited  {
  font-family: var(--fontHeader);
  font-size: 2.5rem;
  text-decoration: none;
  transition: 0.5s ease-out;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fontHeader);
}

.link-primary, .link-primary:hover, .link-primary:visited {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.link-primary {
  color: var(--raisin-black); 
}

.link-primary:hover {
  color: var(--red);
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.link-primary:visited {
  color: var(--carmine);
}

.display-4 {
  font-size: 2.5rem;
  transition: 0.5s ease-out;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}

.card-img-right {
  height: 100%;
  border-radius: 0 3px 3px 0;
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 { 
  height: 250px; 
  transition: 0.5s ease-out; 
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}
.blog-pagination > .btn {
  border-radius: 2rem;
}

/*
 * Blog posts
 */
.blog-post {
  margin-bottom: 0rem;
}
.blog-post-title {
  margin-bottom: .25rem;
  font-size: 1.75rem;
  font-weight: bold;
  transition: 0.5s ease-out;
}

.blog-post-meta {
  margin-bottom: 2.25rem;
  color: #727272;
}

/*
 * Footer
 */
.blog-footer {
  padding: 2.5rem 0;
  color: #727272;
  text-align: center;
  background-color: #f9f9f9;
  border-top: .05rem solid #e5e5e5;
}
.blog-footer p:last-child {
  margin-bottom: 0;
}

.gf-btn {
  background-color: var(--red);
  color: var(--champagne-pink);
  border-radius: 0px;
}

.gf-btn:hover {
  background-color: none;
  color: var(--red);
  border-radius: 0px;
  border: 1px solid red;
}

.card-title {
  text-align: left;
}

.vuca-card {
  transition: 0.25s ease-in-out;
  height: 100%;
  border: none;
  border-radius: 5px;
}

.vuca-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  background-color: var(--red);
  color: var(--champagne-pink);
  opacity: 1;
  transition: 1.0s ease;
}

.vuca-card:hover .gf-text-header-number-m {
  transform: scale(1.05);
  color: var(--champagne-pink);
  transition: 1.0s ease;
}

.vuca-card .card-body {
  transition: opacity 1.0s ease;
}

.vuca-card:hover .card-body {
  opacity: 1;
}

.vuca-header {
  font-size: 3rem;
  font-weight: 600;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.vuca-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}


.previewimg {
    width: 100%; 
    height: 150px; 
    object-fit: cover;
    object-position: 50% 50%; 
    border-radius: 0px;
    transition: 0.8s ease;
}
.previewimg:hover {
    object-fit: cover;
    object-position: 45% 45%; 
    border-radius: 0px;
    transition: 0.8s ease;
}

.previewimg2 {
    width: 100%; 
    height: 200px; 
    object-fit: cover;
    object-position: 100% 00%; 
    border-radius: 0px;
    transition: 0.8s ease;
}
.previewimg2:hover {
    object-fit: cover;
    object-position: 45% 45%; 
    border-radius: 0px;
    transition: 0.8s ease;
}

.previewimgsquare {
    width: 100%; 
    height: auto; 
    object-fit: cover;
    object-position: 50% 50%; 
    border-radius: 100px;
    max-height: 200px;
    max-width:200px;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2a231fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-screen.fade-out {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.spinner-border.custom {
  width: 6rem;
  height: 6rem;
  border-width: 0.8em;
  border-color: #ffeadcff;
  border-right-color: transparent;
}

.gf-medallion-layer {
  position: relative;
  width: 100%;
  height: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
}

.gf-medallion-bronze {
  background-color: #cd7f32;
  z-index: 1;
}

.gf-medallion-gold {
  background-color: #ffd700;
  width: 50%;
  height: 100px;
  z-index: 2;
}

.gf-medallion-silver {
  background-color: #c0c0c0;
  width: 75%;
  height: 150px;
  z-index: 3;
}

.gf-medallion-layer:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gf-medallion-popup {
  display: none;
  position: block;
  background-color: none;
  padding: 10px;
  z-index: 999px;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  /* Styles for screens 768px wide or more (e.g., tablets, laptops) */
  #main {
    padding-left: min(135px);
    padding-right: min(20px);
    transition: 0.5s ease-out;
  }

  .gf-text-header-number {
    font-size: 7rem;
    transition: 0.5s ease-out;
  }
  .gf-text-header-number-m {
    font-size: 3.5rem;
    transition: 0.5s ease-out;
  }
  .gf-text-header-number-s {
    font-size: 2.5rem;
    transition: 0.5s ease-out;
  }

  .display-4 {
    font-size: 3rem;
    transition: 0.5s ease-out;
  }

  .h-md-250 { 
    height: 250px; 
    transition: 0.5s ease-out; 
  }
}

@media (min-width: 550px) {
  .blog-post-title {
    font-size: 3.5rem;
    font-weight: normal;
    transition: 0.5s ease-out;
  }
}

@media (max-width: 1200px) {
  /* Styles for screens 1200px wide or more (e.g., tablets, laptops) */
  .card-text {
    font-size: 12px;
    transition: 0.5s ease-out;
  }
}

@media (max-width: 1000px) {
  /* Styles for screens 1000px wide or more (e.g., tablets, laptops) */
  #optimumAnimation {
    display: none;
    width: 0%;
    height: 0%;
  }
}

@media (max-width: 768px) {
   /* Styles for screens 768px wide or less (e.g., tablets, laptops) */
  .gf-ad-heading-text {
    margin-top: 80px;
    text-align: center;
    padding-left: 0px;
    margin-bottom: 0px;
    font-size: 2.0rem;
    transition: 0.5s ease-out;
  }

  .gf-ad-heading-blurb {
    margin-top: 0px;
    padding: 50px;
    margin-bottom: 80px;
    transition: 0.5s ease-out;
  }

  .gf-ui-block {
    padding-left: 10px;
    padding-right: 10px;
    transition: 0.5s ease-out;
  }

  .gf-text-justify {
    font-size: 12px;
    transition: 0.5s ease-out;
  }

  .blog-header-logo, .blog-header-logo:hover, .blog-header-logo:visited  {
    font-family: var(--fontHeader);
    font-size: 1.75rem;
    text-decoration: none;
    transition: 0.5s ease-out;
  }

  .gf-medallion-layer {
    height: 50px;
  }

}