
/* General Text Resets */
body, html {
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.1px;
}

/* Header Text */
.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2b2b2b;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-top: -5px;
}

/* TopBar Text */
.topBar .contact-item span,
.topBar .contact-item a {
    font-size: 0.85rem;
    color: #444;
}

.desktop-header {
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .mainNav {
    transition: background-color 0.3s ease;
  }
  


/* Navigation Menu - Aggressive Styling */
.navInner .mainMenu li a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    padding: 10px 15px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: transparent;
    border-radius: 4px;
}

.navInner .mainMenu li a:hover {
    background-color: transparent;
    color: #fff;
}

/* Mobile Menu */
.mobile-nav li a {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mobile-nav li a:hover {
    color: transparent;
}

/* Mobile Header and Overlay */
.mobile-header .logo img,
.mobile-menu-panel .logo img {
    max-height: 40px;
}

.mobile-menu-panel h4 {
    font-size: 1rem;
    color: #111;
    margin-bottom: 10px;
}

.mobile-lang-selector button span {
    font-size: 0.85rem;
    color: #555;
}

.mobile-lang-dropdown a {
    display: block;
    padding: 5px 10px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
}

.mobile-lang-dropdown a:hover {
    background-color: #f0f0f0;
}

/* Social Icons */
.social-icons a,
.social-links a {
    color: #333;
    font-size: 1.1rem;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-icons a:hover,
.social-links a:hover {
    color: #ffc400;
}

/* Contact Info - White Icons and Text */
.contact-info .contact-item i {
    color: #ffc400;
    font-size: 1.2rem;
    margin-right: 8px;
}

.contact-info .contact-item span,
.contact-info .contact-item a {
    color: #fff;
    font-size: 0.9rem;
    display: block;
    text-decoration: none;
}

/* Location Link */
.location-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0056b3;
}

.location-link:hover {
    text-decoration: underline;
}

/* Social Links - White Icons with Gray Circle Background */
.social-links a.social-link {
    color: #fff;
    background-color: #3a3a3a;
    border-radius: 50%;
    padding: 10px;
    margin: 0 5px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a.social-link:hover {
    background-color: #555;
    color: #fff;
}

.mainHeader.desktop-header {
    position: relative; /* Changed from fixed to relative for normal document flow */
    width: 100%;
    z-index: 100;
    background: #fff; /* Ensure solid background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0; /* Remove any default margins */
    top: 0; /* Reset any fixed positioning */
    left: 0; /* Reset any fixed positioning */
}

/* Ensure no extra spacing above the header */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Fix for any potential spacing issues */
html {
    margin: 0;
    padding: 0;
}

/* Ensure the top bar doesn't have any extra spacing */
.topBar {
    margin: 0;
    padding: 20px;
}

/* Make sure the header background is properly contained */
.header-background {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Menu item links */
.mainMenu .menu-item a {
    font-size: 0.9rem !important;  /* Increased from 0.75rem */
    letter-spacing: 0.1px !important;
    padding: 8px 0px !important;
    padding-right: 0% !important;  /* Slightly adjusted padding */
    margin: 0 !important;
    font-weight: 600 !important;   /* Ensure consistent font weight */
}

