/* Header Styles */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
@media (max-width: 768px) {
    .logo {
        flex-direction: column; /* Stack image and text */
        align-items: center; /* Center items in mobile */
        text-align: center;
    }

    .logo img {
        height: 40px; /* Smaller logo for mobile */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 5px; /* Add space below the image */
    }

    .logo span {
        font-size: 20px; /* Adjusted font size for mobile */
    }
}

.contact-info {
    display: flex;
     
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar {
    padding: 10px 0;
}

.navbar-brand, .nav-link {
    font-size: 1rem !important; /* Ensure the font size applies */
    font-weight: 500;
    padding: 10px 15px;
}

/* Style for nav items */
.nav-item {
    padding: 5px 25px; /* Add padding around nav items */
}

.book-now-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Adjust for larger screens */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        font-size: 2.1rem !important; /* Ensure the size applies on desktop */
        padding: 12px 18px;
    }
}

/* Adjust for mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 15px;
    }
    
    .nav-item {
        margin-bottom: 5px;
        text-align: center;
    }

    .nav-link {
        font-size: 2rem !important; /* Ensure the size applies on mobile */
        padding: 10px 15px;
    }

    .d-flex {
        padding: 10px 0;
    }
}

