/* =========================================================
   BASE RESET
   ========================================================= */
:root {
  --brand-yellow: #e1b12c;

  /* Layout sizing */
  --footer-height: 30px;   /* matches footer-band-inner */
}

.site-header {
  min-height: var(--header-height);
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #ffffff;
  padding-bottom: 34px; /* reserve space for fixed bottom band */

  /* ADD THESE 3 LINES */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================
   LAYOUT CONTAINER
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top header bar */
.header-top {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-top-inner {
  display: flex;
  align-items: center;
  padding: 5px 0;
}


/* Logo */
.logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

/* Right header content */
.header-right {
  text-align: right;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-right .address {
  color: #555;
  font-size: 16px;
  margin-bottom: 2px;
}

.header-right .contact {
  font-size: 16px;
  color: #222;
}

.call-wa {
  font-size: 13px;
  color: #555;
  margin-left: 6px;
}

/* =========================================================
   MAIN NAVIGATION (TOP MENU)
   ========================================================= */
.main-nav {
  background: #ffffff;
  margin-top: -12px;        /* premium overlap */
  position: relative;
  z-index: 10;
}

.main-nav-inner {
  background: #222222;
  border-bottom: 3px solid var(--brand-yellow);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* remove container padding ONLY for menus */
.main-nav .container {
  padding-left: 0;
  padding-right: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  width: 100%;
}

.main-nav li {
  flex: 1 1 0;
  text-align: center;
}

/* vertical separators */
.main-nav li + li {
  border-left: 1px solid #333;
}

.main-nav a {
  display: block;
  width: 100%;
  padding: 18px 10px;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease;
}

/* hover */
.main-nav li:hover {
  background: var(--brand-yellow);
}

.main-nav li:hover a {
  color: #111;
}

/* active state (same as hover) */
.main-nav li.active {
  background: var(--brand-yellow);
}

.main-nav li.active a {
  color: #111;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */
main {
  padding: 0px 0;
}

/* ---------- Body Text Justification ---------- */
main p {
  text-align: justify;
  text-justify: inter-word;
}


/* =========================================================
   FIXED FOOTER BAND (NO BUTTONS)
   ========================================================= */

/* Full-width wrapper; the black band itself stays within container width */
.footer-band {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}

/* Remove container padding ONLY for footer band */
.footer-band .container {
  padding-left: 0;
  padding-right: 0;
}

.footer-band-inner {
  background: #222222;
  border-top: 3px solid var(--brand-yellow);
  height: 30px; /* about half the old menu height */
}

.footer-band-content {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* right aligned */
  height: 100%;
  padding-right: 12px;
}

.footer-copyright {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brand-highlight {
  color: var(--brand-yellow);   /* same yellow as menu hover */
  font-weight: 500;
}



/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
  background: #ffffff;
  margin-bottom: 10px;
}

.slider-inner {
  padding: 0;
}

/* slide wrapper */
.slides {
  position: relative;
  width: 100%;
  height: 420px;        /* adjust height if needed */
  overflow: hidden;
}

/* images */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

/* active slide */
.slide.active {
  opacity: 1;
}

/* mobile */
@media (max-width: 900px) {
  .slides {
    height: 260px;
  }
}

/* ===== HEADER RIGHT: contact + social (FINAL CLEAN) ===== */

.header-right-group{
  margin-left: auto;
  display: flex;
  align-items: center;     /* aligns icons with contact block */
  gap: 10px;               /* controls spacing */
}

.header-right{
  max-width: none;         /* remove 420px constraint */
  text-align: right;
}

/* social icons column */
.social-links{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}



/* Active menu item */
.main-nav li.active {
  background: var(--brand-yellow);
}

.main-nav li.active a {
  color: #111;
  font-weight: 600;
}

/* ===== SOCIAL ICONS – BRAND COLORS ===== */

.social-links a{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}

.social-links svg{
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Brand colors */
.icon-instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.icon-facebook  { background: #1877f2; }
.icon-linkedin  { background: #0a66c2; }

/* Hover effect (premium) */
.social-links a:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* =========================================================
   MOBILE HEADER FIX
   ========================================================= */
@media (max-width: 900px) {

  /* Header container stays horizontal */
  .header-top-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Shrink logo */
  .logo{
    width: 90px;
    height: 90px;
  }

  /* Right side: icons only */
  .header-right-group{
    margin-left: auto;
    align-items: center;
    gap: 6px;
  }

  /* Hide verbose contact text on mobile */
  .header-right{
    display: none;
  }

  /* Social icons become horizontal */
  .social-links{
    flex-direction: row;
    gap: 6px;
  }

  .social-links a{
    width: 26px;
    height: 26px;
  }

  .social-links svg{
    width: 14px;
    height: 14px;
  }

  /* Menu spacing tighter */
  .main-nav a{
    padding: 14px 10px;
    font-size: 15px;
  }
}

/* =========================================================
   HAMBURGER MENU (MOBILE)
   ========================================================= */

/* button hidden on desktop */
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#111;
  margin:6px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* mobile behaviour */
@media (max-width: 900px){

  /* show hamburger */
  .nav-toggle{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
  }

 

  /* COLLAPSED by default on mobile */
  #mainNav .main-nav-inner{
    display:none;
  }

  /* OPEN state */
  body.nav-open #mainNav .main-nav-inner{
    display:block;
  }

  /* mobile menu list stacks */
  #mainNav ul{
    flex-direction:column;
  }

  #mainNav li + li{
    border-left:none;
    border-top:1px solid #333;
  }

  /* nice touch: hamburger turns into X */
  body.nav-open .nav-toggle span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2){
    opacity:0;
  }
  body.nav-open .nav-toggle span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}



/* ===== FINAL MOBILE MENU TOGGLE (DO NOT MOVE) ===== */
@media (max-width: 900px){

  /* hide menu list by default */
  #mainNav ul{
    display:none !important;
  }

  /* show when hamburger toggled */
  body.nav-open #mainNav ul{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
  }
}

/* =========================================================
   MOBILE HEADER + HAMBURGER (FINAL, CLEAN)
   ========================================================= */
@media (max-width: 900px){

  /* Header layout */
  .header-top-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo{
    width: 90px;
    height: 90px;
  }

  .header-right{
    display:none;
  }

  .header-right-group{
    gap: 6px;
  }

  .social-links{
    flex-direction: row;
    gap: 6px;
  }

  .social-links a{
    width: 26px;
    height: 26px;
  }

  .social-links svg{
    width: 14px;
    height: 14px;
  }

  /* Hamburger button */
  .nav-toggle{
    display:inline-flex;
  }

  /* Navigation toggle */
  #mainNav ul{
    display:none;
  }

  body.nav-open #mainNav ul{
    display:flex;
    flex-direction:column;
    width:100%;
  }

  #mainNav li + li{
    border-left:none;
    border-top:1px solid #333;
  }
}

