@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /*Fonts*/
  --theme-font-family: "Montserrat", sans-serif;
  /*Navbar Colors*/
  --ob-nav-text-color: #1a1a1a;
  --ob-nav-bg-color: #fff;
  /*color primary*/
  --theme-primary-50: #BDDDFF;
  --theme-primary-100: #70B7FE;
  --theme-primary-200: #399AFE;
  --theme-primary-300: #0176EE;
  --theme-primary-400: #0167CF;
  --theme-primary-500: #0158B1;
  --theme-primary-600: #014993;
  --theme-primary-700: #013A74;
  --theme-primary-800: #002B56;
  --theme-primary-900: #001B37;
  --theme-primary-A100: #B2D8FF;
  --theme-primary-A200: #4CA4FF;
  --theme-primary-A400: #0071E5;
  --theme-primary-A700: #0065CB;
  --theme-primary-contrast-50: #252525;
  --theme-primary-contrast-100: #252525;
  --theme-primary-contrast-200: #252525;
  --theme-primary-contrast-300: #ffffff;
  --theme-primary-contrast-400: #ffffff;
  --theme-primary-contrast-500: #ffffff;
  --theme-primary-contrast-600: #ffffff;
  --theme-primary-contrast-700: #ffffff;
  --theme-primary-contrast-800: #ffffff;
  --theme-primary-contrast-A10: #252525;
  --theme-primary-contrast-A200: #252525;
  --theme-primary-contrast-A400: #ffffff;
  --theme-primary-contrast-A700: #ffffff;
}

/********* 
INDEX
0 - GENERAL
1 - FOOTER
2 - PRESALE
3 - CUSTOM PAGE BLUR SECTION
4 - FIX
5 - WAITING LIST MODULE
*********/

/********* 
0 - GENERAL
*********/
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
}

/********* 
1 - FOOTER
*********/

/*Dark version subfooter*/
/*Background subfooter*/
ob-footer.main-footer {
    background-color: #484D53 !important;
}

/*Color links subfooter & copyright*/
ob-footer.main-footer,
ob-footer.main-footer a,
ob-footer.main-footer span.footer-copyright,
ob-footer.main-footer span.justify-end {
    color: #fff !important;
}

/*Button language links subfooter*/
/*Language & icon */
ob-footer.main-footer span.mdc-button__label,
ob-footer.main-footer mat-icon.mat-icon {
    color: #fff !important;
}

/*Border*/
ob-footer.main-footer ob-button>.mat-mdc-outlined-button {
    border: 1px solid #fff !important;
}

/*Powered by*/
/*Logo ONEBOX*/
ob-footer.main-footer img {
    filter: brightness(20) !important;
}

/*Text powered by*/
ob-footer.main-footer section.items-center {
    color: #fff;
}

/*Text footer adhoc*/
ob-footer.main-footer a,
ob-footer.main-footer span {
    font-weight: 400 !important;
}

/*Text footer adhoc*/
ob-footer.main-footer a,
ob-footer.main-footer span {
  font-weight: 400 !important;
}

/*Force powered by fever*/
.fever-logo {
  display: block !important;
}

.onebox-logo {
  display: none
}

/********* 
2 - PRESALE
*********/
.background-blur {
  background-image: url('https://client-dists-resources.s3.amazonaws.com/channels-client/realsociedad/assets/background.webp');
  /*La URL de tu imagen*/
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(80%);
}

/********* 
3 - CUSTOM PAGE BLUR SECTION
*********/
/*custom color on page blur*/
ob-page-event .page-header-blur {
  background-color: #0158B1 !important;
}

ob-page-select-locations .page-header-blur {
  background-color: #0158B1 !important;
}

/********* 
4 - FIX
*********/
/*custom tarjeta de fecha pendiente*/
.item-date-container.unconfirmed {
  min-width: 80px !important;
}

/********* 
5 - WAITING LIST MODULE
*********/

/*Reset box-sizing for all elements inside the waiting list module*/
.wl-container * {
  box-sizing: border-box;
}

/*Main container: Fully fluid and centered layout*/
.wl-container {
  width: 100%;
  margin: 0 auto;
  padding: 24px 20px;
  background-color: #000000;
  border-top: 4px solid #0058b1;
  border-radius: 4px;
  color: #ffffff;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 8px 10px rgb(0 0 0 / 21%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*Main title typography with fluid scaling*/
.wl-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px 0;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/*Description text body*/
.wl-description {
  font-size: clamp(13px, 2.5vw, 14px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  max-width: 600px;
}

/*Primary call-to-action button (styled anchor tag)*/
.wl-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  background-color: #0058b1;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid #0058b1;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/*Interactive States: Hover & Keyboard Focus*/
.wl-btn-link:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/*Accessible focus ring for keyboard navigation*/
.wl-btn-link:focus-visible {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  outline: 3px solid #0058b1;
  outline-offset: 4px;
}