/* ============================================
   Amish Suchak's Portfolio - 2000s-2010s Theme
   Web 2.0 Aesthetic with Gradients, Gloss & Glow
   ============================================ */

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

body {
    font-family: 'Comic Neue', 'Trebuchet MS', 'Verdana', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Animated Starfield Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff00ff, transparent),
        radial-gradient(1px 1px at 90px 40px, #00ffff, transparent),
        radial-gradient(2px 2px at 160px 120px, #ffffff, transparent),
        radial-gradient(1px 1px at 230px 80px, #ffff00, transparent),
        radial-gradient(2px 2px at 300px 150px, #ff69b4, transparent),
        radial-gradient(1px 1px at 370px 50px, #ffffff, transparent),
        radial-gradient(2px 2px at 450px 200px, #00ff00, transparent);
    background-size: 500px 500px;
    animation: twinkle 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* Marquee Banner */
.marquee-container {
    background: linear-gradient(to right, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #ff6b6b);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    padding: 8px 0;
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: #000;
    border-bottom: 3px solid #ffd700;
    text-shadow: 1px 1px 0 #fff;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, #2d2d44 0%, #1e1e30 100%);
    border: 3px solid #4a4a6a;
    border-radius: 15px;
    box-shadow: 
        0 0 20px rgba(255, 105, 180, 0.3),
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Glossy Header */
.glossy-header {
    background: linear-gradient(180deg, 
        #4a90d9 0%, 
        #2d5a9e 50%, 
        #1e3a6e 51%, 
        #2d5a9e 100%);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 4px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.glossy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 1;
}

/* Rainbow Animated Text */
.rainbow-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 28px;
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3, #ff0000);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.subtitle {
    font-size: 14px;
    color: #ffd700;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

/* Web 2.0 Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(180deg, #3a3a5a 0%, #2a2a4a 100%);
    border-bottom: 2px solid #5a5a7a;
}

.nav-button {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(180deg, 
        #6ab7ff 0%, 
        #3d8bd4 50%, 
        #2d6ca8 51%, 
        #3d8bd4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 13px;
    border: 2px solid #7cc9ff;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

.nav-button:hover {
    background: linear-gradient(180deg, 
        #ff9f6a 0%, 
        #ff6b35 50%, 
        #e55a2b 51%, 
        #ff6b35 100%);
    border-color: #ffb88c;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.4),
        0 0 15px rgba(255, 107, 53, 0.5);
}

/* Content Area Layout */
.content-area {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-box {
    background: linear-gradient(180deg, #3a3a5a 0%, #2a2a4a 100%);
    border: 2px solid #5a5a7a;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.profile-frame {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
    padding: 5px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.profile-pic {
    width: 200px;
    height: auto;
    border-radius: 8px;
    border: 3px solid #fff;
    display: block;
}

.status-box {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    font-size: 14px;
}

/* Blink Animation */
.blink {
    animation: blink 1s step-end infinite;
    color: #00ff00;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Widget Boxes */
.widget-box {
    background: linear-gradient(180deg, #3a3a5a 0%, #2a2a4a 100%);
    border: 2px solid #5a5a7a;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.widget-box h3 {
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #5a5a7a;
}

/* Music Player Widget */
.music-player {
    text-align: center;
}

.equalizer {
    display: flex;
    justify-content: center;
    gap: 4px;
    height: 30px;
    align-items: flex-end;
    margin-bottom: 10px;
}

.equalizer span {
    width: 8px;
    background: linear-gradient(to top, #00ff00, #ffff00, #ff0000);
    border-radius: 2px;
    animation: equalize 0.5s ease-in-out infinite;
}

.equalizer span:nth-child(1) { animation-delay: 0s; height: 60%; }
.equalizer span:nth-child(2) { animation-delay: 0.1s; height: 80%; }
.equalizer span:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.equalizer span:nth-child(4) { animation-delay: 0.15s; height: 70%; }
.equalizer span:nth-child(5) { animation-delay: 0.05s; height: 50%; }

@keyframes equalize {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.music-player p {
    font-size: 12px;
    color: #ff69b4;
}

/* Link List */
.link-list {
    list-style: none;
}

.link-list li {
    padding: 5px 0;
}

.link-list a {
    color: #00bfff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.link-list a:hover {
    color: #ff69b4;
    text-decoration: underline;
    text-shadow: 0 0 10px #ff69b4;
}

.link-list a::before {
    content: '► ';
    color: #ffd700;
}

/* Under Construction */
.under-construction {
    text-align: center;
    padding: 10px;
}

.under-construction img {
    max-width: 100%;
    margin-bottom: 10px;
}

/* Counter Style */
.counter {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #00ff00;
    background: #000;
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px inset #333;
}

/* Main Content Area */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Content Sections */
.content-section {
    background: linear-gradient(180deg, #3a3a5a 0%, #2a2a4a 100%);
    border: 2px solid #5a5a7a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.section-header {
    background: linear-gradient(180deg, 
        #6a4c93 0%, 
        #4a3073 50%, 
        #3a2063 51%, 
        #4a3073 100%);
    padding: 15px 20px;
    border-bottom: 2px solid #8a6cb3;
}

.section-header h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.section-body {
    padding: 20px;
}

/* About Section */
.intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.drop-cap {
    font-size: 48px;
    float: left;
    line-height: 1;
    margin-right: 10px;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.company-highlight {
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.company-highlight.amazon {
    background: linear-gradient(90deg, #ff9900, #ffb84d);
    color: #000;
}

.company-highlight.oracle {
    background: linear-gradient(90deg, #f80000, #ff4444);
    color: #fff;
}

.company-highlight.microsoft {
    background: linear-gradient(90deg, #00a4ef, #66c9ff);
    color: #fff;
}

.sparkle-divider {
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
    color: #ff69b4;
    letter-spacing: 5px;
}

/* Experience Cards */
.experience-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid #5a5a7a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    border-color: #ff69b4;
}

.exp-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid #4a4a6a;
}

.exp-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.exp-icon.devops {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.exp-icon.microsoft {
    background: linear-gradient(135deg, #00a4ef, #7fba00, #f25022, #ffb900);
}

.exp-icon.oracle {
    background: linear-gradient(135deg, #f80000, #c41e3a);
}

.exp-icon.amazon {
    background: linear-gradient(135deg, #ff9900, #232f3e);
}

.exp-title h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.exp-title .company {
    font-size: 14px;
    color: #00bfff;
}

.exp-title .duration {
    font-size: 12px;
    color: #aaa;
}

.exp-title .location {
    font-size: 12px;
    color: #ff69b4;
}

.exp-body {
    padding: 15px;
}

.exp-body ul {
    list-style: none;
    padding-left: 0;
}

.exp-body li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.exp-body li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.skills-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(180deg, #4a90d9 0%, #2d6ca8 100%);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    color: #fff;
    border: 1px solid #6ab7ff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Education Cards */
.education-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid #5a5a7a;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

.edu-icon {
    font-size: 40px;
    margin-right: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.edu-content h3 {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 5px;
}

.edu-content .degree {
    font-size: 14px;
    color: #00bfff;
    margin-bottom: 5px;
}

.edu-content .years {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.edu-content .description {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.skill-category {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #4a4a6a;
}

.skill-category h4 {
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-bar-item span {
    min-width: 80px;
    font-size: 13px;
    color: #fff;
}

.bar {
    flex: 1;
    height: 20px;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #3a3a5a;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00cc00);
    border-radius: 8px;
    position: relative;
    animation: fillBar 1.5s ease-out;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    border-radius: 8px 8px 0 0;
}

.fill.python { background: linear-gradient(90deg, #3776ab, #ffd43b); }
.fill.java { background: linear-gradient(90deg, #f89820, #5382a1); }
.fill.csharp { background: linear-gradient(90deg, #68217a, #9b4f96); }
.fill.sql { background: linear-gradient(90deg, #00758f, #f29111); }

@keyframes fillBar {
    from { width: 0; }
}

/* Contact Section */
.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guestbook {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #4a4a6a;
}

.guestbook h3 {
    font-size: 16px;
    color: #ff69b4;
    text-align: center;
    margin-bottom: 15px;
}

.retro-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 13px;
    color: #ffd700;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 2px inset #5a5a7a;
    border-radius: 5px;
    background: #1a1a2e;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 25px;
    background: linear-gradient(180deg, 
        #ff69b4 0%, 
        #ff1493 50%, 
        #c71585 51%, 
        #ff1493 100%);
    color: #fff;
    border: 2px solid #ff69b4;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.4),
        0 0 20px rgba(255, 105, 180, 0.5);
}

.social-links {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #4a4a6a;
    text-align: center;
}

.social-links h3 {
    font-size: 16px;
    color: #00bfff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    width: 150px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.social-badge.linkedin {
    background: linear-gradient(180deg, #0077b5 0%, #005582 100%);
    border: 2px solid #0099e5;
}

.social-badge.github {
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border: 2px solid #555;
}

.social-badge.email {
    background: linear-gradient(180deg, #ea4335 0%, #c5221f 100%);
    border: 2px solid #ff6659;
}

.social-badge:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 15px rgba(0,0,0,0.4),
        0 0 25px currentColor;
}

/* Footer */
.retro-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a15 100%);
    border-top: 3px solid #ffd700;
    padding: 30px 20px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 13px;
    color: #aaa;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.badge {
    background: linear-gradient(180deg, #4a4a6a 0%, #3a3a5a 100%);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 11px;
    color: #fff;
    border: 1px solid #6a6a8a;
}

.disclaimer {
    font-size: 11px !important;
    color: #666 !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 900px) {
    .content-area {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar > * {
        flex: 1 1 250px;
    }
    
    .profile-box {
        flex: 1 1 100%;
    }
    
    .contact-body {
        grid-template-columns: 1fr;
    }
    
    .rainbow-text {
        font-size: 18px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .rainbow-text {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 12px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .exp-header {
        flex-direction: column;
        text-align: center;
    }
    
    .exp-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Easter Egg - Konami Code Animation */
.konami-active {
    animation: konamiParty 0.5s infinite;
}

@keyframes konamiParty {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
