/* ========================================
   Simple Clean Card Layout
   ======================================== */

:root {
    --green-primary: #059669;
    --green-secondary: #10b981;
    --green-light: #d1fae5;
    --green-dark: #064e3b;
}

/* Simple Project Card */
.project-card-simple {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card-simple:hover {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
    transform: translateY(-2px);
}

/* Clean Page Header */
.page-header-clean {
    margin-bottom: 3rem;
}

.page-header-clean h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

/* Simple Section Spacing */
.section-clean {
    padding: 3rem 0;
}

/* Buttons */
.btn-outline-primary {
    border-width: 1.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

/* ========================================
   Q&A Section Styles
   ======================================== */

.qa-section {
    padding: 2rem 0;
}

.qa-item {
    background: white;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #059669 0%, #14b8a6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.qa-item:hover {
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.15);
    transform: translateY(-2px);
}

.qa-question {
    font-size: 1.05rem;
    color: #1f2937;
}

.qa-answer {
    line-height: 1.7;
}

/* Skills Badge Enhancement */
.badge.border {
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.badge.border:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

/* ========================================
   Profile Gradient Card
   ======================================== */

.profile-gradient-card {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.profile-gradient-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(5, 150, 105, 0.4);
}

.gradient-card-content {
    text-align: center;
    color: white;
    padding: 3rem;
}

.card-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.card-name {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.card-role {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

.card-tech {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}
