/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
}

.header p {
    margin-top: 10px;
}

.about-kibale, .major-attractions, .wildlife-biodiversity, .activities, .visit-information {
    background: white;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

h2 {
    color: #333;
    margin-bottom: 15px;
}

p {
    color: #555;
}

/* Flexbox Layout for Content */
.content-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.content-flex .text, .content-flex .image {
    flex: 1;
}

/* Image Styling */
.about-image img, .gallery-item img, .content-flex img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image img {
    max-width: 100%;
}

.gallery-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    text-align: center;
}

.gallery-item p {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* Button Styling */
.book-now-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 0;
}
.header {
    background-color: #00695c;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.header img.home-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 50px;
}

.header h1 {
    font-size: 2.5em;
    margin: 0;
}

.header p {
    font-size: 1.2em;
    margin: 0.5em 0 0;
}

/* About Kibale Section */
.about-kibale {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.about-kibale h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about-kibale p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.about-kibale .about-image {
    margin: 20px auto;
    text-align: center;
}

.about-kibale img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .content-flex {
        flex-direction: column; /* Stack items vertically */
    }

    .content-flex .text, .content-flex .image {
        width: 100%; /* Make both text and image take full width */
    }

    .about-image img, .gallery-item img, .content-flex img {
        max-width: 100%; /* Ensure images are responsive */
    }
}
.content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Ensures content is vertically centered */
    gap: 20px; /* Adds some space between text and image */
}

.about-image img {
    width: 100%; /* Ensures the image takes the full width of the container */
    max-width: 600px; /* Limits the image size to prevent it from becoming too large */
    height: auto; /* Maintains the aspect ratio of the image */
    border-radius: 8px; /* Optional: adds a slight rounding to the image corners */
    object-fit: cover; /* Ensures the image covers the container without being stretched */
}

@media (max-width: 768px) {
    .content-flex {
        flex-direction: column; /* On smaller screens, stack the text and image vertically */
    }

    .about-image img {
        max-width: 100%; /* Ensures the image uses full width on smaller screens */
    }
}
.goog-te-gadget-simple {
    background-color: #4285F4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.goog-te-gadget-simple:hover {
    background-color: #357ae8;
}

.goog-te-gadget-icon {
    display: none; /* Hides the default Google icon */
}

/* Dropdown styling */
.goog-te-combo {
    margin-left: 8px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    color: #4285F4;
    cursor: pointer;
}

/* Adjust mobile display */
@media (max-width: 768px) {
    #google_translate_element {
        right: 50%;
        bottom: 80px;
        transform: translateX(50%);
    }
    .whatsapp-button {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%);
    }
}
.footer {
    background: #35524a;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border-radius: 10px;
}

.footer p {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer a {
    color: #4b8c74;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* Buttons and Links */
a.button, .footer a.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    color: #fff;
    background-color: #4b8c74;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

a.button:hover, .footer a.button:hover {
    background-color: #35524a;
}
.footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-about,
.footer-contact,
.footer-social {
    flex: 1 1 300px;
    margin: 10px;
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer p {
    font-size: 1em;
    line-height: 1.6;
    color: #ccc;
}

.footer-link {
    color: #f39c12;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.social-links a {
    margin: 0 10px;
    font-size: 30px;
    color: #f39c12;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 0.9em;
}

.footer-bottom .footer-link {
    margin: 0 5px;
}

#google_translate_element {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1001;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #4285F4;
}

/* Styling the Google Translate Dropdown */
.goog-te-gadget-simple {
    background-color: #4285F4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.goog-te-gadget-simple:hover {
    background-color: #357ae8;
}

.goog-te-gadget-icon {
    display: none; /* Hides the default Google icon */
}

/* Dropdown styling */
.goog-te-combo {
    margin-left: 8px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    color: #4285F4;
    cursor: pointer;
}

/* Adjust mobile display */
@media (max-width: 768px) {
    #google_translate_element {
        right: 50%;
        bottom: 80px;
        transform: translateX(50%);
    }
    .whatsapp-button {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%);
    }
}
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 1000; /* High z-index to ensure it stays on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .whatsapp-button img {
    height: 24px; /* Icon size */
    margin-right: 10px; /* Spacing between icon and text */
  }
  @media (max-width: 768px) {
  .whatsapp-button {
      right: 50%;
      bottom: 20px;
      transform: translateX(50%);
  }
  }
