@charset "UTF-8";
/* CSS Document */

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #dcdcdc;/* Dark Gray */
    color: #333333; /* White */
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: #ffffff; /* White */
}

ul {
    list-style: none;
}

/* Header styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
	padding-left: 4rem;
	padding-right: 4rem;
    background-color: #1e1e1e; /* Dark Gray */
}

.logo-container {
    margin-right: 1rem;
}


h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff; /* White */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 1rem;
}

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

nav ul li a {
    text-decoration:none;
    color: #ffffff; /* White */
    padding: 0.5rem 1rem;
    border-radius: 5px;
	font-weight: bold;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
}




/* Banner section styles */
.banner {
	background-image: url('up-north-supplemental-materials/images/ls.jpg');
	background-size: cover;
    background-position: center;
    /*background-color: #0a192f; /* Navy Blue */
    color: #ffffff; /* White */
    text-align: center;
    padding: 4rem 0;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Main content styles */
main {
    padding: 3rem;
	margin-left: 3rem;
	margin-right: 3rem;
}

/* Features section styles */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.feature {
    flex: 0 1 calc(33.33% - 2rem);
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
    line-height: 1.5;
}



/* Gallery section styles */
.gallery {
    text-align: center;
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 1rem;
}


.image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Testimonials section styles */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.testimonial {
    padding: 2rem;
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
    color: #dddddd; /* Light Gray */
}

.testimonial .author {
    margin-top: 1rem;
    font-weight: bold;
}

/* Featured room section styles */
.featured-room {
    text-align: center;
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.room {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.room img {
    width: 40%;
    border-radius: 8px;
}

.room-info {
    flex: 1;
    text-align: left;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.room-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff; /* White */
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
	margin-top: 1rem;
    transition: background-color 0.3s ease;
}

/*.btn:hover {
    background-color: #0056b3;
}*/

/* Styles for the About page */
.about-section, .mission-section, .team-section {
    padding: 4rem 0;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.container h2 {
    margin-bottom: 2rem;
}

.container p {
    margin-bottom: 1.5rem;
}

.container ul {
    text-align: left;
    margin-left: 2rem;
}

.container ul li {
    margin-bottom: 1rem;
}


/*slideshow*/

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    margin: 0 auto;
	margin-bottom: 20px;
}

.slideshow-images {
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.arrow:hover {
    opacity: 0.8;
	color: #007bff;
}


.team-member-description {
    /* Define your styles here */
    font-size: 1rem; /* Adjusted to rem */
    font-weight: bold;
    color: #ffffff; /* White text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 1rem; /* Adjusted to rem */
    position: absolute;
    bottom: 1rem; /* Adjusted to rem */
    left: 50%;
    transform: translateX(-50%);
}


/* Styling for Meet Our Team section */
.team-section {
    text-align: center;
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: #ffffff; /* White */
}

.team-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333333; /* Dark gray text */
    margin-bottom: 2rem;
}

.team-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #fff; /* Medium gray text */
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Member styles */
.member {
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.member p {
    font-size: 1rem;
    line-height: 1.5;
	color: #ffffff;
}



/*mission section*/
.mission-section {
    padding: 4rem 0;
    text-align: center;
	margin-bottom: 1rem;
}

.mission-statement {
    font-style: italic;
    margin-bottom: 1rem;
}

.mission-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.mission-item {
    flex: 0 1 calc(50% - 0.5rem); /* Two items per row with gap */
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.mission-item:hover {
    background-color: #007bff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mission-item p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
	text-align: center;
}

/*about section*/
/* About section styles */
.about-section {
    text-align: center;
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: #ffffff; /* White */
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-info {
    flex: 1;
    text-align: left;
}

.about-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
	text-align: center;
}

.about-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensure rounded corners are applied */
}

/* Intro section styles */
.intro-container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.intro-statements {
    margin-bottom: 1.5rem;
}

.intro-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fff;
}

.intro-items {
    display: flex;
    justify-content: space-around;
}

.intro-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 1 calc(33.33% - 1rem);
    background-color: #333333;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 1rem;
}

.intro-item:hover {
    background-color: #007bff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.intro-item p {
    font-size: 1.1rem;
    color: #fff;
	line-height: 1.5; /* Adjust as needed */
    height: 100%; /* Ensure the paragraph fills the height of the container */
    margin: 0; /* Remove any default margin */
}


/*contact styles*/
.contact-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: space-between;
	height: 100%;
}

.contact-info,
.map-container {
    width: calc(50% - 1rem); /* Adjust the width to 50% minus the gap between items */
    margin-bottom: 1rem; /* Add some space between items */
    box-sizing: border-box; /* Ensure padding and border are included in the width calculation */
    height: 100%; /* Set a fixed height for both containers */
}

.contact-info {
    background-color: #1e1e1e; /* Dark Gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: #ffffff; /* White */
}

.map-container {
   height: 382px; /* Set a fixed height for the map container */
   overflow: hidden; /* Hide any overflow content */
}

.map-container iframe {
    width: 100%;
    height: 100%; /* Ensure the iframe fills the map container */
}

.contact-form-section {
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    width: 100%;
    padding: 2rem;
    background-color: #1e1e1e; /* Dark Gray */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: #ffffff; /* White */
}

.contact-form-section h2 {
    font-size: 2rem; /* Adjust the font size */
    font-weight: bold; /* Make the text bold */
    margin-bottom: 2rem; /* Add spacing below the heading */
	margin-top: 2rem;
    text-align: center; /* Center the text */
}


.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #dddddd; /* Light Gray */
    border-radius: 5px;
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
}

.contact-form textarea {
    height: 150px; /* Adjust as needed */
}

.contact-form input[type="submit"] {
    background-color: #007bff;
    color: #ffffff; /* White */
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #0056b3;
}



