/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('../../../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Profile Container */
.profile-container {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Profile Image */
.profile-image {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.no-image {
    width: 200px;
    height: 200px;
    line-height: 200px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 50%;
    color: #888;
    font-size: 1.1rem;
}

/* Profile Details */
.profile-details {
    margin: 40px 0;
}

.profile-detail-section {
    margin-bottom: 30px;
}

.profile-detail-section h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-detail-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px 0;
    text-align: justify;
}

.profile-detail-section ul {
    margin: 15px 0 15px 20px;
    padding: 0;
    list-style-type: disc;
}

.profile-detail-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.social-links a {
    color: #555;
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links .twitter:hover {
    color: #1da1f2;
}

.social-links .linkedin:hover {
    color: #0077b5;
}

.social-links .facebook:hover {
    color: #1877f2;
}

.social-links .email:hover {
    color: #d44638;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.btn-back:hover {
    background: transparent;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* No Profile Found */
.no-profile-found {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.no-profile-found h2 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-profile-found p {
    font-size: 1.1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 280px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .profile-container {
        padding: 30px 20px;
        margin: 0 15px 40px;
    }
    
    .profile-image img, 
    .no-image {
        width: 160px;
        height: 160px;
    }
    
    .profile-detail-section h2 {
        font-size: 1.3rem;
    }
    
    .profile-detail-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 220px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .profile-details {
        margin: 30px 0;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-links a {
        font-size: 1.8rem;
    }
}