/* apartmanirakic.com — coastal / hospitality palette on top of base.css */
:root {
  --brand:        #2a7d8c;   /* Adriatic teal */
  --brand-dark:   #1a5560;
  --brand-accent: #e0a458;   /* warm sand */
  --ink:          #20302f;
  --ink-soft:     #566462;
  --line:         #e7e1d6;
  --bg:           #ffffff;
  --bg-soft:      #f6f3ec;    /* sand paper */
  --bg-contrast:  #16323a;    /* deep sea */
}

/* hero */
.hero-home {
  position: relative; min-height: min(86vh, 760px);
  display: grid; align-items: end;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,30,35,0.15) 0%, rgba(10,30,35,0.65) 100%),
              var(--hero-img, #16323a) center/cover no-repeat;
}
.hero-home .wrap { padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.hero-home h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-home .lead { color: rgba(255,255,255,0.9); max-width: 44ch; margin-top: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

/* small feature row */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.feature svg { width: 26px; height: 26px; color: var(--brand); flex: none; }

/* apartment cards */
.apt-badge { display: inline-block; background: var(--brand-accent); color: #1a1a1a; font-size: var(--step--1); font-weight: 700; padding: 0.15em 0.7em; border-radius: 999px; }
.apt-meta { color: var(--ink-soft); font-size: var(--step--1); margin-top: 0.35rem; }

/* pricing table */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1rem; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 0.85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--bg-soft); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.06em; }
.price-table td:last-child { font-weight: 700; color: var(--brand-dark); white-space: nowrap; }
.price-notes { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.9rem; }
.price-notes li { margin-top: 0.25rem; }

/* room image strip on apartment pages */
.room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.room-grid img { aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; width: 100%; }

.contact-lines { list-style: none; padding: 0; }
.contact-lines li { padding: 0.35rem 0; display: flex; gap: 0.6rem; align-items: center; }
