:root {
  --fsb-cream: #f7f0e4;
  --fsb-sand: #e6d2b5;
  --fsb-earth: #8a5a3c;
  --fsb-earth-dark: #5e3b2c;
  --fsb-green: #4f6f52;
  --fsb-green-dark: #334a35;
  --fsb-blue: #6f9ca8;
  --fsb-dark: #2f2a24;
  --fsb-white: #fffaf2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fsb-dark);
  background: var(--fsb-white);
}

h1, h2, h3, h4, .navbar-brand, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

a {
  color: var(--fsb-green);
}

a:hover {
  color: var(--fsb-earth);
}

.navbar {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  a.nav-link, a.navbar-brand {
    color: var(--fsb-white);
  }
}

.navbar.fsb-scrolled {
  background: rgba(255, 250, 242, 0.96) !important;
  box-shadow: 0 8px 24px rgba(47, 42, 36, 0.08);
  backdrop-filter: blur(10px);
   a.nav-link, a.navbar-brand {
    color: var(--fsb-dark);
  }
}

.navbar-brand {
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.btn-fsb-primary {
  background: var(--fsb-green);
  border-color: var(--fsb-green);
  color: #fff;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
}

.btn-fsb-primary:hover {
  background: var(--fsb-green-dark);
  border-color: var(--fsb-green-dark);
  color: #fff;
}

.btn-fsb-outline {
  border: 1px solid rgba(255, 250, 242, 0.75);
  color: #fff;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
}

.btn-fsb-outline:hover {
  background: var(--fsb-white);
  color: var(--fsb-green-dark);
}

.btn-fsb-light {
  background: var(--fsb-white);
  color: var(--fsb-green-dark);
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
}

.btn-fsb-light:hover {
  background: var(--fsb-sand);
  color: var(--fsb-dark);
}

.hero {
  position: relative;
  height: 75vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #26311f;
}

.hero .carousel-inner,
.hero .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 38, 28, 0.78) 0%,
    rgba(31, 38, 28, 0.52) 45%,
    rgba(31, 38, 28, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  max-width: 900px;
}

.hero .lead {
  max-width: 720px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f4d9a4;
}


.hero-small {
  min-height: 48vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(35, 30, 24, 0.45), rgba(35, 30, 24, 0.62)),
    var(--page-hero-image, url("../../img/bancos_mirador.jpg")) center/cover no-repeat;
}

.hero-small h1 {
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 0.92;
}

.hero .lead,
.hero-small .lead {
  font-size: clamp(1.05rem, 1.5vw, 1rem);
  max-width: 720px;
}

.section-padding {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--fsb-cream);
}

.section-green {
  background: var(--fsb-green-dark);
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--fsb-earth);
}

.section-green .eyebrow,
.hero .eyebrow,
.hero-small .eyebrow {
  color: var(--fsb-sand);
}

.fsb-card {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(47, 42, 36, 0.08);
  height: 100%;
}

.fsb-card img {
  height: 245px;
  object-fit: cover;
}

.fsb-card .card-body {
  padding: 1.4rem;
}

.icon-pill {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 111, 82, 0.12);
  color: var(--fsb-green);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.feature-box {
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 250, 242, 0.85);
  height: 100%;
}

.photo-tile {
  min-height: 310px;
  border-radius: 1.25rem;
  background: var(--image) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(35, 30, 24, 0.58));
}

.photo-tile span {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  bottom: 1rem;
  color: #fff;
  font-weight: 800;
}

.price-card {
  border: 1px solid rgba(138, 90, 60, 0.16);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(47, 42, 36, 0.06);
  height: 100%;
}

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  color: var(--fsb-green-dark);
  font-weight: 700;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  padding-left: 1.8rem;
  margin-bottom: 0.65rem;
  position: relative;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fsb-green);
  font-weight: 900;
}

.callout {
  border-radius: 1.5rem;
  padding: 2rem;
  background: var(--fsb-green-dark);
  color: #fff;
}

.footer {
  background: #211d18;
  color: rgba(255, 250, 242, 0.78);
}

.footer a {
  color: rgba(255, 250, 242, 0.9);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  text-decoration: none;
}

.form-control,
.form-select {
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  border-color: rgba(47, 42, 36, 0.18);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--fsb-green);
  box-shadow: 0 0 0 0.2rem rgba(79, 111, 82, 0.15);
}

.room-card {
  overflow: hidden;
}

.room-main-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.room-card .card-img-top {
  height: 260px;
  object-fit: cover;
}

.room-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(35, 30, 24, 0.82);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.room-card:hover .card-img-top {
  transform: scale(1.03);
}

.room-card .card-img-top {
  transition: transform 0.35s ease;
}

.table-fsb {
  border-radius: 1rem;
  overflow: hidden;
}

.table-fsb th {
  background: var(--fsb-green-dark);
  color: #fff;
}
.experience-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.experience-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    min-height:260px;
}

.experience-item.large{
    min-height:360px;
}

.experience-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.experience-item:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:white;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,.65));
}

.overlay h3{
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    margin-bottom:.3rem;
}

.overlay p{
    margin:0;
}

.experience-callout{
    text-align:center;
    max-width:760px;
    margin:auto;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 76vh;
    padding-top: 6rem;
  }

  .navbar {
    background: rgba(255, 250, 242, 0.97) !important;
    a.nav-link, a.navbar-brand {
    color: var(--fsb-dark);
  }
  }

  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero h1,
  .hero-small h1 {
    font-size: 3rem;
  }

  .fsb-card img {
    height: 210px;
  }
}
