/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge */
body {
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Firefox */
body {
  scrollbar-width: none;    /* Firefox */
}

.hline-fixed {
    position: absolute;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/*Selection Colors*/
/* Default yellow selection for the entire site */
::selection {
    background-color: #ffc107;
    color: #000000
}

::-moz-selection {
    background-color: #ffc107;
    color: #000000;
}

/* Footer Section - Light Gray */
.footer ::selection {
    background-color: #e0e0e0;
    color: #000000;
}

.footer ::-moz-selection {
    background-color: #e0e0e0;
    color: #000000;
}

/* Navigation/Header - White selection */
.header ::selection {
    background-color: #e0e0e0;
    color: #000000;
}

/* Updated button selection styles */
.resume-btn::selection,
.resume-btn *::selection {
    background-color: #e0e0e0;
    color: #000000;
}

.search-overlay ::selection {
    background-color: #e0e0e0;
    color: #000000;
}

.search-overlay ::-moz-selection {
    background-color: #e0e0e0;
    color: #000000;
}

/* Vertical Side Lines */
.page-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.page-lines::before,
.page-lines::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.page-lines::before {
    left: 11%;
}

.page-lines::after {
    right: 11%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1400;
    transition: transform 0.3s ease;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff);
    z-index: 1001;
    transition: width 0.1s ease;
    opacity: 0;
}

.progress-bar.visible {
    opacity: 1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.logo.hidden {
    transform: translateY(-50px);
    opacity: 0;
}
.open-to-work-btn {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0 2rem;
    border-radius: 8px;
    font-size: 0.90rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
    font-family: inherit;
    box-shadow: none;
    letter-spacing: 0.02em;
    outline: none;
    width: 180px;       
    height: 40px;
}

.open-to-work-btn:hover {
    transform: translateY(-1px);
}
/* Section Divider Lines */
.section-divider {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)) top/100% 1px no-repeat,
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)) bottom/100% 1px no-repeat,
    repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(255,255,255,0.08) 3px, rgba(255,255,255,0.08) 4px);
  background-position:
    top left,
    bottom left,
    center;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  background-size:
    100% 1px,
    100% 1px,
    16px 16px;
}

/* Management Hero Section */
.management-hero-section {
    display: flex;
    justify-content: flex-start;
    padding-top: 8rem;
    position: relative;
}

.management-hero-content {
    max-width: 1150px;
    margin: 0;
    text-align: left;
    padding-left: 0rem; 
}

.management-hero-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.management-hero-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0rem;
}

.management-hero-description p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.01em;
}

/* Event Management Section */
.event-management-section {
    padding: 2rem 0;
}

.event-header {
    display: flex;
    justify-content: flex-start;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    margin-top: 4rem;
    padding-left: 4rem;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
}

/* Timeline Card */
.timeline-card {
    position: relative;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Timeline Connection Dots */
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -63px; 
    top: 2rem; 
    width: 22px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.timeline-year {
    position: relative;
    left: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
}

/* Card Content */
.card-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    min-height: 300px;
}

