/* =========================================================
   NURIA REALTY — GLOBAL STYLES
========================================================= */

:root{
  --nr-red:#c21d1d;
  --nr-dark:#161616;
  --nr-text:#2d2d2d;
  --nr-light:#f7f7f5;
  --nr-border:#e5e5e5;
  --nr-white:#ffffff;
}

/* =========================================================
   BASE
========================================================= */

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--nr-text);
  background:var(--nr-white);
  line-height:1.7;
  overflow-x:hidden;
  padding-top:90px;
}

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

h1,h2,h3,h4,h5,h6{
  color:var(--nr-dark);
  font-weight:600;
  line-height:1.2;
  letter-spacing:-0.5px;
}

p{
  margin-bottom:1rem;
  font-size:1rem;
}

a{
  text-decoration:none;
  transition:all .25s ease;
}

/* =========================================================
   SECTION SPACING
========================================================= */

.nr-section{
  padding:110px 0;
}

.nr-section-sm{
  padding:70px 0;
}

/* =========================================================
   SECTION LABEL
========================================================= */

.nr-kicker{
  display:inline-block;
  font-size:.78rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--nr-red);
  margin-bottom:1rem;
  font-weight:600;
}

/* =========================================================
   BUTTONS
========================================================= */

.nr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  background:var(--nr-red);
  color:var(--nr-white);
  border:none;
  font-size:.95rem;
  font-weight:500;
  letter-spacing:.2px;
  transition:all .25s ease;
}

.nr-btn:hover{
  background:#9f1616;
  color:var(--nr-white);
}

.nr-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border:1px solid var(--nr-border);
  color:var(--nr-dark);
  background:transparent;
  transition:all .25s ease;
}

.nr-btn-outline:hover{
  border-color:var(--nr-red);
  color:var(--nr-red);
}

/* =========================================================
   IMAGE
========================================================= */

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================================================
   UTILITIES
========================================================= */

.nr-text-light{
  color:#777;
}

.nr-bg-light{
  background:var(--nr-light);
}

.nr-border-top{
  border-top:1px solid var(--nr-border);
}