:root {
    --primary: #ff0080; /* Replace with your chosen primary color */
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('../images/background-image.jpg');
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Higher z-index than your main content */
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Display rounded shape around the active nav-link */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link.active {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.navbar-nav .nav-link:hover {
    color: darkturquoise;
    cursor: pointer;
}


.navbar-nav .nav-link.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-color: #1abc9c;
    opacity: 1;
    transform: scale(1);
    z-index: -1;
}

/* Show rounded shape on hover for other nav-links */
.navbar-nav .nav-link:not(.active):hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-color: #3498db; /* Another color on hover (Blue) */
    opacity: 0;
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: -1;
}

.image-container img {
    --s: 10px;
    padding: var(--s);
    border: calc(2 * var(--s)) solid #0000;
    outline: 1px solid #000;
    outline-offset: calc(-1 * var(--s));
    background: conic-gradient(from 90deg at 1px 1px, #0000 25%, #000 0);
}

.image-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.2);
    border-radius: 25%; /* Increase the scale factor for a bigger image */
}

.image-container:hover img {
    transform: scale(1.2);
    border-radius: 25%; /* Apply the same scale to the image itself */
}

.price-list {
    margin-top: 50px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.price-list th {
    background-color: #1abc9c;
    color: white;
    padding: 15px;
    text-align: center;
}

.price-list td {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: center;
    transition: background-color 0.3s;
}

.price-list tr:hover td {
    background-color: #d1d8e0;
}

.card {
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px); /* Lift the card slightly on hover */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Adjust shadow on hover */
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    margin-top: 20px;
}

p.large-line-distance {
    line-height: 2.0; /* Larger line height for more spacing between lines */
}

#scroll-up-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 999;
    width: 50px; /* Adjust the button width */
    height: 50px;
}

.map-container:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #1abc9c; /* Custom border color on hover */
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #3498db;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}


@media (min-width: 992px) {
    .larger-map {
        width: 500px; /* Adjust the width for larger screens */
        height: 300px; /* Adjust the height accordingly */
    }
}


