body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for contrast */
}

header {
    background: #d32f2f; /* Red header */
    color: white;
    padding: 20px 0;
    text-align: center;
}


h1 {
    margin: 0;
    font-size: 2.5em; /* Larger font size for the title */
}

.top-nav {
	display: none; /* Hide by default */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
	font-weight: bold; /* Make links bold */
}

nav ul li a:hover {
    text-decoration: underline; /* Underline on hover for better visibility */
}

section {
    /* padding: 20px; */
    /* margin: 20px; */
}

section#booking {
	
	/* background-color: blue; */
	object-fit: cover;
}

.image-container {
    width: 100%;
    overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom space under image */
}

.grid {
    display: flex;
	flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: space-between;
}

.item {
    background: #f4f4f4;
    padding: 20px;
    margin: 0 10px;
    /*flex: 1 1 calc(30% - 20px);  Flex-grow, flex-shrink, and base width */
	flex: 0 0 auto;
	
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    border-radius: 5px; /* Round corners */
	scroll-snap-align: start; /* Align items to start of the container */
	
}

.item h3 {
    margin: 0 0 10px; /* Space below the title */
}

.item iframe {
    width: 100%; /* Make the iframe take full width */
    height: 200px; /* Fixed height for uniformity */
    /*border: none;  Remove default border */
}

.portfolio-container {
    display: flex; /* Use flexbox for horizontal layout */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Smooth snap scrolling */
    padding: 20px 0; /* Spacing around the container */
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* This makes the image circular */
    margin-right: 15px;
	 object-fit: cover; /* Ensures the image covers the area without distortion */
}

.text {
    flex: 1;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #d32f2f; /* Red footer */
    color: white;
	
}

.logo {
    position: absolute;
    left: 5px; /* Adjust as needed */
    top: 5px; /* Adjust as needed */
	/*position: relative;*/
}

.logo img {
    max-width: 50px; /* Adjust size */
    height: auto;
}


.side-menu {
    position: fixed;
    top: 0;
    left: -300px; /* Hide off-screen initially */
    width: 250px;
    height: 100%;
    background: #4CAF50;
    color: white;
    padding: 20px;
    transition: left 0.3s ease; /* Smooth transition */
    z-index: 1000; /* Ensure it's above other content */
	
	/*JDS needs to be vertical 10-9-24
	display: flex;
    flex-direction: column; /* Align items vertically */
    /*justify-content: flex-start; /* Align items at the start */
}

.side-menu ul {
    list-style-type: none;
    padding: 0;
	
	/*JDS needs to be vertical 10-9-24*/
	display: flex; /* Use flexbox for horizontal layout */
    flex-direction: column; /* Align items horizontally */
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
	
	
	/*JDS needs to be vertical 10-9-24*/
	padding: 10px; /* Padding for clickable area */
    transition: background 0.3s; /* Smooth background transition */
}

.side-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.2); /* Lighten background on hover */
}

.side-menu.active {
    left: 0; /* Move menu into view */
}

/* scroll back to the top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Initially hidden */
    z-index: 1000; /* Make sure it's above other content */
}

.back-to-top:hover {
    background-color: #0056b3; /* Darker shade on hover */
}


@media (min-width: 768px) {
    /*
	.side-menu {
		
        display: block; 
        width: auto; 
		display: inline;
		margin: 0 15px;
    }*/
	
	
	.top-nav {
		display: block;
	}
	
	.logo {
		display: none;
		/*position: relative;*/
	}
	
	section {
		
	}

}

/*
img {
  border-radius: 50%;
}*/