/* Footer styles */
footer {
    background-color: #1e1e1e; /* Dark Gray */
    color: #ffffff; /* White */
    text-align: center;
    padding: 0.5rem 0; /* Add padding to the top and bottom */
}

/* Media Queries */
@media screen and (max-width: 1024px) {
	
	header nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column; /* Stack items vertically */
    }

    header nav ul li {
        margin-bottom: 0.5rem; /* Add spacing between each stacked item */
        width: 100%; /* Set each list item to fill the entire width */
    }

    header nav ul li a {
        text-decoration: none;
        text-align: center;
        color: #ffffff;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        background-color: rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%; /* Ensure the link fills the entire width of its parent */
        box-sizing: border-box; /* Ensure padding and border are included in the width */
    }

    header nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
	
    .gallery-images {
        grid-template-columns: repeat(2, 1fr); /* Two columns */
    }

    .featured-room {
        flex-direction: column-reverse; /* Reverse the order of flex items */
    }

    .room {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        gap: 1.5rem; /* Add some spacing between the text and the image */
    }

    .room img {
        width: 100%; /* Ensure the image spans the full width */
    }
	
	.room-info {
        text-align: left; 
        margin: 0; /* Reset the margin */
		padding: 0;
    }
	
	.banner {
        padding: 3rem 0;
    }

    .banner h2 {
        font-size: 2rem;
    }

	.about-content {
        flex-direction: column; /* Stack items vertically */
    }

    .about-info {
        order: 2; /* Change the order to display below the image */
    }

    .about-image {
        order: 1; /* Change the order to display above the text */
    } 

    .mission-section, .team-section {
        padding: 3rem 0;
    }

    .mission-section h2, .team-section h2 {
        font-size: 2rem;
    }

    .mission-item p {
        font-size: 1rem;
    }

    .member h3 {
        font-size: 1.5rem;
    }

    .member p {
        font-size: 1rem;
    }
	
	.contact-container {
        flex-direction: column; /* Stack items vertically */
        gap: 2rem; /* Add more space between elements */
    }

    .contact-info,
    .map-container {
        width: 100%; /* Make both containers span the full width */
        margin-bottom: 2rem; /* Add more space between items */
        box-sizing: border-box; /* Ensure padding and border are included in the width calculation */
        height: auto; /* Set height to auto to adjust based on content */
    }

	.contact-info {
		text-align: center;
	}
	
    .map-container {
        height: 450px; /* Set a slightly longer height for the map container */
        overflow: hidden; /* Hide any overflow content */
    }

    .map-container iframe {
        width: 100%;
        height: 100%; /* Ensure the iframe fills the map container */
    }
}


@media screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }

    .gallery-images {
        grid-template-columns: 1fr; /* Display images in a single column */
    }

    .gallery-images img {
        width: 100%; /* Ensure images span the whole width */
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        margin: 0;
        margin-bottom: 1rem;
    }

    .logo img {
        max-width: 100%;
    }

    header nav {
        margin: 0;
        margin-top: 1rem;
    }

    header nav ul {
        list-style-type: none;
   		margin: 0;
    	padding: 0;
    	display: flex;
    	flex-direction: column; /* Stack items vertically */
    }

    header nav ul li {
        margin-bottom: 0.5rem; /* Add spacing between each stacked item */
    	width: 100%; /* Set each list item to fill the entire width */
    }

    header nav ul li a {
    	text-decoration: none;
		text-align: center;
   		color: #ffffff;
    	padding: 0.5rem 1rem;
    	border-radius: 5px;
    	transition: background-color 0.3s ease;
    	background-color: rgba(255, 255, 255, 0.1);
    	display: block;
    	width: 100%; /* Ensure the link fills the entire width of its parent */
    	box-sizing: border-box; /* Ensure padding and border are included in the width */
}

    header nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }


    .featured-room .room {
        flex-direction: column; /* Display room info and image vertically */
        align-items: center; /* Center items horizontally */
    }

    .featured-room .room-info {
        text-align: center; /* Center text */
        margin-bottom: 1rem; /* Add spacing between text and image */
    }

    .featured-room .room img {
        width: 100%; /* Ensure image width spans the container */
        max-width: 300px; /* Limit max-width for better mobile view */
        border-radius: 8px; /* Apply border-radius to image */
    }
	
	.banner {
        padding: 2rem 0;
    }

    .banner h2 {
        font-size: 1.5rem;
    }

    .about-content {
        flex-direction: column; /* Stack items vertically */
    }

    .about-info {
        order: 2; /* Change the order to display below the image */
    }

    .about-image {
        order: 1; /* Change the order to display above the text */
    }

    .mission-list {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        gap: 1rem; /* Add some space between items */
    }

    .mission-item {
        flex: 0 1 100%; /* Set the width of each item to 100% */
    }

    .member h3 {
        font-size: 1.2rem;
    }

    .member p {
        font-size: 0.9rem;
    }
	
	 .slideshow-container {
        max-width: 90%; /* Adjust as needed */
        margin: 0 auto 1rem; /* Center the container */
    }

    .slideshow-images {
        max-width: 100%; /* Ensure images span the full width */
    }

    .slideshow-images img {
        width: 100%; /* Ensure images span the full width of the container */
        height: auto; /* Maintain aspect ratio */
    }

    .arrow {
        font-size: 18px; /* Adjust arrow size for smaller screens */
    }
	
	.contact-info,
    .map-container {
        width: 100%;
		text-align: center;
    }
	
 	.intro-items {
    display: block; /* Display each item as a block element */
    width: 100%; /* Occupy the full width of the container */
    text-align: center; /* Center the text horizontally */
    margin-bottom: 1rem; /* Add spacing between each stacked item */
}
}