.card-left {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-header {
    margin-bottom: 2rem;
}

.card-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.event-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.event-link svg {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.event-link:hover svg {
    opacity: 1;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.card-role {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-right {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.timeline-card:hover .image-overlay {
    opacity: 0.3;
}
.event-content {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-item {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.event-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
}

/* Community Section */
.community-section {
    padding: 2rem 0;
}

.community-header {
    display: flex;
    justify-content: flex-start;
}

.community-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.community-content {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.community-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.community-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

/* Floating decoration elements */
.community-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.community-item:hover::after {
    transform: scale(1.5);
    opacity: 0.8;
}


.community-name{
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.community-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    position: relative;
    z-index: 2;
}

.community-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Approach Section */
.approach-section {
    padding: 2rem 0;
}

.approach-header {
    display: flex;
    justify-content: flex-start;
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.approach-content {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0rem;
    text-align: left;
}

.approach-text {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #a3a3a3;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

.approach-text:last-child {
    margin-bottom: 0;
}

/* Contact Section */

.contact-section {
    padding: 3rem 0;
    background-color: #0a0a0a;
}


.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.contact-info {
    margin-bottom: 2rem;
}

.meet-link {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.meet-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.resume-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none; /* Remove underline from link */
    display: inline-block;  /* Make it behave like a button */
    text-align: center;     /* Center the text */
}

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

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 1rem;
    align-items: start;
}
.footer-logo-link {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    line-height: 1.4;
}
.footer-center {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto; /* Force to the right */
}
.footer-link {
    display: flex;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    justify-content: flex-end;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 1.25rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.625rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 40px;
}

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

.search-shortcut {
    font-size: 0.90rem;
    color: #ffffff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.10);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Search Dialog Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
}

.search-overlay * {
    font-family: inherit;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-dialog {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(20, 20, 20, 0.9) 50%,
        rgba(15, 15, 15, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    max-width: 540px;
    max-height: 70vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(-10px);
    transition: all 0.2s ease;
}

.search-overlay.active .search-dialog {
    transform: scale(1) translateY(0);
}

/* Search Header */
.search-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

#searchInput {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-family: inherit;
    outline: none;
    padding: 0;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Search Results */
.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-section {
    margin-bottom: 1rem;
}

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

.search-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}

.search-items {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
    cursor: pointer;
}

.search-item:hover,
.search-item.selected {
    background: rgba(255, 255, 255, 0.05);
}

.search-item-content {
    flex: 1;
    min-width: 0;
}

.search-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.125rem;
}

/* Search Footer */
.search-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.search-shortcuts {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.shortcut-hint {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

kbd {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 3px;
    padding: 0.125rem 0.25rem;
    font-size: 0.625rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .page-lines {
        display: none;
    }

    .page-lines-inner {
        display: none;
    }

    .management-hero-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .management-hero-description p {
        font-size: 1.125rem;
    }

    .event-management-section,
    .community-section,
    .approach-section {
        padding: 1rem 0;
    }

    .approach-text {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .social-links {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-left {
        align-items: center; /* Center logo and tagline */
    }
    
    .footer-center {
        justify-content: center; /* Center the links */
        margin-left: 0;
    }
    
    .footer-links {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
    }
    
    .footer-link {
        font-size: 0.9rem; /* Slightly smaller on mobile */
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-divider {
        margin-bottom: 1.5rem;
    }

    /* Timeline mobile adjustments */
    .timeline-container {
        padding-left: 2rem;
    }
    
    .timeline-line {
        left: 10px
    }
    .timeline-marker {
        left: -32px; 
        top: 2rem; 
    }
    .timeline-year {
      left: 11px;
      font-size: 0.9rem; 
    }
    .card-left {
        padding: 2rem;
    }
    
    .card-links {
        gap: 0.75rem;
    }
    
    .event-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-card {
        margin-left: 1.5rem;
    }
    
    .timeline-card::before {
        left: -2.75rem;
    }
    .card-content {
        grid-template-columns: 1fr;
    }
    .card-right {
        display: none;
    }
    /* Community grid mobile adjustments */
    .community-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-item {
        padding: 2rem;
    }
    
    .community-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    /* Timeline mobile adjustments */
    .timeline-container {
        padding-left: 0.5rem;
    }
    
    .timeline-line {
        left: 5px
    }
    .timeline-marker {
        left: -13px; 
        top: 2rem; 
    }
    .timeline-year {
      left: 11px;
      font-size: 0.9rem; 
    }
    .card-left {
        padding: 2rem;
    }
    .timeline-card {
        margin-left: 1.5rem;
    }
    
    .timeline-card::before {
        left: -2.75rem;
    }
    .card-content {
        grid-template-columns: 1fr;
    }
    .card-right {
        display: none;
    }
    .card-left {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }

    .management-hero-title {
        font-size: 1.5rem;
    }

    .management-hero-description p {
        font-size: 1rem;
    }

    .approach-text {
        font-size: 1.125rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-link {
        font-size: 1.125rem; /* Slightly smaller logo */
    }
    
    .footer-links {
        gap: 1.5rem; /* Tighter spacing between links */
        flex-direction: row; /* Keep horizontal but allow wrapping */
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.15rem 0;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
    }
    
    .footer-location,
    .footer-copyright {
        font-size: 0.7rem;
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .search-btn {
        padding: 0.5rem;
    }
    
    .search-shortcut {
        display: none;
    }
    
    .search-overlay {
        padding-top: 10vh;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .search-dialog {
        max-height: 80vh;
    }
    
    .search-shortcuts {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .search-footer {
        display: none;
    }
}

/* Hide search button on mobile initially */
@media (max-width: 480px) {
    .nav-right {
        gap: 1rem;
    }
}


/* Add this to the end of your management.css file */

/* Event Grid Layout */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* The Translucent "Glassmorphism" Card */
.event-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    
    /* Card Structure and Styling */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Hover Effect */
.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- Typography within the Card (re-styling existing classes) --- */

.event-card .event-name {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.event-card .event-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.event-card .event-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}