/* =========================================================
   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);
}


/* =========================================================
   SOCIAL MINIMAL — NURIA REALTY
========================================================= */

.nr-social-minimal{
    display:flex;
    gap:14px;
    margin-top:2rem;
}

.nr-social-minimal a{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    color:#c9ccd3;

    font-size:.92rem;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 4px 18px rgba(0,0,0,.18);

    transition:all .35s ease;
}

/* Hover */

.nr-social-minimal a:hover{

    transform:translateY(-3px);

    border-color:rgba(194,29,29,.55);

    color:#ffffff;

    background:
    linear-gradient(
        145deg,
        rgba(194,29,29,.16),
        rgba(70,95,140,.10)
    );

    box-shadow:
    0 8px 22px rgba(194,29,29,.14),
    0 4px 16px rgba(70,95,140,.10);
}