/* Custom styles for Golf Simulator Booking System */

/* Mobile Optimization for Calendar */
@media (max-width: 768px) {
    /* Larger touch targets for mobile */
    .fc-button {
        padding: 10px 15px !important;
        font-size: 14px !important;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Larger "Ny bokning" button on mobile */
    #openBookingBtn {
        font-size: 16px !important;
        padding: 12px 20px !important;
        white-space: nowrap;
    }
    
    /* Better spacing for calendar header */
    .fc-header-toolbar {
        margin-bottom: 1.5rem !important;
        padding: 0.5rem 0 !important;
    }
    
    /* Optimize calendar title size */
    .fc-toolbar-title {
        font-size: 1.1rem !important;
        padding: 0 5px;
    }
    
    /* Better time slot sizing */
    .fc-timegrid-slot {
        height: 3em !important;
    }
    
    /* Larger event text */
    .fc-event-title {
        font-size: 13px !important;
    }
    
    /* Optimize day header */
    .fc-col-header-cell {
        padding: 8px 2px !important;
        font-size: 14px !important;
    }
    
    /* Better time labels */
    .fc-timegrid-slot-label {
        font-size: 12px !important;
    }
    
    /* Responsive page title */
    h2 {
        font-size: 1.3rem !important;
    }
    
    /* Hide icon in title on very small screens */
    @media (max-width: 400px) {
        h2 i {
            display: none;
        }
    }
    
    /* Optimize booking modal for mobile */
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }
    
    .modal-body {
        padding: 1rem !important;
    }
    
    .modal-header {
        padding: 1rem !important;
    }
    
    .modal-footer {
        padding: 1rem !important;
    }
    
    /* Larger form inputs on mobile */
    .form-control, .form-select, .btn {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px !important;
    }
    
    /* Make dropdown select larger and easier to tap */
    .form-select-lg {
        font-size: 18px !important;
        padding: 14px 40px 14px 14px !important;
        background-size: 20px 20px;
    }
    
    /* Better radio button layout */
    .form-check {
        margin-bottom: 0.75rem !important;
    }
    
    .form-check-label {
        font-size: 16px !important;
        padding-left: 0.5rem;
    }
    
    /* Optimize badges for mobile */
    .badge {
        font-size: 14px !important;
        padding: 6px 10px !important;
    }
    
    /* Better button sizing */
    .btn-sm {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }
    
    .btn-lg {
        font-size: 18px !important;
        padding: 14px 24px !important;
    }
    
    /* Date picker styling for mobile */
    input[type="date"] {
        font-size: 16px !important;
        padding: 10px !important;
        min-width: 140px;
        border: 2px solid #dee2e6;
        border-radius: 0.375rem;
    }
    
    input[type="date"]:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 252, 0.25);
    }
}

:root {
    --neutral-dark: #2a2d3a;
    --neutral-medium: #3c4043;
    --neutral-light: #5f6368;
    --neutral-lighter: #8c8c8c;
    --accent-primary: #6c7293;
    --accent-secondary: #8b8fa8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --subtle-accent: #a8a8b3;
    --warm-grey: #f8f9fa;
}

/* Dropdown menu styling - ensure text is black and readable */
/* Force override Bootstrap dark theme */
[data-bs-theme="dark"] .dropdown-menu,
.dropdown-menu {
    background-color: #ffffff !important;
}

[data-bs-theme="dark"] .dropdown-item,
.dropdown-item,
.dropdown-item a {
    color: #000000 !important;
}

[data-bs-theme="dark"] .dropdown-item:hover,
[data-bs-theme="dark"] .dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    color: #000000 !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
}

[data-bs-theme="dark"] .dropdown-item i,
.dropdown-item i {
    color: #000000 !important;
}

[data-bs-theme="dark"] .dropdown-divider,
.dropdown-divider {
    border-color: rgba(0, 0, 0, 0.15) !important;
}

/* Admin table styling - ensure all text is white */
.table td, .table th {
    color: #ffffff !important;
}

