﻿.navbar-brand img {
    height: 40px;
    width: 150px;
    object-fit: contain;
    transition: all 0.3s ease; /* Smooth transition for the scaling */
}

/* For smaller screens, make the logo smaller */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px; /* Smaller height on smaller screens */
        width: 100px; /* Smaller width on smaller screens */
    }
}

/* Hover effect - image size increases */
.navbar-brand img:hover {
    transform: scale(1.8); /* Increases the size by 20% */
}

.nav-item {
    position: relative;
}

    .nav-item .dropdown-menu {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border: 1px solid #ccc;
        z-index: 10;
    }

    .nav-item:hover .dropdown-menu {
        display: block; /* Show on hover */
    }

.dropdown-item {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

    .dropdown-item:hover {
        background-color: #f1f1f1; /* Hover effect for dropdown items */
    }

.custom-button {
    margin-left: 5px; /* Add small space between buttons */
    margin-right: 5px; /* Add small space between buttons */
}

.navbar-nav .nav-item .btn-sm {
    padding: 5px 10px; /* Smaller padding for the buttons */
    font-size: 14px; /* Smaller font size */
    border-radius: 10px; /* Rounded corners for a different look */
}

.navbar-nav .nav-item .btn-outline-primary {
    border-color: #007bff; /* Customize border color for login button */
    color: #007bff; /* Text color for login button */
}

.navbar-nav .nav-item .btn-outline-success {
    border-color: #28a745; /* Customize border color for register button */
    color: #28a745; /* Text color for register button */
}
/* Modal background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Black with opacity */
}

/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

/* Button styles */
.submit-now {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

    .submit-now:hover {
        background-color: #0056b3;
    }
/* Style for the logo content container */
.logo-content {
    text-align: center; /* Center the content horizontally */
    padding: 0px; /* Add some padding around the content */
}

/* Style for the footer logo link */
.footer-logo {
    display: inline-block; /* Ensure the logo is inline */
    margin-bottom: 10px; /* Add space between the logo and the text */
}

/* Style for the image container */
.image-container1 {
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height to maintain a square */
    border-radius: 50%; /* Ensure the image is circular */
    display: block; /* Remove any extra space below the image */
    margin: 0 auto; /* Center the image horizontally */
}

.image-container {
    width: 150px; /* Fixed width */
    height: 150px; /* Fixed height to maintain a square */
    border-radius: 50%; /* Ensure the image is circular */
    display: block; /* Remove any extra space below the image */
    margin: 0 auto; /* Center the image horizontally */
}
/* Style for the text below the logo */
.text {
    font-size: 16px; /* Font size */
    color: #555; /* Text color */
    margin-top: 10px; /* Add some space between the image and the text */
    line-height: 1.5; /* Adjust line height for better readability */
}
/* Change color when the link is clicked or active */
.navbar-nav .nav-item a:active,
.navbar-nav .nav-item a:focus {
    color: #8ACA8E; /* Set the color to #8ACA8E when clicked or focused */
}

/* Optional: Change color when the link is hovered */
.navbar-nav .nav-item a:hover {
    color: #8ACA8E; /* Set the color to #8ACA8E on hover */
}

/* Normal image size */
.footer-logo .image-container1 {
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

    /* Hover effect to increase the size of the image */
    .footer-logo .image-container1:hover {
        transform: scale(1.6); /* Scale the image to 120% of its original size */
    }
/* General Footer Styles */
.footer-container {
    position: relative;
    background-color: white;
    color: white;
    padding: 0px 0;
}

.footer-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-content {
    padding: 20px 0;
}

/* Subscribe Section */
.subscribe-section {
    text-align: center;
    margin-bottom: 30px;
}

.subscribe-title {
    font-size: 18px;
    font-weight: 600;
}

.subscribe-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.form-input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
    width: 250px;
    font-size: 16px;
}

.submit-button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

    .submit-button i {
        margin-left: 5px;
    }

/* General Footer Styles */
.footer-container {
    position: relative;
    background-color: white; /* Dark Gray for background */
    color: white;
    padding: 0px 0;
}

.footer-content {
    padding: 20px 0;
}

/* Subscribe Section */
.subscribe-section {
    text-align: center;
    margin-bottom: 30px;
}

.subscribe-title {
    font-size: 20px;
    font-weight: 600;
    color: white; /* Accent Color for the title */
}

.subscribe-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.form-input {
    padding: 10px;
    border-radius: 5px;
    border: 2px solid; /* Accent color for input borders */
    border-color: white;
    margin-right: 10px;
    width: 250px;
    font-size: 16px;
    background-color: #8aca8e; /* Light background for input */
    color: white;
}

.submit-button {
    padding: 10px 20px;
    background-color: #8aca8e; /* Button background color */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

    .submit-button i {
        margin-left: 5px;
    }

/* Middle Footer Section */
.middle-footer {
    background-color: #8aca8e; /* Darker background for the middle section */
    padding: 40px 0;
}

.contact-info, .social-links, .contact-details, .social-networks {
    color: white;
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #8aca8e; /* Accent color for the titles */
}

.footer-logo-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px 0;
}

.footer-description {
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Form in Footer */
.contact-form-container {
    position: fixed;
    bottom: 10%;
    right: 10%;
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.contact-form-body .form-input {
    width: 100%;
    margin-bottom: 10px;
}

.contact-form-body button {
    background-color: #8aca8e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

.loader-mask {
    display: none;
}

.loader div {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f39c12;
    animation: loaderAnimation 1.5s infinite ease-in-out;
    margin: 0 5px;
}

@keyframes loaderAnimation {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

.footer-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 15px;
}

.footer-logo {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.company-name {
    color: #000;
    font-size: 1.5em;
    margin: 0px 0;
}

.company-description {
    color: #fff;
    font-size: 0.9em;
    margin-bottom: 0px;
}

.social-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-button {
    text-align: center;
}

.social-label {
    display: block;
    color: #444;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.social-qr {
    max-width: 100px;
    height: auto;
}

.contact-title {
    color: #000;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.contact-subtitle {
    color: #f3f3f3;
    margin-bottom: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .social-section {
        flex-direction: row;
        justify-content: center;
    }

    /* Ensure the logo section stays at the right on smaller screens */
    .logo-section {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

.footer-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 15px;
}

.footer-logo {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.company-name {
    color: #000;
    font-size: 1.5em;
    margin: 0px 0;
}

.company-description {
    color: #fff;
    font-size: 0.9em;
    margin-bottom: 0px;
}

.social-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-button {
    text-align: center;
}

.social-label {
    display: block;
    color: #444;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.social-qr {
    max-width: 100px;
    height: auto;
}

.contact-title {
    color: #000;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.contact-subtitle {
    color: #f3f3f3;
    margin-bottom: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.kayaking_banner-con::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 75%;
    left: 0;
    top: 0;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../projectimage/main_backgroundimage.jpg);
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .social-section {
        flex-direction: row;
        justify-content: center;
    }

    /* Ensure the logo section stays at the right on smaller screens */
    .logo-section {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}
