/* styles.css */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
	background-color: #2A2828
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center; /* Center align the content */
}

.logo {
     
}

.logo img {
    width: 150px; /* Adjust the width as needed */
    height: auto;
    margin: 10px; /* Adjust margin as needed */
}

nav {
    display: inline-block; /* Ensure nav doesn't stretch to full width */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Center align the list items */
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin from last list item */
}

nav ul li a {
    padding: 10px 20px; /* Add padding to create button-like appearance */
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Add transition effect */
}

nav ul li a:hover {
    background-color: #555; /* Change background color on hover */
}
/* Intro Section Styles */
.intro {
    background-color: #f2f2f2;
    padding: 50px 20px;
    text-align: center;
}

.intro h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    line-height: 1.6;
}
/* Featured Accommodation Styles */
.featured {
    text-align: center;
    margin-top: 50px;
	margin-bottom: 20px;
}
.featured h2 {
	padding-bottom: 10px;
	color: white;
}

.slideshow-container {
    position: relative;
    max-width: 50%;
}
.slideshow-container1 {
    position: relative;
    max-width: 100%;
}
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;/
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
/* Activities Section Styles */
.activities {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.activity-text {
	color: white;
    flex: 1;
    padding: 0 20px;
    text-align: left;
}

.activity-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.activity-text p {
    font-size: 16px;
    line-height: 1.6;
}

.container {
    text-align: center; /* Center align the content */
    margin: 20px auto; /* Center the container horizontally */
    max-width: 800px; /* Limit the width of the container */
}

.contact{
	color: white;
}
.contact-info {
    display: flex;
    align-items: center;
}

.contact img {
    width: 500px; /* Adjust the width as needed */
    height: auto;
    margin-right: 20px; /* Adjust margin as needed */
}

.contact-details {
    color: white;
}

/* Media Queries */

@media screen and (max-width: 1024px) {
    .logo img {
        width: 120px; /* Adjust logo size for smaller screens */
    }
.contact img {
		width: 350px;
	}
    nav ul li a {
        padding: 8px 16px; /* Adjust button padding for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        width: 100px; /* Further adjust logo size for even smaller screens */
    }
	
	.contact img {
		width: 200px;
	}
    nav ul li a {
        padding: 6px 12px; /* Further adjust button padding for smaller screens */
    }
}
