

.owner-hero {
    background: linear-gradient(135deg, #e53935, #c62828);
    padding: 60px 0 120px;
    position: relative;
    overflow: hidden;
}

.owner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
    background-size: cover;
}

.owner-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.owner-hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.owner-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}


.profile-container {
    margin-top: -80px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}


.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}


.profile-header {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 40px;
    text-align: center;
    position: relative;
}

.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #66bb6a, #43a047);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.profile-position {
    color: #e53935;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e53935;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-linkedin { background: linear-gradient(135deg, #0077b5, #005582); }
.social-linkedin:hover { box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4); color: white; }

.social-twitter { background: linear-gradient(135deg, #1da1f2, #0c85d0); }
.social-twitter:hover { box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4); color: white; }

.social-instagram { background: linear-gradient(135deg, #e1306c, #c13584); }
.social-instagram:hover { box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4); color: white; }

.social-email { background: linear-gradient(135deg, #ea4335, #c5221f); }
.social-email:hover { box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4); color: white; }


.profile-body {
    padding: 40px;
}


.nav-tabs-custom {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.nav-tabs-custom .nav-link {
    color: #666;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-tabs-custom .nav-link:hover {
    color: #e53935;
}

.nav-tabs-custom .nav-link.active {
    color: #e53935;
    background: transparent;
}

.nav-tabs-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e53935, #c62828);
    border-radius: 3px 3px 0 0;
}


.info-section {
    margin-bottom: 30px;
}

.section-title {
    color: #e53935;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #e53935;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-value {
    color: #333;
    font-size: 1.05rem;
    font-weight: 500;
    word-wrap: break-word;
}


.bio-section {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.bio-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}


.activity-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e53935, #c62828);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e53935;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #ffe0e0;
}

.timeline-content {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
}

.timeline-date {
    color: #e53935;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.timeline-desc {
    color: #666;
    font-size: 0.95rem;
}

.btn-edit-profile {
    background: linear-gradient(135deg, #e53935, #c62828);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-edit-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    color: white;
}


.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}


@media (max-width: 768px) {
    .owner-hero {
        padding: 40px 0 100px;
    }
    
    .owner-hero h1 {
        font-size: 1.8rem;
    }
    
    .profile-container {
        margin-top: -60px;
    }
    
    .profile-header {
        padding: 30px 20px;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .profile-body {
        padding: 25px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-gallery {
        grid-template-columns: 1fr;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.6s ease;
}

.social-facebook { background: linear-gradient(135deg, #1877f2, #0c63d4); }
.social-facebook:hover { box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4); color: white; }

.social-linkedin { background: linear-gradient(135deg, #0077b5, #005582); }
.social-linkedin:hover { box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4); color: white; }