/*** components.css ***/
/* Enhanced Sidebar Styles with Purple Shadows */
.sidebar, .third-column {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(47, 42, 75, 0.15),
        0 2px 8px rgba(47, 42, 75, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: fit-content;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.sidebar, .third-column p {         /* new added by LP */
	text-size: smaller !important;
	line-height: .9rem;
	text-align:center;
}
.sidebar:hover, .third-column:hover {
    box-shadow: 
        0 8px 30px rgba(47, 42, 75, 0.2),
        0 4px 15px rgba(47, 42, 75, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.sidebar-section {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 2px 10px rgba(47, 42, 75, 0.08),
        0 1px 4px rgba(95, 84, 125, 0.06);
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    box-shadow: 
        0 4px 15px rgba(47, 42, 75, 0.12),
        0 2px 8px rgba(95, 84, 125, 0.1);
    transform: translateY(-1px);
}

.sidebar-section:last-child { margin-bottom: 0; }

.sidebar-section h3 {
    color: #1f1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-peach);
    position: relative;
    font-size: 1.6rem;
}

.sidebar-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-medium);
    border-radius: 2px;
}

.sidebar-links { list-style: none; }
.sidebar-links li {
    margin-bottom: 0.25rem;
    transition: transform 0.2s ease;
}

.sidebar-links li:hover { transform: translateX(5px); }
.sidebar-links a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    display: block;
    border-radius: 6px;
    margin: 0.1rem 0;
}

.sidebar-links a:hover {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--accent-peach), rgba(229, 164, 171, 0.3));
    text-decoration: none;
    font-weight: 500;
    box-shadow: 
        0 2px 8px rgba(47, 42, 75, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateX(3px);
}

/* Enhanced Main Column Styles with Purple Shadows */
.main-column {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(47, 42, 75, 0.15),
        0 4px 16px rgba(47, 42, 75, 0.1),
        0 2px 8px rgba(95, 84, 125, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-column:hover {
    box-shadow: 
        0 12px 40px rgba(47, 42, 75, 0.18),
        0 6px 20px rgba(47, 42, 75, 0.12),
        0 3px 12px rgba(95, 84, 125, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.main-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-medium), var(--accent-pink));
}

.main-column h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.main-column h3 {
    color: #1f1a2e;
    margin: 2rem 0 1rem 0;
    position: relative;
    padding-left: 1rem;
    font-size: 1.7rem;
}

.main-column h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-peach));
    border-radius: 2px;
}

.main-column p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5; /* was 1.7 */
}

/* Main column lists with reduced padding */
.main-column ul li, .main-column ol li {
    margin-bottom: 0.25rem;
    padding: 0.1rem 0;
}

/* Third Column Specific Styles */
.third-column h3 {
    color: #1f1a2e;
    font-size: 1.4rem; /* was 1.6rem */
}

.update-list, .stats-list { list-style: none; }
.update-list li, .stats-list li {
    padding: 0.2rem 0; /* was 0.3rem 0 */
    border-bottom: 1px solid rgba(224, 212, 216, 0.5);
    transition: all 0.3s ease;
}

.update-list li:hover, .stats-list li:hover {
    background: rgba(247, 198, 182, 0.2);
    padding-left: 0.3rem;
    border-radius: 4px;
}

.update-list li:last-child, .stats-list li:last-child { border-bottom: none; }

/* Enhanced Info Sections with Purple Shadows */
.info-sections {
    background: linear-gradient(0.25turn, #2f2a4b, #5f547d, #a27c9c, #e5a4ab, #f7c6b6);
    padding: 4rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}
.info-sections::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="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.sections-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.info-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 
        0 10px 35px rgba(47, 42, 75, 0.2),
        0 6px 20px rgba(47, 42, 75, 0.15),
        0 3px 10px rgba(95, 84, 125, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-peach));
}

.info-section:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(47, 42, 75, 0.25),
        0 12px 30px rgba(47, 42, 75, 0.2),
        0 6px 15px rgba(95, 84, 125, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.info-section h3 {
    color: #1f1a2e;
    margin-bottom: 1rem; /* was 1.5rem */
    text-align: center;
    font-size: 1.6rem;
}
.info-section p {         /* new added by LP */
	text-size: smaller;
	line-height: .9rem;
	text-align: center;
}	

.info-section ul { list-style: none; }
.info-section li {
    margin-bottom: 0.2rem; /* was 0.3rem */
    transition: transform 0.2s ease;
}

.info-section li:hover { transform: translateX(5px); }
.info-section a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: block;
    margin: 0.1rem 0;
}

.info-section a:hover {
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(229, 164, 171, 0.3), rgba(247, 198, 182, 0.3));
    text-decoration: none;
    font-weight: 500;
    box-shadow: 
        0 3px 12px rgba(47, 42, 75, 0.15),
        0 1px 4px rgba(95, 84, 125, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateX(3px);
}
/* Simple Dropdown Styles */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
}

.dropdown.active .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}
.dropdown-menu a:hover { background: #f5f5f5; }

/* Top Navigation Positioning - FORCE to very top */
.top-nav {
    position: absolute;
    top: -23px;  /* Negative value to force above any header padding */
    right: 20px;
    z-index: 1000;
}

.top-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px; /* very narrow */
}

.top-nav .nav-item { position: relative; }
.top-nav .nav-link {
    color: #333;
    text-decoration: none;
    padding: 6px 8px;  /* Reduced padding for tighter buttons */
    display: block;
    white-space: nowrap;
    font-size: 14px;  /* Slightly smaller font */
}
.top-nav .nav-link:hover { background: #f0f0f0; }

/* Top Nav Dropdown Styling */
.top-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 9999;
}

.top-nav .dropdown.active .dropdown-menu { display: block; }
.top-nav .dropdown-menu a {
    display: block;
    padding: 8px 12px;  /* Slightly smaller dropdown padding */
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.top-nav .dropdown-menu a:hover { background: #f5f5f5; }