.table .text-muted,
.table small.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.table .fw-bold {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.table tbody tr {
    background-color: rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Calendar legend styling */
.calendar-legend {
    background-color: rgba(255, 255, 255, 0.05);
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legend-box {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-item small {
    color: #ffffff;
    font-size: 0.875rem;
}

/* Desktop drag-to-select styling */
@media (min-width: 768px) {
    /* Make drag selection more visible on desktop */
    .fc-highlight {
        background: rgba(13, 110, 252, 0.3) !important;
        border: 2px solid #0d6efd !important;
    }
    
    /* Show pointer cursor on selectable areas */
    .fc-timegrid-slot {
        cursor: pointer;
    }
    
    /* Visual feedback during selection */
    .fc-timegrid-slot:hover {
        background: rgba(13, 110, 252, 0.1) !important;
    }
    
    /* Current time indicator */
    .fc-timegrid-now-indicator-line {
        border-color: #dc3545 !important;
        border-width: 2px !important;
    }
}

/* Enhanced Hero section styling */
.hero-background {
    background: 
        linear-gradient(135deg, 
            rgba(42, 45, 58, 0.95) 0%, 
            rgba(60, 64, 67, 0.9) 30%,
            rgba(95, 99, 104, 0.8) 70%, 
            rgba(108, 114, 147, 0.9) 100%),
        radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 168, 179, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(139, 143, 168, 0.05) 0%, transparent 30%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="subtle" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="200" height="200" fill="url(%23subtle)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="80" r="2" fill="%23ffffff" opacity="0.03"/><circle cx="70" cy="30" r="1.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="70" r="1" fill="%23ffffff" opacity="0.025"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--subtle-accent), #c0c0c0, var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Card enhancements */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Booking status indicators */
.border-warning {
    border-color: #ffc107 !important;
    border-width: 3px !important;
}

.border-success {
    border-color: #198754 !important;
    border-width: 3px !important;
}

.border-secondary {
    border-color: #6c757d !important;
    border-width: 3px !important;
}

/* Table enhancements */
.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-warning {
    --bs-table-bg: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.table-secondary {
    --bs-table-bg: rgba(108, 117, 125, 0.1);
    border-left: 4px solid #6c757d;
}

/* Form enhancements */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--subtle-accent) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Badge styling */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

/* Alert styling */
.alert {
    border: none;
    border-radius: 10px;
    border-left: 4px solid;
}

.alert-info {
    border-left-color: var(--bs-info);
}

.alert-warning {
    border-left-color: var(--bs-warning);
}

.alert-success {
    border-left-color: var(--bs-success);
}

.alert-danger {
    border-left-color: var(--bs-danger);
}

/* Neutral Navigation styling with glassmorphism */
.navbar {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1050;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar-brand:hover {
    color: var(--subtle-accent) !important;
    text-shadow: 0 0 8px rgba(168, 168, 179, 0.4);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--subtle-accent) !important;
    text-shadow: 0 0 5px rgba(168, 168, 179, 0.3);
}

/* Dropdown menu styling */
.dropdown-menu {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.9)) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1060 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin: 0.125rem 0 0 !important;
    min-width: 10rem;
}

.dropdown-item {
    color: var(--bs-body-color) !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: linear-gradient(135deg, 
        rgba(168, 168, 179, 0.1), 
        rgba(168, 168, 179, 0.05)) !important;
    color: var(--accent-primary) !important;
}

.dropdown-toggle::after {
    color: rgba(255, 255, 255, 0.8);
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-background {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .golf-ball-icon {
        font-size: 3rem;
    }
    
    .nav-card {
        height: 140px;
        padding: 1.5rem 1rem;
    }
    
    .nav-card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .nav-card-title {
        font-size: 1rem;
    }
    
    .nav-card-desc {
        font-size: 0.8rem;
    }
    
    .location-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Mobile modal adjustments */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-body {
        max-height: 80vh;
        overflow-y: auto;
        padding: 1rem;
    }
    
    /* Duration selection on mobile */
    #quickDurationRadios .row {
        gap: 0.5rem;
    }
    
    #quickDurationRadios .col-md-4 {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .form-check {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .form-check-label {
        font-weight: 500;
        color: #fff;
        width: 100%;
        cursor: pointer;
    }
    
    .form-check-input:checked ~ .form-check-label {
        color: var(--bs-primary);
    }
}

/* Dark mode specific adjustments */
[data-bs-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--neutral-medium) 100%);
}

