/* 
  Global Styles 
  Used for fonts, scrollbar, and shared custom button animations 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #595CFF; 
    border-radius: 4px;
}

/* 
  SHINY BUTTON EFFECT 
  Based on your request: Linear Gradient 90deg #595cff to #c6f8ff 
*/
.btn-valora {
    background: linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);
    background-size: 200% auto;
    color: white;
    transition: 0.5s;
    box-shadow: 0 0 15px rgba(89, 92, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-valora:hover {
    background-position: right center; /* move the gradient */
    box-shadow: 0 0 25px rgba(198, 248, 255, 0.7);
    transform: translateY(-2px);
}
/* --- SHARED HEADER & MOBILE MENU STYLES --- */

/* Desktop Nav Items */
.nav-item {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #475569;
    border-radius: 99px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.nav-item:hover, .nav-item.active {
    color: #595CFF;
    background-color: #eff6ff;
}

/* Dropdown Menu (Desktop) */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
}

.dropdown-item .icon-bg {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Mobile Drawer Links */
.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    transition: all 0.2s;
    width: 100%; /* Osigurava punu širinu */
}

.mobile-link:hover, .mobile-link.active {
    background: #eff6ff;
    color: #595CFF;
}

/* Submenu indentation on mobile */
.pl-4 { padding-left: 1.5rem !important; }