/* ============================================
   FONT FACE DECLARATIONS
   ============================================ */

/* Anton Font Family */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton/anton.eot');
  src: url('../fonts/anton/anton.eot?#iefix') format('embedded-opentype'),
       url('../fonts/anton/anton.woff2') format('woff2'),
       url('../fonts/anton/anton.woff') format('woff'),
       url('../fonts/anton/anton.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Muli Font Family - Regular */
@font-face {
  font-family: 'Muli';
  src: url('../fonts/muli/Muli.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Muli Font Family - Bold */
@font-face {
  font-family: 'Muli';
  src: url('../fonts/muli/Muli-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Muli Font Family - Light */
@font-face {
  font-family: 'Muli';
  src: url('../fonts/muli/Muli-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Muli Font Family - Semi Bold */
@font-face {
  font-family: 'Muli';
  src: url('../fonts/muli/Muli-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   TYPOGRAPHY CLASSES
   ============================================ */

/* TITLES AND TOOLBAR - Anton in CAPS */
.title-anton-caps {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.toolbar-title {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Main page titles */
.title-main {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Section titles */
.title-section {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2rem;
  line-height: 1.3;
}

.title-section-small {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 3rem;
  line-height: 1.3;
}

/* TITLES WITHOUT UPPERCASE - Anton in original case */
.title-anton-normal,
.toolbar-title-normal {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
}

/* Main page titles - no uppercase */
.title-main-normal {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Section titles - no uppercase */
.title-section-normal {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 2rem;
  line-height: 1.3;
}

.title-section-small-normal {
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 3rem;
  line-height: 1.3;
}

/* SUBTITLES in Muli BOLD AND IN CAPS */
.subtitle-caps,
.subtitle-bold-caps {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* SUBTITLES in Muli BOLD WITHOUT CAPS */
.subtitle-normal,
.subtitle-bold-normal {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Large subtitle - no uppercase */
.subtitle-large-normal {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Small subtitle - no uppercase */
.subtitle-small-normal {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 1rem;
  line-height: 1.4;
}

/* DESCRIPTIONS in Muli Regular and in upper/lower case */
.description-text,
.text-description {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Large description text */
.description-large {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Small description text */
.description-small {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* LINKS in Muli Bold upper/lower */
.link-text,
.text-link {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link-text:hover,
.text-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Navigation links */
.nav-link {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Button text links */
.btn-link {
  font-family: 'Muli', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-link:hover {
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

/* Mobile adjustments */
@media (max-width: 768px) {
  .title-main {
    font-size: 2rem;
  }
  .title-section {
    font-size: 1.75rem;
  }
  .subtitle-caps,
  .subtitle-bold-caps {
    font-size: 1.125rem;
  }
  .description-large {
    font-size: 1rem;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .title-main {
    font-size: 2.25rem;
  }
  .title-section {
    font-size: 1.875rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Font family utilities */
.font-anton {
  font-family: 'Anton', Arial, sans-serif;
}
.font-muli {
  font-family: 'Muli', Arial, sans-serif;
}
/* Font weight utilities for Muli */
.font-weight-light {
  font-weight: 300;
}
.font-weight-regular {
  font-weight: 400;
}
.font-weight-semibold {
  font-weight: 600;
}
.font-weight-bold {
  font-weight: 700;
}

/* Text transform utilities */
.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-normal {
  text-transform: none;
}

/* ============================================
   ABOUT IMAGES HOVER FIX
   ============================================ */

/* Fix hover behavior for about images - prevent disappearing */
.about-image-container .bx-logo-scrolling-list__logo-group:hover .about-image-no-hover,
.about-image-container .bx-logo-scrolling-list__logo-group:focus-within .about-image-no-hover {
  opacity: 1 !important;
  display: inline !important;
}

.about-image-container .bx-logo-scrolling-list__logo-group:hover .bx-logo-scrolling-list__original-logo {
  display: none !important;
}

/* Ensure about images stay visible on hover */
.about-image-no-hover {
  opacity: 1 !important;
  display: inline !important;
  transition: opacity 0.3s ease;
}

.about-image-no-hover:hover {
  opacity: 0.9 !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* ============================================
   NOMINATIONS DISPLAY OVERRIDE
   ============================================ */

/* Display all 5 nominations in one row when screen is larger than 1280px */
@media (min-width: 80em) {
  .bx-offerings-highlights {
    /* Override grid and use flex layout to show all items in one row */
    display: flex !important;
    grid-template-columns: none !important;
    --columns: none !important;

    /* No horizontal scroll - show all items */
    -moz-column-gap: var(--spacing-16);
    column-gap: var(--spacing-16);
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .bx-offerings-highlights__item {
    /* Equal width items to fit all 5 in one row */
    flex: 1 1 calc(20% - var(--spacing-16)) !important;
    max-width: calc(20% - var(--spacing-16)) !important;
    min-width: 0;
    grid-column: none !important;
  }
}

/* Adjust spacing and sizing for larger screens */
@media (min-width: 90em) {
  .bx-offerings-highlights {
    -moz-column-gap: var(--spacing-20);
    column-gap: var(--spacing-20);
  }

  .bx-offerings-highlights__item {
    flex: 1 1 calc(20% - var(--spacing-20)) !important;
    max-width: calc(20% - var(--spacing-20)) !important;
  }
}

@media (min-width: 120em) {
  .bx-offerings-highlights {
    -moz-column-gap: var(--spacing-24);
    column-gap: var(--spacing-24);
  }

  .bx-offerings-highlights__item {
    flex: 1 1 calc(20% - var(--spacing-24)) !important;
    max-width: calc(20% - var(--spacing-24)) !important;
  }
}


/* ============================================
   NOMINATIONS DISPLAY OVERRIDE
   ============================================ */


.contact-form {
  width: 100%;
  max-width: 500px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 12px;
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

/* Remove box-shadow on focus and other states */
.contact-form input:focus,
.contact-form input:active,
.contact-form input:hover,
.contact-form textarea:focus,
.contact-form textarea:active,
.contact-form textarea:hover {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  outline: none !important;
}

.contact-form label {
  position: absolute;
  top: 14px;
  left: 12px;
  background: #111;
  padding: 0 6px;
  color: #aaa;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s ease;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 8px;
  font-size: 0.75rem;
  color: #b1b5b4;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #b1b5b4;
  color: #111;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  outline: none !important;
}

/* Remove box-shadow on button focus and other states */
.contact-form button:focus,
.contact-form button:active,
.contact-form button:hover {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  outline: none !important;
}
