/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5dc;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #deb887;
    padding: 1rem 2rem;
}

header .logo a {
    text-decoration: none;
}

header .logo img {
    height: 60px; /* Adjust the size as needed */
    width: auto;
    display: block; /* Ensures the image does not have extra space around it */
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #8b4513;
}

header h1 {
    font-size: 2.5em;
    color: white;
    text-align: center;
    margin: 0 auto;
}

/* Hero Section */
#hero {
    background: url('/Images/Background/Kitui-Cottages-10.jpg') no-repeat center center;
    background-size: cover;
    height: 400px; /* Set the height of the hero section */
    text-align:center;
    padding: 6rem 2rem;
    margin-bottom: 0rem;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    position: relative; /* Create a context for the overlay */
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Place it behind the text */
}

#hero h1, #hero p {
    position: relative; /* Ensure text appears above the overlay */
    z-index: 2;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 0rem;
}

#hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Titles */
section h2 {
    font-size: 2rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 1rem;
}

/* About Section */
#about {
    padding: 2rem 1rem;
    text-align: center;
}

/* Featured Facilities Section */
.featured-facilities {
    padding: 2em;
    background: #fff;
}

.featured-facilities h2 {
    text-align: center;
    margin-bottom: 1em;
    color: #8b4513;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
}

.facility {
    background: #f1f1f1;
    border-radius: 10px;
    text-align: center;
    padding: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.facility:hover {
    transform: translateY(-5px);
}

.facility img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1em;
}

/* Accommodation Section */
#accommodation {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

.accommodation h2 {
    text-align: center;
    margin-bottom: 1em;
    color: #8b4513;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
}

.package {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.package:hover {
    transform: translateY(-5px);
}

.package img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1em;
}

/* Other Services Section */
#services {
    background-color: #fff8dc;
    padding: 2rem 1rem;
}

#services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
}

.service {
    background: #f1f1f1;
    border-radius: 10px;
    text-align: center;
    padding: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service:hover {
    transform: translateY(-5px);
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1em;
}

/* Restaurant & Dining Section */
#restaurant-dining {
    padding: 2rem 1rem;
    background-color: #fff;
}

#restaurant-dining h2 {
    text-align: center;
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.dining-options, .meal-options {
    margin-bottom: 2rem;
}

.dining-options h3, .meal-options h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.dining-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dining-item h4 {
    font-size: 1.2rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.dining-item p {
    font-size: 0.9rem;
    color: #555;
}

.meal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.meal-item {
    background: #f1f1f1;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.meal-item:hover {
    transform: translateY(-5px);
}

.meal-image {
    width: 100%;
    height: 150px;
    background: #e0e0e0 url('placeholder-image.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.meal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}


.meal-item h4 {
    font-size: 1.2rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.meal-item p {
    font-size: 0.9rem;
    color: #555;
}

/* Conference Hall Section */
#conference-hall {
    position:sticky;
    padding: 4rem 0rem;
    background: url('Images/Images/conference.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

#conference-hall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
    z-index: 1;
}

#conference-hall .conference-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#conference-hall h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

#conference-hall p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

#conference-hall ul {
    text-align: left;
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

#conference-hall ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Gym Section */
#gym {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

#gym .gym-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    text-align: left;
}

#gym .gym-content {
    flex: 1;
    max-width: 600px;
}

#gym .gym-content h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1rem;
    text-align: left;
}

#gym .gym-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

#gym .gym-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#gym .gym-content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

#gym .gym-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

#gym .gym-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#gym .gym-image img:hover {
    transform: scale(1.05);
}

/* Responsive Gym Section */
@media (max-width: 768px) {
    #gym .gym-image {
        display: none;
    }
}


/* Tour Packages Section */
#tour-packages {
    padding: 3rem 1rem;
    background-color: #fff;
    text-align: center;
}

#tour-packages h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

#tour-packages p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

#tour-packages .tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#tour-packages .tour-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: left;
}

#tour-packages .tour-item:hover {
    transform: translateY(-5px);
}

#tour-packages .tour-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#tour-packages .tour-item h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
    text-align: center;
}

#tour-packages .tour-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}


/* Contact Section */
#contact {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
}

#contact h2 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

#contact p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Contact Form */
.contact-form {
    flex: 1;
    max-width: 500px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f7f7f7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b4513;
    background-color: #fff;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #deb887;
}

/* Contact Info */
.contact-info {
    flex: 1;
    max-width: 400px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info strong {
    color: #8b4513;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Footer */
footer {
    background-color: #deb887;
    text-align: center;
    padding: 1rem 0;
    color: #333;
}
