@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balthazar&family=Hammersmith+One&display=swap');

* {
  font-family: 'Hammersmith One', sans-serif;
}

h1 {
  font-family: 'Hammersmith One', sans-serif;
}

h4 {
  font-family: 'Balthazar', serif;
}


.navy-color-parent * {
    color: hsl(231, 52.6%, 20%);
}

.banner-image {
  background-position: center;
}


#formAccordion {
  background-color: transparent;
}
#formAccordionItem{
  background-color: transparent;
}
#formAccordionHeader {
  background-color: transparent;
}
#collapseOne {
  background-color: transparent;
}
.accordion-header {
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}


.cult-picks h1{
  font-family: 'Balthazar', serif;
  color: #301934;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4rem + 1vw, 6.5rem);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  padding-top: 1.8rem;
  
}

.cult-picks a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

.cult-picks a.ul {
  text-decoration: underline;
  color: inherit;
  background-color: transparent;
  font-weight: bold;
}

.custom-switch-width {
  width: 50px !important;
}

.custom-switch-width:checked::before {
  left: calc(100% - 2em) !important;
}

.container-glass {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);  
  padding: 1px;  
  filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));
}

.wrapper-glass {
  width: auto;
  height: auto;
  
}

.container-glass h1{
  text-transform: uppercase;
  font-size: 2.4rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.container-glass h4 {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.map-locator {
  color: #301934;
}

.map-locator h1{
  text-transform: uppercase;
  font-size: clamp(1rem, 3rem + 1vw, 6rem);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  padding-top: 3rem;
}


.vote-template {
  background-color: transparent;
  color: #ffffff;
  max-width: 1000px;
  max-height: 100vh;
  
}

.vote-template .card {
  background: url("../img/card-assets/smoky-black-background.svg") no-repeat center center !important;
  background-size: cover;
  position: relative;
  min-height: 475px;
}


.vote-template .card-title {
  color: #ffffff;
  font-size: clamp(1rem, 2rem + 1vw, 3rem);

}

.vote-template .card-subtitle {
  color: #ffffff;
  font-size: clamp(0.8rem, 1.5rem + 1vw, 2rem);
}

.single-width-outline {
  border-width: 1px !important;
}

.btn-purple {
  background-color: hsl(231, 52.6%, 20%);
}

.modal-info-shadow {
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.2),
    2px 2px 4px rgba(0, 0, 0, 0.2),
    3px 3px 6px rgba(0, 0, 0, 0.2);
}

.email-input-field {
  border: 1px solid black !important;
}

input,
select {
  border: 1px solid black !important;
}

.rating-section {
  margin-bottom: 1.5rem;
}

.rating-header .h6 {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rating-bubble {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}

.rating-bubble:hover {
  background-color: rgba(0,0,0,0.1);
}

.rating-bubble::after {
  content: attr(data-value);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  pointer-events: none;
}
.rating-bubble:hover::after,
.rating-bubble:focus-visible::after,
.rating-bubble-input:checked + .rating-bubble::after {
  opacity: 1;
  color: var(--bs-info);
  font-weight: 700;
}

.rating-bubble:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

.rating-scale-label {
  font-family: 'Balthazar', serif;
  text-align: center;
  color: hsl(231, 52.6%, 20%);
  font-size: smaller;
}

.rating-bubble-input:checked + .rating-bubble {
  background-color: currentColor;
  outline: 2px solid Highlight;
  outline-offset: 2px;
}

.btn-group-container {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.custom-gradient-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #ffffff, #e0e0e0); 
  color: #000000;
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.custom-gradient-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000000 0%, #ffffff 100%);
  opacity: 0;
  transition: opacity 0.5s ease, width 0.5s ease;
  z-index: 0;
}

.custom-gradient-button:hover,
.custom-gradient-button:focus,
.custom-gradient-button:active {
  color: #301934;
}

.custom-gradient-button:hover::before,
.custom-gradient-button:focus::before,
.custom-gradient-button:active::before {
  opacity: 1;
}

.custom-gradient-button span {
  position: relative;
  z-index: 1;
}


@media (max-width: 485px) {
  .long-voting-label {
    font-size: 0.85rem;
  }

}

@media (max-width: 420px) {
  .long-voting-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .long-voting-label {
    font-size: 0.6rem;
  }
}

#typewriterTextOverlay {
  position: absolute;
  top: 20px; 
  left: 20px;
}

/*--------------------------------------------------------------
# Custom Lineage Autocomplete placement
--------------------------------------------------------------*/
#autocomplete-dropdown-lineageInputSection {
  inset: 0 0 0 -15% !important;
  min-width: 200px;
}


@media (min-width: 992px) {
  #autocomplete-dropdown-lineageInputSection {
    inset: 0 0 0 -10% !important;
  }
}


hr.divider-vertical {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  background-image: linear-gradient( 180deg, transparent, hsl(0, 0%, 40%), transparent );
  background-color: transparent;
  height: 100%;
}
