/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #000000 25%, #3e0404 50%, #000000 75%, #000000 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Container Layout */
.container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Photo Section - Fixed */
.photo-section {
    position: fixed;
    left: 0;
    top: 0;
    width: 600px;
    height: 100vh;
    z-index: 10;
    overflow: hidden;
}

@media (max-width: 1500px) {
    .photo-section {
        width: 400px;
    }
}

.photo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 40%;
}

.photo-overlay {
    /*position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 0, 0, 0.1) 30%,
            rgba(255, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.8) 80%,
            rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    opacity: 50%;*/
}

/* Content Section */
.content-section {
    margin-left: 400px;
    flex: 1;
    padding: 2rem;
    position: relative;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Typography */
.header {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

@keyframes textGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 68, 68, 0.5));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.8));
    }
}

.name-cz {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-weight: 300;
}

.title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.title-cz {
    font-size: 1rem;
    color: rgba(255, 68, 68, 0.7);
    font-weight: 400;
}

/* Sections */
.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}



.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff4444;
}

.section-title-cz {
    font-size: 1rem;
    color: rgba(255, 68, 68, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.text {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.text-cz {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Skills Categories */
.skills-category {
    margin-bottom: 2rem;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 0.3rem;
}

.skills-category-title-cz {
    font-size: 0.9rem;
    color: rgba(255, 68, 68, 0.7);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.skill-item {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    padding: 0.8rem 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.skill-item:hover {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.2));
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Experience Items */
.experience-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.job-title-cz {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.company {
    color: #ff4444;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.company-cz {
    color: rgba(255, 68, 68, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ff4444;
    cursor: pointer;
}

.contact-item a {
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        position: relative;
    }

    .header {
        margin-bottom: 5rem;
        padding: 4rem 0;
    }

    .photo-section {
        position: fixed;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .photo-background {
        width: 100%;
        height: 100%;
        background-position: center center;
        background-size: cover;
    }

    .content-section {
        margin-left: 0;
        padding: 1rem;
        position: relative;
        z-index: 10;
        background: rgba(0, 0, 0, 0.3);
    }

    .content-wrapper {
        max-width: 100%;
    }

    .section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .skills-category-title {
        font-size: 1.2rem;
    }

    .skill-item {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.4);
    }

    .section {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.5);
    }

}