/* styles.css */

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

body {
    font-family: Arial, sans-serif;
	background-color: #2A2828
}
.center {
	color: antiquewhite;
	font-weight: bold;
	text-align: center;
}

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

.logo {
     
}
.btn {
        padding: 10px 20px;
        background-color: #333;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    /* Change button color on hover */
    .btn:hover {
        background-color: blue;
    }

.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;
}
.activity-text {
	font-size: 20px;
}
.featuredacco p, h3{
	color: white;
	line-height: 1.5;
}
.featuredacco1 p, h3{
	color: white;
	line-height: 1.5;
}
.featuredacco2 p, h3{
	color: white;
	line-height: 1.5;
}
.featuredacco, .featuredacco1, .featuredacco2 {
	border: 2px solid white;
	width: 40%;
	padding: 1rem;
	margin-bottom: 1em;
	margin-top: 1em;
	background-color: grey;
	text-shadow: .1 .1 .5 black;
	border-radius: 2rem;
	align-content: center;	
}
.lodgeimg{
	border-radius: 1rem;
	display: block;
	margin-left: auto;
	margin-right: auto;
	transition: scale, 2s;
	
}
.lodgeimg:hover {transform: scale(1.10);}
/*#veep {
	margin-top: -4rem;
}*/
.lodgings, .lodgings2, .lodgings3 {
    
    align-content: center;
    justify-content: center;
	display: flex; /* Change display property to flex */
    flex-direction: column; /* Align children in a column */
    align-items: center; /* Align items horizontally to the center */
    
}

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 {
		display: none;
		visibility: hidden;
	}
    nav ul li a {
        padding: 8px 16px; /* Adjust button padding for smaller screens */
    }
	.featuredacco, .featuredacco1, .featuredacco2{
		width: 70%;
	}
	.contact-details {
		margin: 0 auto;
}
	
}
@media screen and (max-width: 550px){
	.featuredacco, .featuredacco1, .featuredacco2{
		width: 80%;
	}
	nav ul li a {
        display: grid;
		grid-template: 1fr 1fr 1fr 1fr;/* Further 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 {
		display: none;
		visibility: hidden;
	}
    nav ul li a {
        display: grid;
		grid-template: 1fr 1fr 1fr 1fr;/* Further adjust button padding for smaller screens */
    }
	.featuredacco, .featuredacco1, .featuredacco2{
		width: 95%;
	}
	
	
	
}
