/* ========================================
   COMPONENT STYLES - QUILOMBERA WEBSITE
   ======================================== */

/* Active Navigation Styles */
.active-link {
    color: #e6b325 !important;
    font-weight: 600;
    position: relative;
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e6b325;
    border-radius: 1px;
}

/* Hover effects for navigation links */
#navbar a:not(.active-link):hover,
#mobile-menu a:not(.active-link):hover {
    color: #e6b325 !important;
    transition: color 0.3s ease;
}
.mobile-menu{
    height: 100vh;
}
/* Mobile menu active state */
#mobile-menu .active-link {
    background-color: rgba(230, 179, 37, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 0 -12px;
}

/* Smooth transitions for all navigation elements */
#navbar a,
#mobile-menu a {
    transition: all 0.3s ease;
}

/* Logo hover effect */


/* Social icons hover effect */
#navbar a[target="_blank"]:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hamburger button hover effect */
#hamburger:hover {
    background-color: rgba(230, 179, 37, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
} 