header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5; /* Dark background for the header */
    padding: 10px;
    color: #333;
    width: 100%; /* Full width */
    position: fixed; /* Fixed position */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    z-index: 1000; /* Ensure the header is above other content */
}

body {
    padding-top: 60px; /* Add padding to the top of the body to prevent content from being hidden behind the header */
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
	width: 100%; /* Full width */
}

.site-title {
    margin-left: 10px; /* Adjust spacing as needed */
    font-size: 24px; /* Adjust size as needed */
}

.header-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333; /* Text color */
    margin-left: 20px; /* Spacing between the links */
}

.icon {
    margin-right: 5px; /* Spacing between icon and text */
    width: 20px; /* Adjust icon size as needed */
    height: 20px; /* Adjust icon size as needed */
}

.menu-icon {
    /* Style your menu icon accordingly */
    font-size: 24px; /* Adjust size as needed */
    cursor: pointer;
}


.header-container {
    display: flex;
    align-items: center;
	width: 100%; /* Full width */
}

.hamburger {
	display: flex;
	flex-direction: column;
    cursor: pointer;
    /*display: none;  Hide by default, shown in media query below */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    margin-left: 15px; /* Spacing between hamburger and title */
}

.nav-links {
	display: none; /* Hide nav links */
	flex-direction: column;
	width: 40%;
	position: absolute;
	top: 60px;
	left: 0;
	background-color: #f5f5f5;
}

.nav-links a {
    color: #333;
    text-decoration: none;
}

.nav-links.active {
	display: flex; /* Show nav links when active */
}

/* Responsive Design */
@media (max-width: 600px) {
    .hamburger {
        display: flex;
        flex-direction: column;
    }

    .nav-links {
        display: none; /* Hide nav links */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f5f5f5;
    }

    .nav-links.active {
        display: flex; /* Show nav links when active */
    }

    .nav-links a {
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid white; /* Optional */
    }
}

/************* Body **************/

body {
    margin: 0;
    font-family: Arial, sans-serif; /* Example font, change as needed */
    background-color: #f5f5f5; /* Light grey background for the whole page */
    color: #333; /* Default text color */
}

.main-content {
    padding: 20px;
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); /* Gradient effect */
}



/* Big Heading */

.big-heading {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8; /* Light background for contrast */
    margin-bottom: 20px;
}

.big-heading h1 {
    margin: 0;
    color: #333;
    font-size: 2em; /* Large font size for main heading */
}

.big-heading p {
    margin: 0;
    color: #666;
    font-size: 1.2em; /* Slightly smaller font for the subtitle */
}

/* Image Carousel */

.owl-carousel .item {
    text-align: center;
}

.owl-carousel .item img {
    max-height: 50vh; /* Maximum height as 45% of viewport height */
    width: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure image does not exceed the width of the container */
    display: block; /* Remove any default inline spacing */
    margin: 0 auto; /* Center the image if it's not as wide as the container */
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    color: white; /* White arrow icons */
    border: none;
    border-radius: 50%;
    width: 40px; /* Larger buttons for easier touch */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

.owl-carousel .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darken on hover */
}

.owl-carousel .owl-dots {
    text-align: center; /* Center-align the dots */
    padding: 10px 0; /* Add some vertical padding */
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block; /* Align dots in a line */
    background-color: #333; /* Dot color */
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer; /* Change cursor to pointer to indicate clickability */
}

.owl-carousel .owl-dots .owl-dot.active {
    background-color: #fff; /* Active dot color */
}

/* Photo Gallery */

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    padding: 20px;
}

.photo-gallery a {
    display: block;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px; /* Optional for rounded corners */
}

/* Locate Us Map */
.locate-us {
    text-align: center; /* Center align the content */
    padding: 20px; /* Add padding for spacing */
    background-color: #f8f8f8; /* Optional: background color for the section */
}

.locate-us iframe {
    width: 100%; /* Make iframe take full available width */
    height: 400px; /* Set a fixed height, adjust as needed */
    border: none; /* Remove default iframe border */
    max-width: 800px; /* Maximum width to ensure it doesn't get too large on wide screens */
    margin: auto; /* Center the iframe horizontally */
}

/* Contact US */
.contact-us {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f8f8f8; /* Light background for contrast */
    text-align: center;
}

.contact-column {
    flex: 1; /* Each column takes equal width */
    margin: 0 10px; /* Spacing between columns */
}

.contact-column h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2em;
}

.contact-column p {
    margin: 5px 0;
    color: #666;
}

@media (max-width: 600px) {
    .contact-us {
        flex-direction: column;
        align-items: center;
    }

    .contact-column {
        margin-bottom: 20px;
        width: 80%; /* Adjust width for smaller screens */
    }
}

.directions-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px; /* Adjust as needed */
    background-color: black;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border: none; /* No border for a flat style */
    cursor: pointer; /* Mouse cursor becomes a hand icon */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.directions-button:hover {
    background-color: #555; /* Slightly lighter black on hover */
}


/* Footer CSS */

footer {
    background-color: #f5f5f5; /* Same as header */
    color: #333;
    text-align: center; /* Center-align the content */
    padding: 2px; /* Add some padding for spacing */
    font-size: 16px; /* Adjust the font size as needed */
}

/* Scroll top button */
#scrollTopBtn {
    position: fixed; /* Fixed position */
    bottom: 20px; /* 20px from the bottom */
    right: 20px; /* 20px from the right */
    padding: 10px 15px; /* Padding for size */
    font-size: 16px; /* Font size */
    background-color: #333; /* Background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    cursor: pointer; /* Cursor pointer */
    border-radius: 5px; /* Rounded corners */
    z-index: 1000; /* Ensure it's above other content */
    opacity: 0.8; /* Slightly transparent */
}

#scrollTopBtn:hover {
    opacity: 1; /* Fully opaque on hover */
}

