@import "style2.css";

body {
    color: #faf9f7;
    background: #faf9f7; /*Background*/
}

html, body {
    padding: 0 !important;
}

    body.fancybox-active {
        margin-right: 0;
    }

.header-bar {
    background: #faf9f7; /*Background*/
}

.header-bar ul li a {
    color: #000;
    font-size: 1.0rem; 
    font-weight: bold;
}






.header-bar ul li.active a {
    color: #ef6c57; 
}

.header-bar .site-logo a {
    color: #000;
    font-size: 26px;
}

.bg-black {
  background: #fff !important; 
}

.text-white {
  color: #000 !important; }
.text-black{
  color: #fff !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #000;
  }


.mb-5 {
  margin-bottom: 0rem !important; 
}
.menu-body {
    overflow-y: hidden;
}
.site-mobile-menu{

           border-collapse:separate;
            border:solid white 3px;
            border-radius:10px 0px 0px 0px;
            -moz-border-radius:10px 0px 0px 0px;
}
.main-content .photos .photo-item img {
    margin-top: 0px;
}
.header-bar {
    padding: 50px 25px 0px 30px;
}

.square-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Maintains a square aspect ratio */
    overflow: hidden;
}

    .square-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensures the entire image is visible without cropping */
    }

.bordered-item {
    border: 1px solid #ddd; /* Thin border with a light gray color */
    padding: 2px; /* Optional: adds some space between the border and content */
    border-radius: 10px; /* Optional: gives the border rounded corners */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.text-box {
    flex: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column;
}

.container-fluid.photos {
    display: flex;
    flex-wrap: wrap;
}

.multi-line-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* Limit to 4 lines */
    padding-right: 10px;
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Add ellipsis */
    height: 6rem; /* Adjust based on line-height */
    line-height: 1.2rem; /* Adjust based on font size */
    font-size: 0.85rem; /* Font size */
}

.single-line-ellipsis {
    white-space: nowrap; /* Prevents the text from wrapping to the next line */
    overflow: hidden; /* Hides the overflowing text */
    text-overflow: ellipsis; /* Adds the ellipsis (...) */
}

.text-center {
    text-align: center;
}

.fs-custom {
    font-size: 0.85rem;
}
a {
    color: #888;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

    a:hover {
        color: #555;
        text-decoration: none;
    }