body {
    font-family: 'Open Sans' sans-serif;
    color: #333; 
    background-color: #fff;
    line-height: 1.6;
}

.site-navbar {
    background-color: #000 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.site-navbar .navbar-brand span{
    font-family: 'Playfair Display' serif;
    font-size: 1.4rem;
    color: white;
    white-space: nowrap;
}

.site-navbar.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/*  change dropdown menu background */
.site-navbar .dropdown-menu {
    color: #333; 
}

.site-navbar .dropdown-menu .dropdown-item {
    color: #333;
}

.site-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #333;
    color: #fff;
}

.header-image  {
    position: relative;
    width: 100vw;
    height: 60vh; /* Example: 60% of viewport height */
    max-height: 700px; /* Optional max height */
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-image img {
    object-fit: cover;
    height: 100%;
}

.hero {
    height: 80vh;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.1); /* Opacity of the header image */
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
    padding: 1rem 2rem;
}

.hero-content.left-centered {
     position: absolute;
     top: 50%;
     left: 0;
     width: 50%;    /* Changes the width of the left centered text box */
     transform: translateY(-50%);
     padding: 2rem;
     margin-left: 8rem;
     margin-top: 2rem;
     text-align: center;
     z-index: 3;
     color: white;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}

@media (max-width: 768px) {
    .hero-content.left-centered {
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
        text-align: center;
        align-items: center;
        padding: 1rem;
    }

    .hero-content.left-centered h1 {
        font-size: 1.75rem;
    }

    .hero-content.left-centered p {
        font-size: 1rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.callout-box {
    flex: 1 1 100%;
    max-width: 500px;
    min-height: 80px;
    padding: 1.25rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    text-align: center;
}

.horizontal-callouts {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.horizontal-callouts .callout-box {
    flex: 1;
    max-width: 22%;
    box-sizing: border-box;
}

.horizontal-callouts .callout-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.horizontal-callouts .callout-box h3 {
    min-height: 3em;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.75rem;
    line-height: 1.2;
}

.horizontal-callouts .callout-box p {
    margin-top: auto;
    font-size: 1.1rem;
    color: #444;
}

@media (max-width: 768px) {
    .horizontal-callouts .callout-box {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

.town-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.town-links a {
    display: inline-block;
    color: blue;
    text-decoration: underline;
}

.town-links a:hover {
    color: red ;
}

@media (max-width: 576px) {
    .town-links {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 10px;
    }

    .town-links a {
        width: 100%;
        text-align: center;
        flex: 1 1 100%;
    }

    .town-links a:hover {
        color: red;
    }
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.gap-3 {
    gap: 1rem;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 0.5rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

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

.quick-services {
    padding: 3rem 0;
}

.quick-services h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}

.quick-services p {
    font-size: 1.1rem;
    color: #555;
}

.btn-warning {
    background-color: #f7c340;
    border: none;
}

.btn-warning:hover {
    background-color: #e6b731;
}

.btn-dark:hover {
    background-color: #333 !important;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #000;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.auto-expand {
    resize: none;
    overflow-y: auto;
    max-height: 200px;
}

.text-start-md {
    text-align: left;
}

.footer-col.text-start-md {
    max-width: 500px;
    margin-left: 1rem;
}

.map-wrapper {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .map-wrapper{
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}

.map-col {
    flex: 2 1 0;
    max-width: 300px;
}

.map-col .ratio iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .map-col {
        flex: 1 1 100%;
        min-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .map-col {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

.site-footer {
    background-color: #000;
    color: white;
}

.site-footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}


.site-footer p,
.site-footer ul {
    margin-top: 0.75rem;
    list-style: none;
}

.footer-link {
    color: white;
    text-decoration: underline;
}

.footer-link:hover {
    text-decoration: underline double;
    color: #fff;
}

@media (min-width: 992px) {
    .footer-row {
        justify-content: space-between;
        gap: 2rem;
    }

    .footer-row .footer-col { 
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .footer-col ul {
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-col.text-start-md,
    .map-col{
        max-width: none;
        margin-left: 0;
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .footer-row { 
        flex-direction: column;
        align-items: center; 
    }

    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-col ul {
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: inline-block;
    }
    
    .site-footer ul {
        padding-left: 0;
    }
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-list i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.contact-list2 {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
}

.contact-list2 li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-list2 i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .contact-list li {
        justify-content: center;
        text-align: center;
    }

    .contact-list i {
        margin-right: 6px;
    }

    .contact-list2 li {
        justify-content: center;
        text-align: center;
    }

    .contact-list2 i {
        margin-right: 6px;
    }
}