

:root{
  --color-primary: #b8662f;
  --color-secondary: #733916;
  --main-font: "Merriweather Sans", sans-serif;;
}
body {
  font-family: var(--main-font);
  font-weight: normal;
}

.video-hero {
      position: relative;
      height: 90vh;
      overflow: hidden;
      z-index: -1;
      clip-path: polygon(100% 0, 100% 95%, 0 100%, 0 0);
      overflow: hidden;
    }

    .video-hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 1;
    }

    .video-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 2;
    }

    .video-content {
      position: relative;
      z-index: 3;
      height: 90%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

.hero-section {
  /*background: url('../images/hero.jpg') center/cover no-repeat;*/
  min-height: 90vh;
  position: relative;
  overflow: hidden;

}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.15);*/
}

.hero-content {
  position: relative;
  padding-top: 35vh;
  z-index: 2;
}
.hero-logo{
  max-width: 80vw;
}
.hero-logo img{
  width: 98%;
}

.section-title {
  font-weight: 700;
  letter-spacing: 1px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card i {
  font-size: 32px;
  margin-bottom: 15px;
}

.property-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.footer {
    background: var(--color-secondary);
    color: #ccc;
    padding: 90px 0 20px;
    clip-path: polygon(100% 20%, 100% 100%, 0 100%, 0 0);
}

.footer a {
  color: #ccc;
  text-decoration: none;
}


.zigzag-section h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.zigzag-section p {
  color: #555;
  line-height: 1.7;
}

.lux-stack {
  padding: 100px 0;
  background: #ffffff;
}

.lux-stack.alt {
  background: #f6f7f8;
}

.lux-img {
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.lux-img:hover {
  transform: scale(1.03); /* Slight zoom */
  box-shadow: 0 40px 80px rgba(0,0,0,0.18); /* Slightly deeper shadow */
}

.lux-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a8a;
}

.lux-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.lux-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}


.btn-fill-bt {
    position: relative;
    padding: 8px 30px;
    color: var(--color-secondary);
    background: transparent;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    font-weight: bold;
    transition: color 0.4s ease;
    border-radius: 4px;
    text-decoration: none;
}

.btn-fill-bt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-fill-bt:hover {
  color: #fff;
}

.btn-fill-bt:hover::before {
  transform: scaleY(1);
}

.col.mid{
  border-left: 1px dashed #333;
  border-right: 1px dashed #333;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.coupe>img {
    width: 80%;
    max-width: 200px;
    display: block;
    margin: 0 auto 30px;
}
.container p, .container li{
    font-size: 16px;
    font-weight: lighter;
    text-align: justify;
    line-height: 24px;
}
.subject-heading {
    margin: 8px 0 8px 15px;
    padding: 5px 15px;
    border-left: 6px solid #b34300;
    color: #733916;
}


/* Masonry Layout */
.masonry{
    column-count:4;
    column-gap:1rem;
}

@media(max-width:1200px){ .masonry{column-count:3;} }
@media(max-width:768px){ .masonry{column-count:2;} }
@media(max-width:576px){ .masonry{column-count:1;} }

.item{
    break-inside: avoid;
    margin-bottom:1rem;
    position:relative;
    overflow:hidden;
    border-radius:14px;
    cursor:pointer;
}

.item img{
    width:100%;
    border-radius:14px;
    transition:.4s ease;
}

.item:hover img{
    transform:scale(1.08);
}

/* Overlay */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    opacity:0;
    transition:.3s;
}

.item:hover .overlay{
    opacity:1;
}

hr {
    margin: 35px auto;
    border: none;
    border-bottom: 1px dashed #333;
    display: block;
    background-color: transparent;
    height: 22px;
}
.footer hr {
    border-bottom: 2px solid #fff3cd!important;
}