/* Profile Card About Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.profile-main {
    padding: 40px 20px;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-container {
    max-width: 900px;
    width: 100%;
}

.profile-card {
    background: #faf7f4;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
}

/* Header */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.greeting-bubble {
    display: inline-block;
    background: #ff6b9d;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
}

/* Content Grid */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Basic Info Card */
.basic-info {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 3px solid #000;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.info-label {
    font-weight: 500;
    color: #2d3436;
}

.info-value {
    font-weight: 600;
    color: #2d3436;
}

/* About Card */
.about-card {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 3px solid #000;
    grid-column: span 2;
}

.about-card .card-title {
    color: white;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

/* Logo Card */
.logo-card {
    background: #B8336A;
    text-align: center;
    color: white;
    border: 3px solid #000;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.logo-card .card-title {
    color: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.7);
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 12px;
}

.logo-container {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 20px;
}

.logo-caption {
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-top: 10px;
}

/* Profile Image */
.profile-image-container {
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    height: 200px;
    background: #B8336A;
    border-radius: 15px;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.main-profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 20px;
}

/* Mission Card */
.mission-card {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: 3px solid #000;
}

.mission-card .card-title {
    color: white;
}

.mission-list {
    list-style: none;
    font-size: 14px;
}

.mission-list li {
    margin-bottom: 8px;
    color: white;
}

/* Values Card */
.values-card {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: 3px solid #000;
}

.values-card .card-title {
    color: white;
}

.values-list {
    list-style: none;
    font-size: 14px;
}

.values-list li {
    margin-bottom: 8px;
    color: white;
}

/* Footer */
.profile-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.follow-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-main {
        padding: 20px 15px;
    }
    
    .profile-card {
        padding: 25px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-image {
        height: 150px;
    }
    
    .main-profile-img {
        width: 80px;
        height: 80px;
    }
    
    .profile-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 20px;
        margin: 10px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .greeting-bubble {
        font-size: 11px;
        padding: 6px 15px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .card-text, .mission-list, .values-list {
        font-size: 13px;
    }
}
