@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Solitreo&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Solitreo&display=swap');

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4efe5;
}

/* General Header for the Index Page */


nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #f1c40f;
}

.hero {
    position: relative;
    height: 610px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 20px;
    padding-bottom: 20px;
    background: url('images/home.png') no-repeat center center/cover;
    color: white;
    gap: 28px;
    box-sizing: border-box;
}

/* Style the navigation inside the hero */
.hero nav {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 75px;
    box-sizing: border-box;
}

.hero nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.hero nav ul li {
    display: inline;
}

.hero nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    font-family: "Libre Baskerville", serif;
    font-size: 1.2em;
}

.hero nav ul li a:hover {
    color: #cbc096;
}
.hero h1 {
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
}

.hero p{
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
}

.top-text {
    font-size: 2.2em;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #fff9f3;
    
}

.main-heading {
    font-size: 4.5em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-top: 40px;
    margin-bottom: 40px;
    color: #fff9f3;
}

.bottom-text {
    font-size: 2.2em;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #fff9f3;
}


.button {
    position: absolute;
    bottom: 20px;
    right: 40px;
    padding: 14px 28px;
    font-size: 18px;
    background-color: #414b3b;
    color: #fff9f3;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
}

.button:hover {
    background-color: #556045;
    transform: scale(1.05);
}

.button:hover {
    background-color: #F6A9C2;
    color: #032b22;
}
.logo {
    display: block; 
    margin: 20px auto 0;
    width: 200px; 
    height: auto;
}

.resort-intro {
    text-align: center;
    padding: 1px 20px;
    background-color: #414b3b;
    padding-bottom: 40px;
    margin-bottom: -20px;
}

.resort-intro img {
    width: 25%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.resort-intro h2 {
    font-size: 32px;
    color: #977f21;
    font-family: "Libre Baskerville", serif;
     font-style: italic;
}

.resort-intro p {
    font-size: 18px;
    color: #efede7;
    max-width: 700px;
    margin: 15px auto;
    line-height: 1.6;
    font-family: "Libre Baskerville", serif;
}

.resort-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.highlight {
    text-align: center;
    background: #032b22;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.highlight i {
    font-size: 40px;
    color: #414b3b;
    margin-bottom: 10px;
}

.highlight h3 {
    font-size: 20px;
    color: #977f21;
    font-family: "Libre Baskerville", serif;
}

.highlight p {
    font-size: 16px;
    color: #efede7;
}

#gallery {
    text-align: center;
    padding: 40px 20px;
}

#gallery h2 {
    font-size: 32px;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    color: #5d5340;
    margin-bottom: 20px;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slides img {
    width: 100%;
    display: block;
    transition: opacity 1s ease-in-out;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    padding: 10px;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 100;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}


.content {
    padding: 20px;
    text-align: center;
}

