.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
}

.nav-logo {
    height: 50px; /* Adjust height as needed */
    width: auto;
    margin-right: 10px; /* Spacing between logo and text */
}

:root {
    --primary-color: #00a859; /* Fresh green */
    --secondary-color: #007a46; /* Darker green */
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}
main {
    overflow: hidden;
}

.hero {
    background: url('https://via.placeholder.com/1500x800') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 10em 0;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2em;
    border-radius: 8px;
    display: inline-block;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1em;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.section-services, .section-booking, .section-contact, .section-Price {
    padding: 3em;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.service-item {
    border: 1px solid #ddd;
    padding: 2em;
    text-align: center;
    border-radius: 8px;
    background-color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.booking-form, .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form label, .booking-form input, .booking-form select, .booking-form textarea,
.contact-form label, .contact-form input, .contact-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.search-bar {
    margin-bottom: 2em;
    text-align: center;
}

.search-bar input {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.Price-list {
    display: none;
    margin-top: 1em;
    background-color: var(--white);
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.Price-list.active {
    display: block;
}

.Price-list ul {
    list-style: none;
    padding: 0;
}

.Price-list li {
    padding: 0.5em 0;
    border-bottom: 1px solid #ddd;
}

footer {
    background-color: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 1.5em 0;
    margin-top: 3em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    margin: 0.5em 0;
}

.social-links {
    margin-top: 1em;
}

.social-links a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 0.5em 0;
    }
    .hero {
        padding: 5em 0;
    }
    .hero h2 {
        font-size: 2em;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-details {
        text-align: center;
        margin-bottom: 1em;
    }
    .maps{
        display: block;
        align-items: center;
        width: 200px;
        height: 20px;
        }
}
 
/* /our services clicking/ */

.service-item h3 a {
    text-decoration: none; 
    color: inherit; 
}

.service-item h3 a:hover {
    color: #00a859; 
}

/* Make the entire service item clickable */
.service-item-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
}

/* Ensure the service box styles remain intact */
.service-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

/* Add a hover effect for better user experience */
.service-item:hover {
    background: #f8f9fa; 
    color:#00a859 ; 
}

/* ============================= */
/* ✅ NAVBAR RESPONSIVENESS FIX */
/* ============================= */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center; /* Center items */
    }
    .navbar-toggler {
        margin-left: auto;
        border: none;
    }
    .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}

/* Ensure dropdown works on mobile */
.navbar-nav .dropdown-menu {
    display: none; /* Hide initially */
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Show on hover */
}


/* ✅ HERO SECTION RESPONSIVENESS */

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 20px;
    }
    .hero-content h2 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .btn {
        width: 100%; /* Full-width button */
        margin-bottom: 10px;
    }
}



/* ✅ GALLERY RESPONSIVENESS */

@media (max-width: 768px) {
    .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .gallery a {
        width: 48%; /* Two items per row */
        padding: 5px;
    }
    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }
}


/* ✅ GENERAL CONTENT RESPONSIVENESS */

@media (max-width: 768px) {
    .section-services, .section-booking {
        padding: 20px;
    }
    .service-item {
        text-align: center;
    }
    .service-item h3 {
        font-size: 18px;
    }
    .service-item p {
        font-size: 14px;
    }
}
