/**
 * Navbar Spacing Adjustments
 * Adjusts spacing between menu items and contact info to improve layout balance
 */

/* Increase spacing between menu items and font size */
.nav-left a, 
.nav-dropdown .dropdown-toggle {
    margin-right: 30px; /* Increased from 25px */
    font-size: 18px; /* Further increased from 16px */
    font-weight: 500; /* Slightly bolder */
}

/* Special spacing for about link (following the services dropdown) */
.nav-dropdown + a {
    margin-left: 30px !important; /* Further increased from 30px for more separation */
}

/* Enhance contact info spacing and visibility */
.nav-contact-info {
    display: flex;
    gap: 25px; /* Increased from 20px */
    align-items: center;
    margin-right: 15px; /* Added margin to better position away from hamburger menu */
}

.nav-contact-item {
    font-size: 18px; /* Increased to match larger menu items */
    white-space: nowrap;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-weight: 500; /* Slightly bolder to match menu items */
}

/* Style dropdown menu items to match the increased font size */
.dropdown-item {
    font-size: 17px !important; /* Slightly smaller than main nav but larger than before */
    padding: 16px 22px !important; /* More padding for larger text */
}

/* Adjust contact layout on medium screens */
@media (max-width: 1300px) and (min-width: 993px) {
    .nav-contact-info {
        gap: 20px;
    }
    
    .nav-contact-item {
        font-size: 16px; /* Slightly reduced but still larger than before */
    }
    
    .nav-left a, 
    .nav-dropdown .dropdown-toggle {
        font-size: 17px; /* Slightly smaller on medium screens */
        margin-right: 25px; /* Slightly reduced spacing for medium screens */
    }
}

/* Improve spacing between navbar sections */
.nav-bar {
    padding: 0 30px; /* Increased from 20px for better edge spacing */
}

.nav-left {
    margin-right: 15px; /* Add spacing between left menu and contact info */
}

/* Make sure the last menu item doesn't have extra margin */
.nav-left a:last-of-type {
    margin-right: 0;
}

/* Enhanced mobile menu styles with smaller text and capitalized first letter */
.mobile-menu-content a {
    font-size: 16px !important; /* Decreased size */
    font-weight: 500;
    padding: 15px 0 !important;
    margin: 5px 0 !important;
    text-transform: capitalize !important; /* Capitalize first letter */
}

.mobile-submenu-item {
    font-size: 14px !important; /* Decreased size */
    padding: 14px 20px !important; /* Adjusted padding for smaller text */
    text-transform: capitalize !important; /* Capitalize first letter */
}

.mobile-contact-item {
    font-size: 14px !important; /* Decreased size */
    font-weight: 500;
    padding: 10px 0 !important;
    text-transform: capitalize !important; /* Capitalize first letter */
}

/* Enhanced hamburger menu - FORCE DISPLAY */
.hamburger-menu {
    display: flex !important; /* Force display */
    padding: 15px 0;
    width: 35px !important; /* Larger hamburger menu */
    height: 30px !important; /* Taller for better visibility */
    z-index: 1200 !important; /* Ensure it's always on top */
    position: absolute !important; /* Force positioning */
    right: 25px !important; /* Force right positioning */
    top: 50% !important; /* Center vertically */
    transform: translateY(-50%) !important; /* Perfect centering */
}

/* Extremely specific selector to ensure gold color */
.nav-bar .hamburger-menu span,
.hamburger-menu span,
body .nav-bar .hamburger-menu span,
html body .hamburger-menu span {
    height: 4px !important; /* Thicker lines */
    background-color: #d9a442 !important; /* Using direct HEX for brand gold color */
    margin: 2px 0;
    border-radius: 2px !important;
}

/* Make sure the mobile menu takes up full screen */
.mobile-menu {
    width: 100% !important;
    z-index: 1100 !important;
}

.mobile-menu-content {
    padding: 100px 20px 40px !important;
}
