/* Awards 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);
}

.awards-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);
}

/* Awards Timeline Section */
.awards-timeline {
    padding: 100px 0;
    position: relative;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: rgba(0, 255, 0, 0.2);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.year-marker {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.year {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 5px 20px;
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    box-shadow: 0 0 10px var(--primary-color);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    margin-left: auto;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: rgba(0, 255, 0, 0.3);
    top: 50px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
}

.award-card {
    background-color: var(--lighter-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.award-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.award-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.award-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-mono);
}

.award-date {
    color: #888;
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.award-details {
    padding: 20px;
}

.award-rank {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    font-family: var(--font-mono);
}

.award-details p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.award-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.award-tags span {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.1);
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 15px;
    font-family: var(--font-mono);
}

/* More Awards */
.more-awards {
    margin-top: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

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

.mini-award:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mini-award::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.mini-award-year {
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
}

.mini-award-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.mini-award-rank {
    font-size: 0.9rem;
    color: #888;
}

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

.achievements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-box {
    background-color: var(--lighter-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.achievement-box:hover {
    transform: translateY(-10px);
}

.achievement-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.2);
}

.achievement-details {
    padding: 25px;
}

.achievement-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-mono);
    color: var(--text-color);
}

.achievement-details p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
    position: relative;
    padding-left: 20px;
}

.achievement-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-family: var(--font-mono);
}

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

.upcoming-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;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3.5rem;
    }
    
    .awards-timeline {
        padding-left: 30px;
    }
    
    .timeline-item {
        margin-bottom: 50px;
    }
    
    .year-marker {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-header p {
        font-size: 1.3rem;
    }
    
    .timeline-wrapper {
        padding: 20px;
    }
    
    .awards-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .year-marker {
        font-size: 1.8rem;
        margin-left: -10px;
    }
    
    .award-card {
        padding: 20px;
        max-width: 100%;
    }
    
    .award-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .award-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .award-date {
        margin-bottom: 10px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        width: 85%;
        margin-left: 40px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        width: 20px;
        left: -20px !important;
        right: auto !important;
    }
    
    .year {
        margin-left: 30px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .awards-timeline {
        padding-left: 15px;
        border-left-width: 2px;
    }
    
    .timeline-wrapper {
        padding: 15px;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .year-marker {
        font-size: 1.6rem;
        margin-left: -8px;
    }
    
    .award-card {
        padding: 15px;
        max-width: 100%;
    }
    
    .award-header {
        padding: 15px;
    }
    
    .award-details {
        padding: 15px;
    }
    
    .award-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-award {
        padding: 15px;
    }
    
    .award-ribbon {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    .award-date, .award-type {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .timeline-wrapper {
        padding: 10px;
    }
    
    .awards-timeline {
        padding-left: 12px;
    }
    
    .award-card {
        padding: 12px;
    }
    
    .award-header {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .award-icon {
        margin-bottom: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .award-details {
        padding: 12px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: 15px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content {
        margin-left: 30px !important;
        width: calc(100% - 40px);
    }
    
    .year {
        margin-left: 20px;
        padding: 4px 15px;
        font-size: 1rem;
    }
    
    .award-ribbon {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
} 