[data-bs-theme="dark"] .card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Available slots display */
.available-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.time-slot {
    text-align: center;
    padding: 0.5rem;
    background: var(--bs-dark);
    border: 1px solid var(--bs-border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: var(--bs-secondary);
    cursor: pointer;
}

.time-slot.available-30 {
    border-left: 3px solid var(--bs-success);
}

.time-slot.available-60 {
    border-left: 3px solid var(--bs-primary);
}

/* Footer styling */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.125);
}

/* Validation message styling */
.validation-message {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Statistics cards */
.card.bg-primary,
.card.bg-success,
.card.bg-warning,
.card.bg-info {
    border: none;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #1e40af 100%);
}

.card.bg-success {
    background: linear-gradient(135deg, var(--bs-success) 0%, #16a34a 100%);
}

/* Tab styling */
.nav-tabs .nav-link {
    border-radius: 8px 8px 0 0;
    border: 1px solid transparent;
}

.nav-tabs .nav-link.active {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    border-bottom-color: var(--bs-body-bg);
}

/* Modern Navigation Cards */
.navigation-cards {
    margin-top: 3rem;
}

.nav-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at 30% 30%, rgba(168, 168, 179, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nav-card:hover::before {
    opacity: 1;
}

.nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(168, 168, 179, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.12), 
        rgba(255, 255, 255, 0.08));
}

.nav-card-icon {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.nav-card-title {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.nav-card-desc {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Neutral card colors with subtle variations */
.booking-card .nav-card-icon { color: var(--accent-primary); text-shadow: 0 0 8px rgba(108, 114, 147, 0.3); }
.booking-card:hover .nav-card-icon { color: var(--accent-secondary); transform: scale(1.1); }

.bookings-card .nav-card-icon { color: var(--subtle-accent); text-shadow: 0 0 8px rgba(168, 168, 179, 0.3); }
.bookings-card:hover .nav-card-icon { color: #c0c0c0; transform: scale(1.1); }

.admin-card .nav-card-icon { color: var(--neutral-lighter); text-shadow: 0 0 8px rgba(140, 140, 140, 0.3); }
.admin-card:hover .nav-card-icon { color: #a0a0a0; transform: scale(1.1); }

.tour-card .nav-card-icon { color: var(--accent-secondary); text-shadow: 0 0 8px rgba(139, 143, 168, 0.3); }
.tour-card:hover .nav-card-icon { color: var(--subtle-accent); transform: scale(1.1); }

/* Golf ball animation */
.golf-ball-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.golf-ball-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    animation: golfBallBounce 2s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.golf-ball-shadow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(4px);
    animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes golfBallBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.5; }
}

/* Golf course scene elements */
.golf-scene-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.golf-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.golf-flag {
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2rem;
    color: var(--subtle-accent);
    animation: flagWave 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(168, 168, 179, 0.4);
    opacity: 0.7;
}

.golf-tree {
    position: absolute;
    bottom: -10px;
    left: -40px;
    font-size: 1.5rem;
    color: var(--accent-primary);
    animation: treesSway 4s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(108, 114, 147, 0.4);
    opacity: 0.6;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes treesSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Location badge */
.location-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--subtle-accent);
    display: inline-block;
    backdrop-filter: blur(20px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Tour section */
.tour-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-link-container {
    max-width: 300px;
    margin: 0 auto;
}

.tour-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navigation quick cards - legacy support */
.hover-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}
