/**
 * Theme Name: Orange Bloods
 * Template: soledad
 * Description: Orange Bloods child theme with main Soledad theme.
 * Version: 1.0
 */

:root {
  --site-primary-color: #bf5700;
  --site-background-color: #f5f6f9;
  --site-premium-color: #29f085;
  --text-primary-color: #bf5700;
  --text-secondary-color: #7e7e7e;
  --text-heading-color: #313131;
  --border-color: #e0e0e0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-24: 6rem;
  --ob-container-width: 1170px;
}

html {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.75rem);
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1rem, 1.25vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.ob-button {
  background-color: var(--site-primary-color);
  color: #fff !important;
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.755rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;

  &:hover {
    background-color: color-mix(in srgb, var(--site-primary-color), #000 10%);
    color: #fff !important;
    text-decoration: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-heading {
  position: relative;
  z-index: 1;
  text-transform: uppercase;

  span {
    display: inline-block;
    padding: 0 var(--spacing-8);
    background-color: #fff;
  }

  &::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    border: 1px solid var(--border-color);
  }
}

article figure img {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

article figure img:hover {
  transition: transform 0.2s ease-in-out;
  transform: scale(1.1);
}

/* Homepage */
#main.site-home,
#main.site-login {
  padding: 0 var(--spacing-4) var(--spacing-12);
}

.site-home__container,
.site-login__container {
  max-width: var(--ob-container-width);
  margin: 0 auto;
  display: grid;
}

.site-home__container {
  row-gap: var(--spacing-24);
}

.site-login__container {
  row-gap: var(--spacing-4);
}

/* Premium styles */
.ob-protected-content-cta {
  background-color: color-mix(in srgb, var(--site-primary-color), #fff 90%);
  padding: var(--spacing-4);
  border: 1px solid var(--site-primary-color);
  text-align: center;
}