.slideshow-container {
    position: relative;
    width: 85%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.slide-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    justify-content: center;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slides img {
    width: calc(33.33% - 20px);
    flex: 0 0 auto;
    border-radius: 10px;
    border: 5px solid #5d5340;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}

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



.contact {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: 300px;
        font-size: 1.5em;
    }
}
@media (max-width: 480px) {
    .hero {
        height: 250px;
        font-size: 1.2em;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
/*FOOTER*/
.footer {
    background-color: #414b3b;
    color: #f4efe5;
    padding: 30px 20px;
    font-family: "Libre Baskerville", serif;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f6a9c2;
    border-bottom: 2px solid #f6a9c2;
    padding-bottom: 5px;
}

.footer-column p, .footer-column ul {
    font-size: 16px;
    line-height: 1.6;
}

/* Quick Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #f6a9c2;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: left;
    margin-top: 10px;
}

.social-icons a {
    font-size: 29px;
    color: #f1f1f1;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #f6a9c2;
    transform: scale(1.2);
}

/* Copyright Section */
.footer-bottom {
    background-color: #032b22;
    padding: 15px;
    color: #f1f1f1;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


/*ABOUT PAGE*/
/* Header Styling for About, Services, Contact, Thank You Pages */
.header {
    background-color: #414b3b;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    z-index: 10;
}

.header .logo {
    height: 90px; /* Increase the height */
    width: auto;
    object-fit: contain;
    margin-left: 20px;
    margin-top: -5px; /* Moves it up slightly */
}


.about-nav-container {
    display: flex;
    margin-left: 55px !important ;
}

.about-nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
    margin: 0;
    padding: 0;
}

.about-nav ul li {
    margin-right: 35px;
}

.about-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.about-nav ul li a:hover {
    color: #f1c40f; /* Gold on hover */
}


.about-content {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.about-text h1, .about-text h2 {
    font-size: 32px;
    color: #5d5340;
    margin-bottom: 15px;
}

.about-text h1 {
    margin-top: 10px;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
}

.about-text h2 {
    font-size: 26px;
    margin-top: 25px;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
}

.about-text p {
    font-size: 16px;
    color: #5d5340;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: "Libre Baskerville", serif;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    border: 10px solid #414b3b;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Values Section */
.about-values {
    padding: 0px 20px 40px;
    text-align: center;
    margin-top: -50px;
}

.about-values h2 {
    margin-bottom: 40px;
    font-size: 28px;    
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    color: #5d5340;
    text-align: center;
}

.values-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.value-item {
    width: 45%;
    padding: 20px;
    background: #414b3b;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F6A9C2;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Libre Baskerville", serif;
}

.value-item p {
    font-size: 16px;
    color: #efede7;
    font-family: "Libre Baskerville", serif;
}


.value-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); 
}

.bold-text {
    font-weight: bold;
    color: #F6A9C2;
}

.about-location h2 {
    text-align: center;
    font-size: 32px;
    color: #5d5340;
    margin-bottom: 20px;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    margin-top: -10px;
}

.about-location p {
    text-align: center;
    font-size: 18px;
    color: #5d5340;
    margin-bottom: 20px;
    font-family: "Libre Baskerville", serif;
    max-width: 950px;
    line-height: 1.4em;
    margin: 0 auto;
}

.about-nav-container {
    margin-top: 25px;
    display: flex;
    justify-content: left;
    margin-left: 130px;
    align-items: center;
    width: 900px;
    text-align: center;
}

section.about-location {
    text-align: center;
}

.about-nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 50px;
    justify-content: center;  
    width: auto;
}
.about-nav ul li {
    display: inline-block; 
    
}

.about-nav ul li a {
    color: #fff9f3;
    text-decoration: none;
    font-size: 18px;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
.about-nav ul li a:hover {
    color: #cbc096;
}

/* Google Maps */
.map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 35px;
}

.map {
    width: 100%;
    max-width: 600px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image img {
        max-width: 100%;
    }

    .value-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-text h1, .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
    }
}
.services-intro {
    text-align: center;
    color: #414b3b;
    padding: 0 90px;
}

.services-intro h1 {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: 36px;
    color: #5d5340; 
    margin-bottom: 20px;
    
}

.services-intro p {
    font-family: "Libre Baskerville", serif;
    font-size: 18px; 
    color: #414b3b; 
    margin-bottom: 30px;
}

.services-intro img {
    display: block;
    margin-left: auto; 
    margin-right: auto; 
    max-width: 80%;
    height: auto;
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}
/* Places to Stay Accordion */
.places-to-stay {
    text-align: center;
    max-width: 990px;
    margin: 40px auto;
}
.places-to-stay h2 {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: 32px;
    color: #5d5340;
}
.accordion {
    text-align: left;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.accordion-header {
    width: 100%;
    background-color: #414b3b;
    color: #cbc096;
    font-weight: bold;
    font-family: "Libre Baskerville", serif;
    padding: 15px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    text-align: center;
}
.accordion-header:hover,
.accordion-header.active {
    background-color: #5d5340;
    color: #F6A9C2;
}
.accordion-content {
    display: none;
    padding: 20px;
    padding-bottom: 40px;
    background-color: #414b3b;
    text-align: center;
    font-family: "Libre Baskerville", serif;
    color: #cbc096;
    position: relative;
}

.accommodation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 20px; /* Adds space at the bottom */
    border-bottom: 2px solid #F6A9C2; /* Separator line */
}

.accommodation h3 {
    font-size: 24 px;
    color: #F6A9C2;
    margin-bottom: 10px;
}

.accommodation:last-child {
    border-bottom: none; /* Remove the line for the last item */
}

.accommodation p {
    font-size: 15px;
    margin-bottom: 5px;
    color: #cbc096;
}

.accommodation img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.accommodation-text {
    display: flex;
    flex-direction: column; /* This makes the paragraphs stack vertically */
    gap: 5px;
    flex: 1;
}



.amenities {
    background-color: #5d5340;
    padding: 30px 20px;
    border-radius: 15px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
    margin-top: 40px; 
    text-align: center; 
    font-family: 'Roboto', sans-serif; 
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.amenities h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    color: #efede7; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
}

.amenities ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.amenities ul li {
    font-size: 18px;
    color: #efede7;
    padding: 12px 0; 
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center;
    font-family: "Libre Baskerville", serif;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.amenities ul li:hover {
    background-color: #f6a9c2; 
    transform: translateX(10px);
    color: white;
}

.amenities ul li i {
    font-size: 22px; 
    color: #003d4c; 
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.amenities ul li:hover i {
    transform: rotate(15deg);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .amenities {
        padding: 20px
    }

/* Footer Styles */
footer {
    background-color: #003d4c;
    color: white;
    padding: 20px 0;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

footer .footer-column {
    flex: 1;
    padding: 0 20px;
}

footer .footer-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

footer .footer-column p, footer .footer-column ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

footer .footer-column ul {
    padding-left: 0;
}

footer .footer-column ul li {
    list-style: none;
}

/* Social Media Icons */
footer .social-icons a {
    font-size: 20px;
    margin: 0 10px;
    color: white;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #F6A9C2;
}

footer .footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}
}

footer .social-icons a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Contact Form Section */

.contact-page body {
    font-family: "Libre Baskerville", serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.contact-page h2 {
    text-align: center;
    color: #5d5340;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form-section {
    background-image: url('https://leimerc8247.stoutmartech.com/up-north-lodge/images/tree.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
.form-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: #efede7;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    color: #414b3b;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    background-color: #f9f9f9;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5d5340;
    outline: none;
    background-color: #fff;
}

.form-group button.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-family: 'Libre Baskerville', serif;
    background-color: #5d5340;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button.submit-btn:hover {
    background-color: #F6A9C2;
    transform: scale(1.05);
}

.form-group button.submit-btn:active {
    transform: scale(1);
}

/* Thank You Page Styling */
.thank-you-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Libre Baskerville', serif;
    backdrop-filter: blur(5px);
}

.thank-you-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}

.thank-you-message {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
}

.back-to-home {
    display: inline-block;
    padding: 12px 24px;
    background-color: #414b3b; /* Dark Green */
    color: #F6A9C2; /* Pink Text */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    margin-top: 20px;
}

.back-to-home:hover {
    background-color: #F6A9C2; /* Pink Background */
    color: #032b22; /* Dark Brown Text */
}

/* Styling for the email and phone number links */
.thank-you-message a {
    color: #032b22; /* Dark Green */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.thank-you-message a:hover {
    color: #F6A9C2; /* Pink on hover */
}

