
/* Navigation */
.dashboard-main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 155, 75, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.dashboard-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    color: #C99B4B;
    width: 32px;
    height: 32px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDFDFD;
    background: linear-gradient(45deg, #FDFDFD, #C99B4B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-navbar-menu {
    display: flex;
    gap: 1rem;
}

.dashboard-nav-item {
    background: transparent;
    border: none;
    color: rgba(253, 253, 253, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.dashboard-nav-item:hover {
    color: #C99B4B;
    background: rgba(201, 155, 75, 0.1);
    transform: translateY(-2px);
}

.dashboard-nav-item.active {
    color: #C99B4B;
    background: rgba(201, 155, 75, 0.15);
    box-shadow: 0 0 20px rgba(201, 155, 75, 0.2);
}

.dashboard-nav-item i {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FDFDFD;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 155, 75, 0.1);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu.active {
    display: flex;
}

/* Main Content */
.dashboard-main-content {
    padding-top: 100px;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(201, 155, 75, 0.05) 0%, #111111 70%);
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Glass Cards */
.glass-card {
    background: rgba(201, 155, 75, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 155, 75, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(201, 155, 75, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 155, 75, 0.2);
}

/* Dashboard Section */
.welcome-section {
    margin-bottom: 3rem;
}

.welcome-card {
    position: relative;
    overflow: hidden;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FDFDFD;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.user-name {
    color: #C99B4B;
    background: linear-gradient(45deg, #C99B4B, #E6B85C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-message {
    font-size: 1.3rem;
    color: rgba(253, 253, 253, 0.8);
    margin-bottom: 2rem;
}

.motivational-quote {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(201, 155, 75, 0.1);
    border-radius: 15px;
    border-left: 4px solid #C99B4B;
}

.quote-icon {
    color: #C99B4B;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.motivational-quote p {
    font-style: italic;
    color: rgba(253, 253, 253, 0.9);
    margin: 0;
    line-height: 1.6;
}

.welcome-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-hearts {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #C99B4B;
    box-shadow: 
        0 0 40px rgba(201, 155, 75, 0.3),
        0 0 80px rgba(201, 155, 75, 0.1);
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 60px rgba(201, 155, 75, 0.4),
        0 0 120px rgba(201, 155, 75, 0.2);
}

.online-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    border: 3px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}


/* Profile Section */
.profile-section {
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-section-title {
    font-size: 2.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;
}

.dashboard-section-subtitle {
    font-size: 1.1rem;
    color: rgba(253, 253, 253, 0.7);
    margin: 0;
}

.profile-form-container {
    width: 100%;
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 155, 75, 0.1);
}

.card-title {
    color: #C99B4B;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.card-title i {
    width: 24px;
    height: 24px;
}

.card-content {
    width: 100%;
}

/* Profile Image Section */
.profile-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-image-container {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-image-container:hover {
    transform: scale(1.02);
}

.user-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #C99B4B;
    box-shadow: 
        0 0 30px rgba(201, 155, 75, 0.3),
        0 0 60px rgba(201, 155, 75, 0.1);
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.profile-image-container:hover .image-overlay {
    opacity: 1;
}

.camera-icon {
    color: #C99B4B;
    width: 32px;
    height: 32px;
}

.btn-upload {
    background: rgba(201, 155, 75, 0.1);
    border: 2px solid rgba(201, 155, 75, 0.3);
    color: #C99B4B;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-upload:hover {
    background: rgba(201, 155, 75, 0.2);
    border-color: rgba(201, 155, 75, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 155, 75, 0.2);
}

/* Form Styles */
.profile-form {
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
    width: 100%;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C99B4B;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-label i {
    width: 18px;
    height: 18px;
}

.input-container {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    background: rgba(17, 17, 17, 0.8);
    border: 2px solid rgba(201, 155, 75, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: #FDFDFD;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #C99B4B;
    background: rgba(17, 17, 17, 0.9);
    box-shadow: 
        0 0 0 4px rgba(201, 155, 75, 0.1),
        0 5px 15px rgba(201, 155, 75, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(253, 253, 253, 0.5);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #C99B4B, #E6B85C);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.form-input:focus + .input-focus-border {
    width: 100%;
}

/* Buttons */
.form-actions {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}

.btn-save,
.btn-login {
    position: relative;
    background: linear-gradient(45deg, #C99B4B, #E6B85C);
    border: none;
    color: #111111;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
}

.btn-save:hover,
.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(201, 155, 75, 0.4),
        0 0 30px rgba(201, 155, 75, 0.3);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-save:hover .btn-glow,
.btn-login:hover .btn-glow {
    transform: translateX(100%);
}

/* Loading State */
.btn-save.loading,
.btn-login.loading {
    pointer-events: none;
}

.btn-save.loading span,
.btn-login.loading span {
    opacity: 0;
}

.btn-save.loading::after,
.btn-login.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #111111;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    max-width: 400px;
    width: 90%;
    margin: 2rem;
}

.modal-content {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    color: #10B981;
    width: 40px;
    height: 40px;
}

.modal-title {
    color: #FDFDFD;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-message {
    color: rgba(253, 253, 253, 0.7);
    margin-bottom: 2rem;
}

.btn-modal-close {
    background: linear-gradient(45deg, #C99B4B, #E6B85C);
    border: none;
    color: #111111;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 155, 75, 0.3);
}

/* Animations */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@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) {
    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
  
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .dashboard-container {
        padding: 1rem;
    }
    
    .dashboard-main-content {
        padding-top: 80px;
    }
    
    .dashboard-navbar-container {
        padding: 0.75rem 1rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .dashboard-section-title {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }

    
    .stat-item {
        padding: 1rem;
    }
    
    .user-profile-image {
        width: 120px;
        height: 120px;
    }
    
    .btn-save,
    .btn-login {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .welcome-title {
        font-size: 1.75rem;
    }
    
    .dashboard-section-title {
        font-size: 1.75rem;
    }
    
    .glass-card {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .form-input {
        padding: 0.875rem 1.25rem;
    }
    
    .user-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

/* Text center */
.text-center {
    text-align: center;
}