html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.header {
    background-color: #ff8c00;
    color: white;
    padding: 10px 0;
}

    .header h1 {
        margin: 0;
        font-size: 28px;
        text-align: center;
    }

.navbar {
    background-color: #007bff;
}

    .navbar a {
        color: white !important;
        font-weight: bold;
    }

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.home-content {
    padding: 40px 20px;
}

    .home-content h2 {
        color: #007bff;
    }

.btn-tour {
    background-color: #ff8c00;
    border: none;
    color: white;
    font-size: 18px;
}

    .btn-tour:hover {
        background-color: #e67600;
    }

.custom-navbar {
    height: 80px; /* Reduce navbar height */
    padding: 5px 15px; /* Reduce padding */
}

    .custom-navbar .navbar-brand img {
        height: 80px; /* Adjust logo height */
        width: auto; /* Maintain aspect ratio */
    }

@media (max-width: 992px) {
    .navbar-nav

{
    background: #ffffff; /* White background for the dropdown */
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: #333 !important; /* Dark text for better readability */
    font-weight: 600;
    padding: 10px;
}

    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
        border-radius: 5px;
    }

.dropdown-menu {
    background: #ffffff !important;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .dropdown-menu .dropdown-item {
        color: #333 !important;
        font-weight: 500;
    }

        .dropdown-menu .dropdown-item:hover {
            background: #f8f9fa;
        }

}
/* Custom Dropdown Styling */
.custom-dropdown-menu {
    background-color: #343a40 !important; /* Dark Gray */
    border: 1px solid #222; /* Slightly darker border */
}

/* Custom Dropdown Text */
.custom-dropdown-text {
    color: #ffffff !important; /* White text */
}

    .custom-dropdown-text:hover {
        background-color: #007bff !important; /* Blue background on hover */
        color: white !important;
    }

    /* Logout button specific styling */
    .custom-dropdown-text.text-danger:hover {
        background-color: #dc3545 !important; /* Red background on hover */
        color: white !important;
    }
