/*
Theme Name: Shayan Pro Resume
Theme URI: https://example.com
Author: Shayan
Description: A premium two-column resume theme with Bootstrap, GSAP, dark mode, and animations.
Version: 2.1
*/

body {
    font-family: 'Inter', sans-serif;
    background: #f3f4f6;
    color: #111;
    transition: background 0.3s, color 0.3s;
}

.two-col {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.glass {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.timeline {
    border-left: 3px solid #2563eb;
    padding-left: 20px;
}

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

.timeline-item::before {
    content: "";
    width: 14px;
    height: 14px;
    background: #2563eb;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 4px;
}

.tech-stack-wrapper {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

/* FULL MOBILE OPTIMIZATION */
@media (max-width: 1200px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}