.rental-grid{
  display: grid;

  /* ✅ fallback values if a page forgets to pass --cols/--rows */
  grid-template-columns: repeat(var(--cols, 3), 1fr);

  gap: 2px;
  background: var(--brand-yellow);

  width: 100%;        /* ✅ prevents “tiny centered” shrink */
  max-width: 980px;
  margin: 0px auto;
}


.rental-tile{
  background: #ffffff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;

  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Hover only for clickable tiles (anchors) */
a.rental-tile:hover{
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}


a.rental-tile:hover{
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}


.rental-tile img{
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}

/* Empty cells must remain white */
.rental-tile--empty{
  background: #ffffff;
}


/* Leasing / grid pages: center between header and fixed footer */
.rent-page{
  padding: 28px 0 60px;  /* top spacing + space for fixed footer */
}


main.rent-page {
  width: 100%;
}

.rental-tile{
  overflow: hidden; /* keeps scaling inside cell */
}

.tile-inner{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform 0.18s ease;
}

a.rental-tile:hover .tile-inner{
  transform: scale(1.05);
}

.breadcrumb{
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 24px;
  padding: 0 20px;
  font-size: 14px;
  color: #777;
}

.breadcrumb a{
  color: #444;                /* darker than normal text */
  text-decoration: underline; /* shows it's clickable */
  text-underline-offset: 3px; /* modern spacing */
  transition: color .2s ease;
}

.breadcrumb a:hover{
  color: var(--brand-yellow);
}

.breadcrumb span{
  margin: 0 6px;
}


/* =========================================================
   BUTTONS (UNIFIED SITE-WIDE)
   ========================================================= */
.btn-primary,
.btn-wa,
.btn-subtle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

/* Make <button class="btn-primary"> look same as <a class="btn-primary"> */
button.btn-primary,
button.btn-wa,
button.btn-subtle{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0; /* optional */
}


/* Primary (yellow) */
.btn-primary{
  background: var(--brand-yellow);
  color: #111;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

/* WhatsApp (sober) */
.btn-wa{
  background: #25D366;
  color: #111;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.btn-wa:hover{
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* Subtle (Call) */
.btn-subtle{
  background:#fff;
  color:#333;
  border:1px solid #dcdcdc;
  font-weight:500;
  transition: background .2s ease, border-color .2s ease;
}
.btn-subtle:hover{
  background:#f6f6f6;
  border-color:#cfcfcf;
}


.map-wrapper{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
}

.map-wrapper iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* Make button element behave like anchor buttons */
button.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background: var(--brand-yellow);
  color: #111;
  border: 1px solid transparent;
  cursor: pointer;
}

.field-note{
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

/* orchid Villas buttton on homepage*/
.cta-center {
  text-align: center;
  margin: 10px 0 10px 0;
}

.btn-yellow {
  letter-spacing: 1px;
  text-transform: uppercase; 
  display: inline-block;
  background-color: #f4c400; /* your brand yellow */
  color: #000;
  padding: 08px 28px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px; /* subtle rounded corners */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-yellow:hover {
  background-color: #d9ad00;
  transform: translateY(-1px);
}


/*trust strip on homepage*/
.trust-strip {
  text-align: center;
  margin: 20px 0 10px 0;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.5px;
}

.trust-strip span {
  margin: 0 8px;
}

.trust-strip .divider {
  color: #ccc;
}

.limited-note {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin: 05px 0 05px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.positioning-title {
  font-size: 26px;
  line-height: 1.15;
  margin: 10px 0 10px 0;
}
@media (max-width: 768px) {
  .hero,
  .cp-slide-viewport {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .cta-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .trust-line {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}
