/* === EL OJO DE SOFÍA C === */

:root {
  --sc-cream: #F5EDD8;
  --sc-red: #c02d26;
  --sc-sans: 'Hanken Grotesk', sans-serif;
  --sc-serif: 'Cormorant Garamond', serif;
  --sc-script: emmascript-mvb-std, cursive;
}

body, .wp-site-blocks {
  background-color: var(--sc-cream) !important;
  color: var(--sc-red) !important;
  font-family: var(--sc-sans) !important;
  font-weight: 300;
}

.wp-block-navigation, .wp-block-navigation a {
  font-family: var(--sc-serif) !important;
  font-size: 15px !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  color: var(--sc-red) !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.wp-block-site-title a, .wp-block-site-title {
  font-family: var(--sc-sans) !important;
  font-size: 13px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--sc-red) !important;
  font-weight: 500 !important;
}

h1 {
  font-family: var(--sc-serif) !important;
  font-weight: 300 !important;
  font-style: normal !important;
  text-transform: none !important;
  color: var(--sc-red) !important;
  line-height: 1.6;
  font-size: clamp(20px, 2vw, 28px) !important;
}

h2 {
  font-family: var(--sc-serif) !important;
  font-weight: 300 !important;
  font-style: normal !important;
  color: inherit !important;
  line-height: 1.25;
}

p, li {
  font-family: var(--sc-sans) !important;
  font-weight: 300 !important;
  line-height: 1.7;
}

.wp-block-button__link {
  font-family: var(--sc-sans) !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  padding: 12px 28px !important;
}

.sc-name {
  font-family: var(--sc-script) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  display: inline !important;
  line-height: 1;
  vertical-align: middle;
}

.sc-work-categories li {
  font-family: var(--sc-serif) !important;
  font-size: clamp(22px, 3vw, 36px) !important;
  font-style: italic;
  font-weight: 300 !important;
  padding: 8px 0;
  border-bottom: 1px solid rgba(192,45,38,0.2);
}

/* === HERO ICONS SIZE === */
img[src*="flor_icon"],
img[src*="estrella_icon"],
img[src*="mano_icon"] {
  width: 160px !important;
  height: 160px !important;
  max-width: 160px !important;
  object-fit: contain !important;
}

/* === MY WORK PAGE === */
.sc-mw-nav a, .sc-sec-label {
  text-transform: none !important;
}
.sc-mw-title {
  text-transform: none !important;
}

/* === HERO BACKGROUND IMAGE === */
/* To activate: replace YOUR_IMAGE_URL with the uploaded photo URL */
.sc-hero-section {
  position: relative !important;
  overflow: hidden !important;
  min-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  background-color: #F5EDD8 !important;
}

/* Blurred background image layer — replace URL when ready */
.sc-hero-section::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('YOUR_IMAGE_URL');
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.05);
  z-index: 0;
  opacity: 0; /* set to 1 when image is uploaded */
}

/* Subtle overlay for text legibility */
.sc-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 237, 216, 0.55);
  z-index: 1;
  opacity: 0; /* set to 1 when image is uploaded */
}

.sc-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* El ojo de Sofía C — hover + nav */
.sc-mywork-cats a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-bottom-color 0.25s, color 0.25s !important;
}
.sc-mywork-cats a:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.wp-block-navigation__container .wp-block-navigation-item__content,
header .wp-block-navigation a {
  font-size: 13px !important;
}