/* Tailwind Configuration */
:root {
    --color-primary: #A6AC5C;
    --color-secondary: #23272A;
    --color-dark: #23272A;
    --color-accent: #A6AC5C;
}

/* Custom styles that extend Tailwind */
.bg-primary {
    background-color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.text-secondary {
    color: var(--color-secondary);
}

.bg-dark {
    background-color: var(--color-dark);
}

.text-dark {
    color: var(--color-dark);
}

.bg-accent {
    background-color: var(--color-accent);
}

.text-accent {
    color: var(--color-accent);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    min-width: 200px;
    background: #0273BA;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #FFD166;
    color: #23272A;
    transform: translateX(4px);
}

/* Ensure dropdowns are not clipped */
header {
    overflow: visible !important;
}

.container {
    overflow: visible !important;
}

nav {
    overflow: visible !important;
}

/* Group hover effects */
.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animation for dropdown */
.dropdown-animation {
    transition: all 0.2s ease-in-out;
}

.dropdown-animation-enter {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
}

.dropdown-animation-enter-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dropdown-animation-exit {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dropdown-animation-exit-active {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
} 