/* 
 * Clean Single-Section Card Template Styles
 * Simple, elegant design with no gradients - using home page red color #fe0000
 */

/* Global Styles */
.card-template-single {
    font-family: 'Arial', sans-serif;
    background: #fff;
    min-height: 100vh;
}

/* Single Hero Section */
.card-hero-single {
    background: #000000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.card-layout-single {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
}

/* Profile Section */
.profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-container {
    position: relative;
    display: inline-block;
}

.profile-image-single {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
    border: 4px solid #fe0000;
    box-shadow: 0 0 0 8px rgba(254, 0, 0, 0.3);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Name Section */
.name-section {
    text-align: left;
    margin-bottom: 1rem;
}

.name-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.position-title {
    font-size: 1.5rem;
    color: #fe0000;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.company-name {
    font-size: 1.3rem;
    color: #ccc;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    color: #fe0000;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Experience Section */
.experience-section {
    margin-bottom: 1rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.experience-item {
    text-align: center;
    padding: 1rem;
    background: rgba(254, 0, 0, 0.3);
    border-radius: 8px;
    border: 2px solid rgba(254, 0, 0, 0.4);
}

.experience-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fe0000;
    margin-bottom: 0.5rem;
}

.experience-text {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.current-role {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

/* Values Section */
.values-section {
    margin-bottom: 1rem;
}

.values-grid-single {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.value-item-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(254, 0, 0, 0.2);
    border-radius: 8px;
    border: 2px solid rgba(254, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.value-item-single:hover {
    background: rgba(254, 0, 0, 0.3);
    border-color: rgba(254, 0, 0, 0.3);
    transform: translateY(-2px);
}

.value-item-single img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.value-item-single span {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

/* Action Buttons */
.action-buttons-single {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-single {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-save {
    background: transparent;
    color: #fe0000;
    border: 2px solid #fe0000;
}

.btn-save:hover {
    background: #fe0000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-contact {
    background: #fe0000;
    color: #fff;
    border: 2px solid #fe0000;
}

.btn-contact:hover {
    background: transparent;
    color: #fe0000;
    transform: translateY(-2px);
}

.btn-single svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-layout-single {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-image-single {
        width: 250px;
        height: 250px;
    }
    
    .name-title {
        font-size: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .values-grid-single {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .action-buttons-single {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-single {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .profile-image-single {
        width: 200px;
        height: 200px;
    }
    
    .name-title {
        font-size: 2rem;
    }
    
    .values-grid-single {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-hero-single {
        padding: 1rem 0;
    }
}
