.showcase-featured-image img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.showcase-meta p{
    margin-top: 80px;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 8px;
    padding-left:9px;
}

.showcase-content{
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    gap: 40px;
    margin-bottom: 80px;
}

.showcase-title{
    max-width: 675px;
    line-height: 118%;
}
.showcase-content-inner{
  margin-left:auto;
}
.showcase-content p{
    max-width: 500px;
    /* margin-top: 90px; */
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

/* Full width items span both columns */
.showcase-gallery-item.full {
  grid-column: 1 / -1;
}

/* Rounded corners */
.showcase-gallery-item,
.showcase-gallery-item img {
  border-radius: 20px;
}

.showcase-gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* Default layout: auto height */
.showcase-gallery-item img {
  height: auto;
}

/* Big layout: normal full-width rows */
.showcase-gallery--big .showcase-gallery-item.full.normal img {
  height: 580px;
}

/* Big layout: tall full-width rows */
.showcase-gallery--big .showcase-gallery-item.full.tall img {
  height: 780px;
}

/* Big layout: halves (same height always) */
.showcase-gallery--big .showcase-gallery-item.half img {
  height: 648px;
}

.showcase-navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.showcase-navigation a{
    color: #553A30;
    font-family: Aboreto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    text-underline-offset: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.showcase-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px; /* adjust distance from text */
    width: 0;
    height: 1px; 
    box-shadow: 0 1px 0 #553A30; 
    transition: width 0.3s ease-in-out;
    pointer-events: none;
}

/* Hover state: expand underline */
.showcase-navigation a:hover::after {
    width: 100%;
}



.enquire-section{
    padding-bottom: 170px;
    margin-top: 100px;
}

.enquire-section h1{
    margin-bottom: 20px;
}

.enquire-section .pcenter{
    max-width: 500px;
}

.enquire-section .btn1{
    display: block;
    width: fit-content;
    margin: auto;
    margin-top: 40px;
}

@media screen and (max-width : 1300px){
    .showcase-title{
        font-size: 70px;
    }
}


@media (max-width: 767px) {
  

  .showcase-gallery {
    gap: 10px;
  }

  .showcase-gallery-item img {
    border-radius: 5px;
  }

  .showcase-hero-container {
    width: 100% !important;
    padding: 0;
  }

  .showcase-featured-image img {
    border-radius: 0;
    height: 290px;
    object-fit: cover;
  }

  /* Big layout mobile heights */
  .showcase-gallery--big .showcase-gallery-item.full.normal img {
    height: 220px;
  }

  .showcase-gallery--big .showcase-gallery-item.full.tall img {
    height: 360px;
  }

  .showcase-gallery--big .showcase-gallery-item.half img {
    height: 169px;
  }

  #main{
    padding-top: 0 !important;
  }

  .showcase-meta p{
    margin-top: 30px;
    font-size: 16px;
    margin-bottom: 15px;
    
  }
  .showcase-title{
    font-size: 28px;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .showcase-content{
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    align-items: flex-start;
  }

  .showcase-content p{
    margin-top: 0;
    max-width: 100%;
    
  }

  .showcase-navigation{
    flex-direction: column-reverse;
    justify-content: center;
    gap: 30px;
  }

  .showcase-navigation a{
    font-size: 17px;
  }

  .enquire-section{
        margin-top: 80px;
        padding-bottom: 80px;
    }

    .enquire-section h1{
        max-width: 240px;
        margin: auto;
        letter-spacing: -3.5px;
        margin-bottom: 10px;
    }

    .enquire-section .btn1{
        margin-top: 20px;
    }

    p.section-subtitle{
        margin-bottom: 10px;
    }

    .enquire-section .section-subtitle{
        letter-spacing: 7.2px;
        margin-bottom: 10px;
    }

}

