body {
    font-family: 'Verdana', serif;
background: #FFF0C4;
background: linear-gradient(25deg, rgba(255, 240, 196, 1) 0%, rgba(235, 219, 185, 1) 50%, rgba(218, 221, 177, 1) 100%);
}

a{
	color:#8D6E63;
	text-decoration:none;
}

.carousel-item img {
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.btn-primary {
    background-color: #8D6E63;
    border-color: #8D6E63;
}

.btn-primary:hover {
    background-color: #6D4C41;
    border-color: #6D4C41;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Cookie Consent Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 33, 28, 0.95); /* Dark, semi-transparent background */
    color: white;
    padding: 20px;
    z-index: 1050;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
}

#cookie-banner p {
    margin: 0;
    flex-grow: 1;
}

#cookie-banner a {
    color: #E0A75E; /* A light color for links */
    text-decoration: underline;
}
.hover-card {
    transition: transform 0.3s;
}
.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Image Modal Styles */
.service-image {
    cursor: pointer;
    transition: transform 0.2s;
}

.service-image:hover {
    transform: scale(1.05);
}

#image-modal .modal-lg {
    max-width: 80%;
}

#image-modal .modal-content {
    background-color: transparent;
    border: none;
}

#image-modal .modal-body {
    padding: 0;
}

#image-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    background-color: white;
    border-radius: 50%;
    padding: 0.5em;
}