:root {
  --marel-green: #E8B84B;
  --marel-dark: #C49830;
  --marel-light: #fef9ec;
  --marel-black: #1a1a1a;
}

/* ── General ── */
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  padding-top: 76px;
}

a { text-decoration: none; }

/* Linki kontaktowe – widoczne jako klikalne */
a[href^="tel:"], a[href^="mailto:"] {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.navbar a[href^="tel:"],
.navbar a[href^="mailto:"] {
  text-decoration: none;
}

/* ── Navbar ── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.navbar-brand img {
  height: 52px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: .5rem 1rem !important;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--marel-green) !important;
}

.nav-link.active {
  border-bottom: 2px solid var(--marel-green);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              url('../img/strona-top-index-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 100px;
  margin-bottom: 60px;
}

.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
.hero p  { font-size: 1.2rem; opacity: .9; }

.btn-marel {
  background: var(--marel-green);
  color: #1a1a1a;
  border: none;
  padding: .6rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background .2s, transform .15s;
}

.btn-marel:hover {
  background: var(--marel-dark);
  color: #1a1a1a;
  transform: translateY(-2px);
}

.btn-booking {
  background: #003580;
  color: #fff;
  border: none;
  padding: .55rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  line-height: 1.2;
  transition: background .2s, transform .15s;
}

.btn-booking img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 3px;
}

.btn-booking:hover {
  background: #00256a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-marel {
  border: 2px solid var(--marel-green);
  color: var(--marel-green);
  padding: .6rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  background: transparent;
  transition: all .2s;
}

.btn-outline-marel:hover {
  background: var(--marel-green);
  color: #fff;
}

/* ── Section titles ── */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--marel-black);
  margin-bottom: .4rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--marel-green);
  border-radius: 2px;
  margin: .5rem auto 0;
}

/* ── Feature cards (index) ── */
.feature-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

.feature-card .icon-wrap {
  width: 72px; height: 72px;
  background: var(--marel-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.feature-card .icon-wrap i {
  font-size: 2rem;
  color: var(--marel-green);
}

/* ── About strip ── */
.about-strip {
  background: var(--marel-light);
  border-left: 5px solid var(--marel-green);
  border-radius: 8px;
  padding: 2rem 2.5rem;
}

/* ── Property cards ── */
.property-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

.property-card .card-img-wrap {
  height: 220px;
  background: var(--marel-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.property-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card .placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #aaa;
  gap: .5rem;
}

.property-card .placeholder-img i { font-size: 3rem; }
.property-card .placeholder-img span { font-size: .85rem; }

.badge-marel {
  background: var(--marel-green);
  color: #fff;
  font-size: .75rem;
  padding: .3rem .7rem;
  border-radius: 20px;
}

/* ── Services (zarządzanie) ── */
.service-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: box-shadow .2s;
}

.service-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }

.service-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--marel-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.service-icon i { font-size: 1.6rem; color: var(--marel-green); }

/* ── Contact ── */
.contact-info-box {
  background: var(--marel-light);
  border-radius: 16px;
  padding: 2rem;
}

.contact-info-box h5 {
  color: var(--marel-dark);
  font-weight: 700;
}

.contact-info-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-info-item i {
  color: var(--marel-green);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-control:focus, .form-select:focus {
  border-color: var(--marel-green);
  box-shadow: 0 0 0 .2rem rgba(45,184,45,.2);
}

.form-label { font-weight: 500; }

/* ── Info bar ── */
.info-bar {
  background: var(--marel-green);
  color: #1a1a1a;
  padding: .9rem 0;
  font-size: .9rem;
}

.info-bar a { color: #1a1a1a; }
.info-bar a:hover { opacity: .7; }

/* ── Footer ── */
footer {
  background: #111;
  color: #e0e0e0;
}

footer .logo-footer { height: 50px; border-radius: 8px; }

footer a { color: #bbb; transition: color .2s; }
footer .text-muted { color: #c8c8c8 !important; }
footer a:hover { color: var(--marel-green); }

footer .social-icon {
  width: 40px; height: 40px;
  background: #333;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
}

footer .social-icon:hover { background: var(--marel-green); }

.footer-divider { border-color: #444; }
.footer-copy { font-size: .82rem; color: #888; }

/* ── Page header ── */
.page-header {
  background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
  color: #fff;
  padding: 60px 0 50px;
  margin-bottom: 60px;
}

.page-header h1 { font-weight: 700; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { color: rgba(255,255,255,.75); }
.page-header .breadcrumb-item.active { color: #fff; }
.page-header .breadcrumb-divider { color: rgba(255,255,255,.5); }
