
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.site-content {
    width: 100%;
}

.site-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.site-header .branding {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.site-header .branding img.logo {
    height: 50px;
    margin-right: 15px;
}

.site-header .site-title {
    font-size: 24px;
    font-weight: bold;
}

.main-navigation {
    margin-top: 10px;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.menu-item a {
    text-decoration: none;
    color: #333;
}

.menu-item a:hover,
.current-menu-item a {
    color: #C6A477;
}

.panel {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.panel-heading {
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
}

.panel-body {
    padding: 10px;
    height: 200px;
}

.scroll-box {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.scroll-box-content {
    display: inline-block;
    animation: scroll-up 20s linear infinite;
}

@keyframes scroll-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.scroll-box:hover .scroll-box-content {
    animation-play-state: paused;
}

.site-footer {
    background-color: #f1f1f1;
    padding: 20px 0;
    margin-top: 20px;
}

.address {
    list-style-type: none;
    padding: 0;
}

.address li {
    margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="number"],
.contact-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}


.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

img.rounded-circle {
    border: 5px solid #f8f9fa;
}
main {
    background-color: #f9f9f9;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

.object-fit-cover {
  object-fit: cover;
}

.object-position-center {
  object-position: center;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.6;
}

.description-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* show max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* adjusts height based on font-size */
}


