/* Logo */
.navbar .logo svg {
    width: 200px !important;
    height: 72px !important;
}

/* Nav menu */
@media (max-width: 767px) {
   nav#main-nav ul {
      margin-top: 100px;
   }
}
/* T outline image */
 .t-outline{display: none!important;}

/* Virtual Tour */
.gallery .header {
    padding: 70px 75px;
}

.gallery h2 {
    margin-top: 30px;
}

.gallery h2 a, .gallery h2 a:visited {
    color: #a67446;
}

.gallery #PSTour {
    width: 100%;
    height: 562px; /* Adjust height as needed */
    max-width: 90%; /* Adjust max-width as needed */
    margin: 0 auto 50px auto;
    -webkit-box-shadow: -1px 9px 18px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 9px 18px -6px rgba(0,0,0,0.75);
    box-shadow: -1px 9px 18px -6px rgba(0,0,0,0.75);
 }

.custom-h1 {
    font-family: "futura-pt",sans-serif;
    font-size: 4.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .custom-h1 {
        font-size: 3.6rem;
    }
}

.custom-h1 span {
    color: #a67446;
}

/* Contact forms */
.required {
    color: #b97437;
}

/* Floor Plans */
.floor-plans main #floorplans .fp {
    background-color: #f0f0f2;
}

.floor-plans main #floorplans .fp-footer .btn.matterport-btn {
    margin-bottom: 10px;
}

.floor-plans main #floorplans .fp-footer .btn {
    color: #a67446;
}

.floor-plans main #floorplans .fp-footer .btn:hover {
    color: #fff;
}

/* Footer */

footer .location {
    padding-left: 0 !important;
}  

/* Gallery */
.gallery .photo a.gallery_link:hover:after {
    opacity: initial !important;
}

.gallery .photo a.gallery_link:after {
    content: none !important;
}

/* set a fixed aspect box on the link (or wrap in a .ratio box) */
.gallery_link {
    display:block;
    aspect-ratio: 4 / 3;  /* pick your ratio; or 16/9, 1/1, etc. */
    overflow:hidden;      /* hide the cropped overflow */
}

/* fill the box and crop like background-size: cover */
.photo-img {
    display:block;        /* remove baseline gap */
    width:100%;
    height:100%;
    object-fit:cover;     /* crop without distortion */
}

.gallery .photo a.gallery_link .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(37, 59, 108, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.gallery .photo a.gallery_link:hover .overlay {
    opacity: 1;
}

.gallery .photo a.gallery_link .overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/general/pattern-diagonal-squares.svg) repeat center center;
    background-size: 300px;
    opacity: 0.2;
}