/* Alumni Page Specific Styles */

/* Page Header */
.page-header {
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--font-mono);
}

.page-header p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.terminal-line {
    display: inline-block;
    background-color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-top: 20px;
    position: relative;
}

.terminal-line::before {
    content: '$';
    margin-right: 10px;
    color: var(--secondary-color);
}

.cmd {
    animation: typing 2s steps(40, end);
}

.alumni-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Alumni Map Section */
.alumni-map {
    padding: 100px 0;
    position: relative;
    background-color: var(--darker-bg);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.world-map {
    position: relative;
    width: 100%;
    padding-bottom: 50%; /* Aspect ratio for the map */
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--lighter-bg);
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/world-map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.world-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--lighter-bg) 0%, transparent 100%);
    z-index: 1;
}

.world-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.location-marker {
    position: absolute;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 255, 0, 0.2);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.marker-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--darker-bg);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.location-marker:hover .marker-label {
    opacity: 1;
}

/* Featured Alumni Section */
.featured-alumni {
    padding: 100px 0;
    position: relative;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alumni-card {
    background-color: var(--lighter-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.alumni-header {
    position: relative;
}

.alumni-avatar {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alumni-year-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 5px 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.alumni-info {
    padding: 20px;
}

.alumni-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    color: var(--text-color);
}

.alumni-company {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.alumni-company i {
    margin-right: 8px;
}

.alumni-info p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.alumni-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.alumni-skills span {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    font-size: 0.75rem;
    border-radius: 3px;
    font-family: var(--font-mono);
}

/* Industry Distribution Section */
.industry-distribution {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.industry-terminal {
    max-width: 800px;
    margin: 0 auto;
}

.terminal-box {
    background-color: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terminal-header {
    background-color: #0a0a0a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.window-btns {
    display: flex;
}

.window-btns span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.window-btns span:nth-child(1) {
    background-color: #ff5f56;
}

.window-btns span:nth-child(2) {
    background-color: #ffbd2e;
}

.window-btns span:nth-child(3) {
    background-color: #27c93f;
}

.terminal-title {
    margin-left: 20px;
    color: #808080;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto;
}

.terminal-body::-webkit-scrollbar {
    width: 5px;
}

.terminal-body::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
}

.terminal-body pre {
    margin: 0;
    white-space: pre-wrap;
}

/* Companies Section */
.companies-section {
    padding: 100px 0;
    position: relative;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.company-item {
    text-align: center;
    transition: transform 0.3s;
}

.company-item:hover {
    transform: translateY(-5px);
}

.company-logo {
    width: 80px;
    height: 80px;
    background-color: var(--lighter-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 0, 0.1);
    transition: all 0.3s;
}

.company-item:hover .company-logo {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    color: var(--secondary-color);
}

.text-logo {
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 1.8rem;
}

.company-name {
    font-size: 0.9rem;
    color: var(--text-color);
    font-family: var(--font-mono);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--lighter-bg);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    color: rgba(0, 255, 0, 0.1);
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content {
    margin-top: 40px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.author-name {
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3.5rem;
    }
    
    .alumni-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alumni-filter {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-header p {
        font-size: 1.3rem;
    }
    
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .alumni-card {
        height: 320px;
    }
    
    .alumni-info h3 {
        font-size: 1.3rem;
    }
    
    .alumni-role {
        font-size: 0.9rem;
    }
    
    .alumni-year {
        font-size: 0.8rem;
    }
    
    .filter-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .stat-title {
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .alumni-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .alumni-card {
        height: 350px;
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 10px);
        padding: 15px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-title {
        font-size: 0.85rem;
    }
    
    .filter-button {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin-right: 10px;
    }
    
    .alumni-info {
        padding: 15px;
    }
    
    .alumni-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .alumni-stats {
        flex-direction: column;
    }
    
    .stat-card {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .alumni-filter {
        overflow-x: scroll;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .filter-button {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .alumni-card {
        height: 320px;
    }
    
    .alumni-info h3 {
        font-size: 1.1rem;
    }
    
    .alumni-role {
        font-size: 0.85rem;
    }
} 