

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #C99B4B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8894A;
}

/* Text Selection */
::selection {
    background-color: rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
}

/* Navigation */
.single-custom-navbar {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 155, 75, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand .brand-icon {
    color: #C99B4B;
    width: 32px;
    height: 32px;
}

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDFDFD;
}

.navbar-nav .nav-link {
    color: #FDFDFD !important;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: #C99B4B !important;
    transform: translateY(-2px);
}

/* Profile Hero Section */
.profile-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.single-hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
}

.single-floating-hearts {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.profile-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.profile-main-image {
    position: relative;
    flex-shrink: 0;
}

.main-profile-img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 2rem;
    border: 4px solid #C99B4B;
    box-shadow: 0 20px 60px rgba(201, 155, 75, 0.3);
    transition: all 0.3s ease;
}

.main-profile-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(201, 155, 75, 0.4);
}

.online-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.profile-intro {
    flex: 1;
}

.profile-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FDFDFD;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FDFDFD, #C99B4B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-basic-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FDFDFD;
    font-size: 1.1rem;
}

.info-item i {
    color: #C99B4B;
    width: 20px;
    height: 20px;
}

.profile-tagline {
    font-size: 1.3rem;
    color: #FDFDFD;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.profile-actions {
    display: flex;
    gap: 1rem;
}

.single-btn-primary {
    background: #C99B4B;
    border: none;
    color: #111111;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-btn-primary:hover {
    background: #B8894A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 155, 75, 0.3);
    color: #111111;
}

.single-btn-outline-light {
    border: 2px solid #C99B4B;
    color: #FDFDFD;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-btn-outline-light:hover {
    background: rgba(201, 155, 75, 0.1);
    border-color: #C99B4B;
    color: #FDFDFD;
    transform: translateY(-3px);
}

/* Profile Details Section */
.profile-details {
    background: rgba(201, 155, 75, 0.02);
}

.detail-card {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 155, 75, 0.1);
    border-color: rgba(201, 155, 75, 0.4);
}

.card-title {
    color: #C99B4B;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title i {
    width: 24px;
    height: 24px;
}

.card-content p {
    color: #FDFDFD;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Photo Gallery */
.photo-gallery {
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    height: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 155, 75, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #FDFDFD;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.interest-item {
    background: rgba(201, 155, 75, 0.1);
    border: 1px solid rgba(201, 155, 75, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.interest-item:hover {
    background: rgba(201, 155, 75, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 155, 75, 0.1);
}

.interest-item i {
    color: #C99B4B;
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.interest-item span {
    color: #FDFDFD;
    font-weight: 500;
    display: block;
}

/* Quick Info */
.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 155, 75, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(253, 253, 253, 0.7);
    font-weight: 500;
}

.info-value {
    color: #C99B4B;
    font-weight: 600;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(201, 155, 75, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(201, 155, 75, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #C99B4B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #111111;
    width: 24px;
    height: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: rgba(253, 253, 253, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #FDFDFD;
    font-weight: 500;
    font-size: 1rem;
}

/* Lifestyle Info */
.lifestyle-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lifestyle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(201, 155, 75, 0.05);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.lifestyle-item:hover {
    background: rgba(201, 155, 75, 0.1);
}

.lifestyle-item i {
    color: #C99B4B;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.lifestyle-label {
    color: rgba(253, 253, 253, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.lifestyle-value {
    color: #FDFDFD;
    font-weight: 500;
}

/* Verification Badges */
.verification-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.badge-item.verified {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-item.verified i {
    color: #10B981;
    width: 20px;
    height: 20px;
}

.badge-item span {
    color: #FDFDFD;
    font-weight: 500;
}

/* Message Modal */
.message-modal .modal-content {
    background: #111111;
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 1rem;
}

.message-modal .modal-header {
    border-bottom: 1px solid rgba(201, 155, 75, 0.2);
}

.message-modal .modal-title {
    color: #FDFDFD;
    font-weight: 600;
}

.message-modal .btn-close {
    filter: invert(1);
}

.modal-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C99B4B;
}

.message-modal h4 {
    color: #FDFDFD;
    margin-bottom: 0.5rem;
}

.message-modal .text-muted {
    color: rgba(253, 253, 253, 0.7) !important;
}

.message-modal .form-label {
    color: #C99B4B;
    font-weight: 600;
}

.message-modal .form-control {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
}

.message-modal .form-control:focus {
    background: rgba(17, 17, 17, 0.9);
    border-color: #C99B4B;
    box-shadow: 0 0 0 0.2rem rgba(201, 155, 75, 0.2);
    color: #FDFDFD;
}

.message-modal .modal-footer {
    border-top: 1px solid rgba(201, 155, 75, 0.2);
}

.message-modal .btn-secondary {
    background: transparent;
    border-color: rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
}

.message-modal .btn-secondary:hover {
    background: rgba(201, 155, 75, 0.1);
    border-color: rgba(201, 155, 75, 0.5);
    color: #FDFDFD;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .main-profile-img {
        width: 300px;
        height: 380px;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .profile-basic-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .main-profile-img {
        width: 250px;
        height: 320px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-tagline {
        font-size: 1.1rem;
    }
    
    .profile-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .profile-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .interests-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .gallery-item {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .detail-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .main-profile-img {
        width: 200px;
        height: 260px;
    }
    
    .profile-name {
        font-size: 1.75rem;
    }
    
    .profile-basic-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}