* {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background-color: grey; /* Nice brown-tone background */
    color: #fff; /* Optional: Set text color to white for better contrast */

    justify-content: center;
    align-items: center;
    min-height: 100vh;	
    overflow-y: hidden; /* Hides the vertical scrollbar */	
}

h1{
    font-family: 'Raleway', sans-serif;
    font-weight: 100; /* Bold weight */
    font-size: 2.0em; /* Adjust size as needed */
    color: #fff; /* White color for contrast */
    border: 0px solid #fff; /* White border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Space between the text and the border */
    display: inline-block; /* Shrink to fit the content */
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
	text-align : center;
}

/*
.title {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	z-index: 1000;  Ensure the title is on top 
}
*/

.header-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Transparent background */
    border-radius: 0px;
    padding: 20px;
    position: fixed; /* Fixed position to stay at the top */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it stays on top of other content */
    display: flex; /* Flexbox to align items */
    justify-content: space-between; /* Space out title and menu */
    align-items: center; /* Center items vertically */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Small shadow */
}

.title {
    font-size: 24px;
    font-weight: bold;
}
.title a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent element */
    font-weight: bold; /* Make it bold if desired */
}



.content-wrapper {
    width: 100%;
    height: 100vh;
    overflow-y: scroll; /* Enable vertical scrolling */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-top: 60px; /* Add padding to ensure content isn't hidden behind fixed header */
}

.content-wrapper::-webkit-scrollbar {
    display: none; /* Hide the scrollbar for WebKit browsers */
}

.container {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    border: 0px solid black;
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Space inside the border */
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Small shadow */
}



.menu {
    background: none; /* Remove background as it inherits from header */
    padding: 0; /* Remove padding as it inherits from header */
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox for horizontal menu items */
}

.menu ul li {
    display: inline;
    margin-right: 10px;
}

.menu ul li a {
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    color: #000;
    font-weight: normal;
}


.swiper {
    width: 100%;
    height: 80vh;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 80vh;
    object-fit: cover; /* Ensures the image covers the entire slide area */
}


/* Gallery container */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Create responsive columns */
    gap: 10px; /* Adjust gap between items as needed */
    justify-content: center; /* Center the items horizontally */
}

/* Gallery item */
.gallery-item {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center the content inside the item */
    align-items: center; /* Center the content inside the item */
    overflow: hidden;
    position: relative;
    /* border: 1px solid #fff; /* White border */
    /* border-radius: 10px; /* Rounded corners */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.gallery-item img {
    display: block;
    object-fit: cover; /* Ensure image fits within the item */
    max-width: 100%;
    height: auto;
    z-index: 0; 
}

.gallery-item p {
    background: rgba(211, 211, 211, 0.0); /* Light grey with 50% transparency */
    color: white;
    width: 100%; /* Ensure the paragraph takes up full width */
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
    z-index: 1;
    margin: 0; /* Remove default margin */
    border: 0px black solid;
}


.gallery-item:hover img {
    transform: scale(1.1);
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* High z-index to be on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 100%; /* Ensure it doesn't overflow the screen width */
    max-height: 100%; /* Ensure it doesn't overflow the screen height */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */	
    /*
	width: 80%;
    max-width: 1000px;
	*/
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

/* Add Animation */
.modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0.1)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: left;
    margin: 0 auto;
}

.contact-form h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.contact-form label {
    margin: 10px 0 5px;
    display: block;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: grey;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #4cae4c;
}

#form-messages {
    margin-top: 10px;
    color: #333;
    text-align: center;
}


.banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
	z-index: 1; /* Ensure it stays below the header */	
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
	object-fit: cover; /* Maintain aspect ratio and cover the container */
    opacity: 0;
    transition: opacity 2s ease-in-out;
}




/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .gallery-item {
        max-width: 300px; /* Maximum width for gallery items on mobile */
        max-height: 300px; /* Maximum height for gallery items on mobile */
        min-width: 200px; /* Minimum width for gallery items on mobile */
    }

    .swiper {
        height: 40vh; /* Adjust height for swiper on mobile */
    }

    .swiper-slide img {
        height: 40vh; /* Adjust height for swiper images on mobile */
    }

	/* Contact Form Styles */
	.contact-form {
		padding: 5px;
		border-radius: 5px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		width: 250px;
		text-align: left;
		margin: 0 auto;
	}

	.container {
		width: 90%;
	}

}

@media (max-width: 480px) {
    .gallery-item img {
        width: 100%; /* Ensure full width on smaller screens */
        height: auto; /* Maintain aspect ratio */
	}
	.container {
		width: 90%;
	}
}






